[7041] | 1 | /*
|
---|
| 2 | Main JOSM map paint style.
|
---|
| 3 |
|
---|
| 4 | Originally in XML format, migrated to MapCSS.
|
---|
| 5 | Documentation of MapCSS format:
|
---|
| 6 |
|
---|
[13454] | 7 | https://josm.openstreetmap.de/wiki/Help/Styles/MapCSSImplementation
|
---|
[7041] | 8 |
|
---|
| 9 | */
|
---|
| 10 |
|
---|
| 11 | meta {
|
---|
[9275] | 12 | icon: "logo.svg";
|
---|
[7041] | 13 | }
|
---|
| 14 |
|
---|
[7378] | 15 | canvas {
|
---|
| 16 | default-points: false;
|
---|
| 17 | }
|
---|
[10013] | 18 | node {
|
---|
| 19 | text: auto;
|
---|
| 20 | }
|
---|
[7378] | 21 |
|
---|
[7454] | 22 | /*************************/
|
---|
| 23 | /* create style settings */
|
---|
| 24 | /*************************/
|
---|
[7041] | 25 |
|
---|
[7454] | 26 | setting::hide_icons {
|
---|
| 27 | type: boolean;
|
---|
| 28 | label: tr("Hide icons at low zoom");
|
---|
| 29 | default: true;
|
---|
[7041] | 30 | }
|
---|
| 31 |
|
---|
[7454] | 32 | setting::shrink_nodes {
|
---|
| 33 | type: boolean;
|
---|
| 34 | label: tr("Less obtrusive node symbols at low zoom");
|
---|
| 35 | default: true;
|
---|
[7378] | 36 | }
|
---|
| 37 |
|
---|
[13321] | 38 | setting::hide_tagged_waynodes {
|
---|
| 39 | type: boolean;
|
---|
| 40 | label: tr("Hide tagged waynodes at low zoom");
|
---|
| 41 | default: true;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[7520] | 44 | setting::highway_labels {
|
---|
| 45 | type: boolean;
|
---|
| 46 | label: tr("Display street labels (at high zoom)");
|
---|
| 47 | default: true;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[8050] | 50 | setting::alt_turn_icons {
|
---|
| 51 | type: boolean;
|
---|
| 52 | label: tr("Use alternative turn restriction icon set");
|
---|
| 53 | default: false;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[8986] | 56 | setting::place_fill_colour {
|
---|
| 57 | type: boolean;
|
---|
| 58 | label: tr("Display fill colour of areas with place=*");
|
---|
| 59 | default: false;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[9009] | 62 | setting::partial_fill {
|
---|
| 63 | type: boolean;
|
---|
| 64 | label: tr("Areas are drawn with fill only around their inner edges");
|
---|
[9082] | 65 | default: true;
|
---|
[9009] | 66 | }
|
---|
| 67 |
|
---|
[7041] | 68 | /*********************/
|
---|
| 69 | /* turn restrictions */
|
---|
| 70 | /*********************/
|
---|
| 71 |
|
---|
[8050] | 72 | relation[restriction=no_left_turn][!setting("alt_turn_icons")] {
|
---|
[10808] | 73 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_left_turn_red.svg";
|
---|
[8050] | 74 | set icon_z17;
|
---|
| 75 | text: auto;
|
---|
| 76 | }
|
---|
| 77 | relation[restriction=no_left_turn][setting("alt_turn_icons")] {
|
---|
[10706] | 78 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_left_turn.svg";
|
---|
[7454] | 79 | set icon_z17;
|
---|
[7041] | 80 | text: auto;
|
---|
| 81 | }
|
---|
[8050] | 82 | relation[restriction=no_right_turn][!setting("alt_turn_icons")] {
|
---|
[10808] | 83 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_right_turn_red.svg";
|
---|
[8050] | 84 | set icon_z17;
|
---|
| 85 | text: auto;
|
---|
| 86 | }
|
---|
| 87 | relation[restriction=no_right_turn][setting("alt_turn_icons")] {
|
---|
[10706] | 88 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_right_turn.svg";
|
---|
[7454] | 89 | set icon_z17;
|
---|
[7041] | 90 | text: auto;
|
---|
| 91 | }
|
---|
[8050] | 92 | relation[restriction=no_straight_on][!setting("alt_turn_icons")] {
|
---|
[10808] | 93 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_straight_on_red.svg";
|
---|
[8050] | 94 | set icon_z17;
|
---|
| 95 | text: auto;
|
---|
| 96 | }
|
---|
| 97 | relation[restriction=no_straight_on][setting("alt_turn_icons")] {
|
---|
[10706] | 98 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_straight_on.svg";
|
---|
[7454] | 99 | set icon_z17;
|
---|
[7041] | 100 | text: auto;
|
---|
| 101 | }
|
---|
[7744] | 102 | relation[restriction=no_u_turn] {
|
---|
[10706] | 103 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_u_turn.svg";
|
---|
[7454] | 104 | set icon_z17;
|
---|
[7041] | 105 | text: auto;
|
---|
| 106 | }
|
---|
[7744] | 107 | relation[restriction=only_left_turn] {
|
---|
[10706] | 108 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_left_turn.svg";
|
---|
[7454] | 109 | set icon_z17;
|
---|
[7041] | 110 | text: auto;
|
---|
| 111 | }
|
---|
[7744] | 112 | relation[restriction=only_right_turn] {
|
---|
[10706] | 113 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_right_turn.svg";
|
---|
[7454] | 114 | set icon_z17;
|
---|
[7041] | 115 | text: auto;
|
---|
| 116 | }
|
---|
[7744] | 117 | relation[restriction=only_straight_on] {
|
---|
[10706] | 118 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_straight_on.svg";
|
---|
[7454] | 119 | set icon_z17;
|
---|
[7041] | 120 | text: auto;
|
---|
| 121 | }
|
---|
[7744] | 122 | node[restriction] {
|
---|
[10706] | 123 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7744] | 124 | set icon_z17;
|
---|
| 125 | text: auto;
|
---|
| 126 | }
|
---|
[7041] | 127 |
|
---|
| 128 | /******************/
|
---|
| 129 | /* bridge, tunnel */
|
---|
| 130 | /******************/
|
---|
| 131 |
|
---|
[8137] | 132 | way[bridge=yes]::core_bridge,
|
---|
[15191] | 133 | way[bridge=aqueduct]::core_bridge,
|
---|
| 134 | way[bridge=boardwalk]::core_bridge,
|
---|
[7116] | 135 | way[bridge=cantilever]::core_bridge,
|
---|
| 136 | way[bridge=covered]::core_bridge,
|
---|
| 137 | way[bridge=low_water_crossing]::core_bridge,
|
---|
[15191] | 138 | way[bridge=movable]::core_bridge,
|
---|
[7116] | 139 | way[bridge=trestle]::core_bridge,
|
---|
[15191] | 140 | way[bridge=viaduct]::core_bridge {
|
---|
[7638] | 141 | major-z-index: 2;
|
---|
[7271] | 142 | object-z-index: -1;
|
---|
[7041] | 143 | width: +4;
|
---|
[7271] | 144 | color: bridge#0000FF;
|
---|
| 145 | opacity: 0.9;
|
---|
[7041] | 146 | }
|
---|
[8137] | 147 | way[tunnel=yes]::core_tunnel,
|
---|
[7364] | 148 | way[tunnel=culvert]::core_tunnel,
|
---|
[15061] | 149 | way[tunnel=flooded]::core_tunnel,
|
---|
[7364] | 150 | way[tunnel=building_passage]::core_tunnel,
|
---|
| 151 | way[tunnel=avalanche_protector]::core_tunnel {
|
---|
[7638] | 152 | major-z-index: 2;
|
---|
[7255] | 153 | object-z-index: -1;
|
---|
| 154 | width: +5;
|
---|
| 155 | color: tunnel#964B00;
|
---|
[7271] | 156 | opacity: 0.9;
|
---|
[7041] | 157 | }
|
---|
| 158 | node[oneway],
|
---|
[7116] | 159 | node[bridge],
|
---|
[7041] | 160 | node[tunnel?],
|
---|
| 161 | node[tunnel?!],
|
---|
| 162 | node[cutting?!],
|
---|
| 163 | node[embankment?!] {
|
---|
[10706] | 164 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 165 | set icon_z17;
|
---|
[7041] | 166 | }
|
---|
| 167 |
|
---|
| 168 | /****************************/
|
---|
| 169 | /* access restrictions tags */
|
---|
| 170 | /****************************/
|
---|
| 171 |
|
---|
| 172 | way[access?!]::core_access {
|
---|
| 173 | z-index: -1;
|
---|
| 174 | width: +2;
|
---|
| 175 | color: no#ff8080;
|
---|
| 176 | dashes: 2,2;
|
---|
| 177 | }
|
---|
| 178 | way[access=permissive]::core_access {
|
---|
| 179 | z-index: -1;
|
---|
| 180 | width: +2;
|
---|
| 181 | color: permissive#80ff80;
|
---|
| 182 | dashes: 2,2;
|
---|
| 183 | }
|
---|
| 184 | way[access=private]::core_access {
|
---|
| 185 | z-index: -1;
|
---|
| 186 | width: +2;
|
---|
| 187 | color: private#ff8080;
|
---|
| 188 | dashes: 2,2;
|
---|
| 189 | }
|
---|
| 190 | way[access=destination]::core_access {
|
---|
| 191 | z-index: -1;
|
---|
| 192 | width: +2;
|
---|
| 193 | color: destination#8080ff;
|
---|
| 194 | dashes: 2,2;
|
---|
| 195 | }
|
---|
[8012] | 196 | node[traffic_sign][access?!] {
|
---|
[10706] | 197 | icon-image: "presets/vehicle/restriction/restrictions.svg";
|
---|
[7454] | 198 | set icon_z17;
|
---|
[7041] | 199 | }
|
---|
[9892] | 200 | node[traffic_sign][access=permissive][!is_prop_set(icon-image)],
|
---|
| 201 | node[traffic_sign][access=private][!is_prop_set(icon-image)],
|
---|
| 202 | node[traffic_sign][access=destination][!is_prop_set(icon-image)] {
|
---|
[10706] | 203 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 204 | set icon_z17;
|
---|
[7041] | 205 | }
|
---|
[8012] | 206 | node[traffic_sign][bicycle?!] {
|
---|
[10706] | 207 | icon-image: "presets/vehicle/restriction/bicycle.svg";
|
---|
[7454] | 208 | set icon_z17;
|
---|
[7041] | 209 | }
|
---|
[8012] | 210 | node[traffic_sign][bicycle=designated] {
|
---|
[10706] | 211 | icon-image: "presets/vehicle/restriction/bicycle-designated.svg";
|
---|
[7454] | 212 | set icon_z17;
|
---|
[7041] | 213 | }
|
---|
[8012] | 214 | node[traffic_sign][foot?!] {
|
---|
[10706] | 215 | icon-image: "presets/vehicle/restriction/foot.svg";
|
---|
[7454] | 216 | set icon_z17;
|
---|
[7041] | 217 | }
|
---|
[8012] | 218 | node[traffic_sign][foot=designated] {
|
---|
[10706] | 219 | icon-image: "presets/vehicle/restriction/foot-designated.svg";
|
---|
[7454] | 220 | set icon_z17;
|
---|
[7041] | 221 | }
|
---|
[8012] | 222 | node[traffic_sign][goods?!],
|
---|
| 223 | node[traffic_sign][hgv?!] {
|
---|
[10706] | 224 | icon-image: "presets/vehicle/restriction/goods.svg";
|
---|
[7454] | 225 | set icon_z17;
|
---|
[7041] | 226 | }
|
---|
[8012] | 227 | node[traffic_sign][horse?!] {
|
---|
[10706] | 228 | icon-image: "presets/vehicle/restriction/horse.svg";
|
---|
[7454] | 229 | set icon_z17;
|
---|
[7041] | 230 | }
|
---|
[8012] | 231 | node[traffic_sign][horse=designated] {
|
---|
[10706] | 232 | icon-image: "presets/vehicle/restriction/horse-designated.svg";
|
---|
[7454] | 233 | set icon_z17;
|
---|
[7041] | 234 | }
|
---|
[8012] | 235 | node[traffic_sign][motorcycle?!] {
|
---|
[10706] | 236 | icon-image: "presets/vehicle/restriction/motorbike.svg";
|
---|
[7454] | 237 | set icon_z17;
|
---|
[7041] | 238 | }
|
---|
[8012] | 239 | node[traffic_sign][motorcar?!] {
|
---|
[10706] | 240 | icon-image: "presets/vehicle/restriction/motorcar.svg";
|
---|
[7454] | 241 | set icon_z17;
|
---|
[7041] | 242 | }
|
---|
[8012] | 243 | node[traffic_sign][psv?!] {
|
---|
[10706] | 244 | icon-image: "presets/vehicle/restriction/psv.svg";
|
---|
[7454] | 245 | set icon_z17;
|
---|
[7041] | 246 | }
|
---|
[9892] | 247 | node[traffic_sign][motorboat?!][!is_prop_set(icon-image)],
|
---|
| 248 | node[traffic_sign][boat?!][!is_prop_set(icon-image)] {
|
---|
[10706] | 249 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 250 | set icon_z17;
|
---|
[7041] | 251 | }
|
---|
[8137] | 252 | node[noexit=yes] {
|
---|
[10706] | 253 | icon-image: "presets/vehicle/restriction/dead_end.svg";
|
---|
[7454] | 254 | set icon_z17;
|
---|
[7041] | 255 | }
|
---|
[8012] | 256 | node[traffic_sign][maxweight] {
|
---|
[10706] | 257 | icon-image: "presets/vehicle/restriction/maxweight.svg";
|
---|
[7454] | 258 | set icon_z17;
|
---|
[7041] | 259 | }
|
---|
[8012] | 260 | node[traffic_sign][maxheight] {
|
---|
[10706] | 261 | icon-image: "presets/vehicle/restriction/maxheight.svg";
|
---|
[7454] | 262 | set icon_z17;
|
---|
[7041] | 263 | }
|
---|
[8012] | 264 | node[traffic_sign][maxwidth] {
|
---|
[10706] | 265 | icon-image: "presets/vehicle/restriction/maxwidth.svg";
|
---|
[7454] | 266 | set icon_z17;
|
---|
[7041] | 267 | }
|
---|
[8012] | 268 | node[traffic_sign][maxlength] {
|
---|
[10706] | 269 | icon-image: "presets/vehicle/restriction/maxlength.svg";
|
---|
[7454] | 270 | set icon_z17;
|
---|
[7041] | 271 | }
|
---|
[8012] | 272 | node[traffic_sign][minspeed] {
|
---|
[10706] | 273 | icon-image: "presets/vehicle/restriction/minspeed.svg";
|
---|
[7454] | 274 | set icon_z17;
|
---|
[7041] | 275 | }
|
---|
[9892] | 276 | node[traffic_sign][maxstay][!is_prop_set(icon-image)],
|
---|
| 277 | node[traffic_sign][toll][!is_prop_set(icon-image)] {
|
---|
[10706] | 278 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 279 | set icon_z17;
|
---|
[7041] | 280 | }
|
---|
| 281 |
|
---|
[7548] | 282 | /*****************************/
|
---|
| 283 | /* building/entrance/address */
|
---|
| 284 | /*****************************/
|
---|
| 285 |
|
---|
[10808] | 286 | node["addr:housenumber"] {
|
---|
| 287 | icon-image: "presets/misc/housenumber_small.svg";
|
---|
[7548] | 288 | set icon_z17;
|
---|
| 289 | }
|
---|
| 290 | way["addr:interpolation"=odd] {
|
---|
| 291 | width: 1;
|
---|
| 292 | color: address#1C86EE;
|
---|
| 293 | dashes: 15,4;
|
---|
| 294 | }
|
---|
| 295 | way["addr:interpolation"=even] {
|
---|
| 296 | width: 1;
|
---|
| 297 | color: address#1C86EE;
|
---|
| 298 | dashes: 4,4;
|
---|
| 299 | }
|
---|
| 300 | way["addr:interpolation"=all],
|
---|
| 301 | way["addr:interpolation"=alphabetic] {
|
---|
| 302 | width: 1;
|
---|
| 303 | color: address#1C86EE;
|
---|
| 304 | dashes: 2,2;
|
---|
| 305 | }
|
---|
[13218] | 306 | area[building][!building?!][building!=y][building!=1] {
|
---|
[7548] | 307 | fill-color: building#cb9999;
|
---|
| 308 | }
|
---|
[12616] | 309 | area[building=roof],
|
---|
| 310 | area[building][!building?!][wall?!],
|
---|
[8139] | 311 | area[building:part][!building:part?!] {
|
---|
| 312 | fill-color: buildingpart#dcbbbb;
|
---|
[8136] | 313 | }
|
---|
[7548] | 314 | node[building][!building?!] {
|
---|
[10706] | 315 | icon-image: "presets/landmark/building.svg";
|
---|
[7548] | 316 | set icon_z17;
|
---|
| 317 | }
|
---|
| 318 | node[building=garage] {
|
---|
[10808] | 319 | icon-image: "presets/landuse/garages.svg";
|
---|
[7548] | 320 | set icon_z17;
|
---|
| 321 | }
|
---|
| 322 | node[building=garages] {
|
---|
[10808] | 323 | icon-image: "presets/landuse/garages.svg";
|
---|
[7548] | 324 | set icon_z17;
|
---|
| 325 | }
|
---|
[9433] | 326 | node[building=transformer_tower] {
|
---|
[10565] | 327 | icon-image: "presets/power/transformer_tower.svg";
|
---|
[10013] | 328 | set icon_z17;
|
---|
[9433] | 329 | }
|
---|
[9302] | 330 | node[entrance=yes],
|
---|
[13383] | 331 | node[entrance=home],
|
---|
[9302] | 332 | node[entrance=staircase] {
|
---|
[10808] | 333 | icon-image: "presets/misc/entrance_yes.svg";
|
---|
[7548] | 334 | set icon_z17;
|
---|
| 335 | }
|
---|
| 336 | node[entrance=main] {
|
---|
[10808] | 337 | icon-image: "presets/misc/entrance_main.svg";
|
---|
[7548] | 338 | set icon_z17;
|
---|
| 339 | }
|
---|
| 340 | node[entrance=service] {
|
---|
[10808] | 341 | icon-image: "presets/misc/entrance_service.svg";
|
---|
[7548] | 342 | set icon_z17;
|
---|
| 343 | }
|
---|
| 344 | node[entrance=exit] {
|
---|
[10808] | 345 | icon-image: "presets/misc/entrance_exit.svg";
|
---|
[7548] | 346 | set icon_z17;
|
---|
| 347 | }
|
---|
| 348 | node[entrance=emergency] {
|
---|
[10808] | 349 | icon-image: "presets/misc/entrance_emergency.svg";
|
---|
[7548] | 350 | set icon_z17;
|
---|
| 351 | }
|
---|
[8136] | 352 | node[building=entrance],
|
---|
| 353 | node[building:part] {
|
---|
[10706] | 354 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7795] | 355 | set icon_z17;
|
---|
| 356 | }
|
---|
[7548] | 357 |
|
---|
[7041] | 358 | /****************/
|
---|
| 359 | /* barrier tags */
|
---|
| 360 | /****************/
|
---|
| 361 |
|
---|
| 362 | way[barrier=bollard] {
|
---|
[7467] | 363 | width: 2;
|
---|
[7041] | 364 | color: barrier#F0F050;
|
---|
| 365 | dashes: 3,9;
|
---|
| 366 | }
|
---|
| 367 | node[barrier=bollard] {
|
---|
[10706] | 368 | icon-image: "presets/barrier/bollard.svg";
|
---|
[7454] | 369 | set icon_z17;
|
---|
[7041] | 370 | }
|
---|
| 371 | node[barrier=gate] {
|
---|
[10808] | 372 | icon-image: "presets/barrier/gate.svg";
|
---|
[7454] | 373 | set icon_z17;
|
---|
[7041] | 374 | }
|
---|
[7611] | 375 | way[barrier=yes],
|
---|
[7041] | 376 | way[barrier=hedge],
|
---|
| 377 | way[barrier=fence],
|
---|
| 378 | way[barrier=wall],
|
---|
[7157] | 379 | way[barrier=guard_rail],
|
---|
[7041] | 380 | way[barrier=city_wall],
|
---|
| 381 | way[barrier=retaining_wall],
|
---|
[7362] | 382 | way[barrier=block],
|
---|
[7626] | 383 | way[barrier=chain],
|
---|
[7821] | 384 | way[barrier=ditch],
|
---|
[9362] | 385 | way[barrier=jersey_barrier],
|
---|
[7626] | 386 | way[barrier=kerb] {
|
---|
[7467] | 387 | width: 2;
|
---|
[7041] | 388 | color: barrier#F0F050;
|
---|
| 389 | }
|
---|
[8409] | 390 | way[barrier=kerb] {
|
---|
[13091] | 391 | repeat-image: "presets/barrier/kerb_pattern.svg";
|
---|
| 392 | repeat-image-align: top;
|
---|
| 393 | }
|
---|
| 394 | way[barrier=retaining_wall] {
|
---|
[10808] | 395 | repeat-image: "presets/misc/cliff_pattern.svg";
|
---|
[8409] | 396 | repeat-image-align: top;
|
---|
| 397 | }
|
---|
[7041] | 398 | node[barrier=hedge],
|
---|
| 399 | node[barrier=wall],
|
---|
[7157] | 400 | node[barrier=guard_rail],
|
---|
[7041] | 401 | node[barrier=city_wall],
|
---|
[7821] | 402 | node[barrier=retaining_wall],
|
---|
| 403 | node[barrier=ditch] {
|
---|
[10706] | 404 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 405 | set icon_z17;
|
---|
[7041] | 406 | }
|
---|
[7626] | 407 | node[barrier=kerb] {
|
---|
[10706] | 408 | icon-image: "presets/barrier/kerb.svg";
|
---|
[7626] | 409 | set icon_z17;
|
---|
| 410 | }
|
---|
[7041] | 411 | node[barrier=block] {
|
---|
[10706] | 412 | icon-image: "presets/barrier/block.svg";
|
---|
[7454] | 413 | set icon_z17;
|
---|
[7041] | 414 | }
|
---|
[7362] | 415 | node[barrier=chain] {
|
---|
[10706] | 416 | icon-image: "presets/barrier/chain.svg";
|
---|
[7454] | 417 | set icon_z17;
|
---|
[7362] | 418 | }
|
---|
[7041] | 419 | node[barrier=stile] {
|
---|
[10706] | 420 | icon-image: "presets/barrier/stile.svg";
|
---|
[7454] | 421 | set icon_z17;
|
---|
[7041] | 422 | }
|
---|
| 423 | node[barrier=turnstile] {
|
---|
[10706] | 424 | icon-image: "presets/barrier/turnstile.svg";
|
---|
[7454] | 425 | set icon_z17;
|
---|
[7041] | 426 | }
|
---|
| 427 | node[barrier=cycle_barrier] {
|
---|
[10706] | 428 | icon-image: "presets/barrier/cycle_barrier.svg";
|
---|
[7454] | 429 | set icon_z17;
|
---|
[7041] | 430 | }
|
---|
| 431 | node[barrier=lift_gate] {
|
---|
[10706] | 432 | icon-image: "presets/barrier/lift_gate.svg";
|
---|
[7454] | 433 | set icon_z17;
|
---|
[7041] | 434 | }
|
---|
[7126] | 435 | node[barrier=swing_gate] {
|
---|
[10706] | 436 | icon-image: "presets/barrier/swing_gate.svg";
|
---|
[7454] | 437 | set icon_z17;
|
---|
[7126] | 438 | }
|
---|
[7041] | 439 | area[barrier=toll_booth]:closed {
|
---|
| 440 | fill-color: barrier#F0F050;
|
---|
| 441 | }
|
---|
| 442 | node[barrier=toll_booth] {
|
---|
[10808] | 443 | icon-image: "presets/barrier/toll_station.svg";
|
---|
[7454] | 444 | set icon_z17;
|
---|
[7041] | 445 | }
|
---|
| 446 | node[barrier=entrance] {
|
---|
[10706] | 447 | icon-image: "presets/barrier/entrance.svg";
|
---|
[7454] | 448 | set icon_z17;
|
---|
[7041] | 449 | }
|
---|
| 450 | node[barrier=cattle_grid] {
|
---|
[10808] | 451 | icon-image: "presets/barrier/cattle_grid.svg";
|
---|
[7454] | 452 | set icon_z17;
|
---|
[7041] | 453 | }
|
---|
| 454 | node[barrier=border_control] {
|
---|
[10808] | 455 | icon-image: "presets/barrier/douane.svg";
|
---|
[7454] | 456 | set icon_z17;
|
---|
[7041] | 457 | }
|
---|
| 458 | node[barrier=sally_port] {
|
---|
[10706] | 459 | icon-image: "presets/barrier/sally_port.svg";
|
---|
[7454] | 460 | set icon_z17;
|
---|
[7041] | 461 | }
|
---|
[7717] | 462 | node[barrier=spikes] {
|
---|
[10706] | 463 | icon-image: "presets/barrier/spikes.svg";
|
---|
[7717] | 464 | set icon_z17;
|
---|
| 465 | }
|
---|
[10825] | 466 | node[barrier=jersey_barrier] {
|
---|
| 467 | icon-image: "presets/barrier/jersey_barrier.svg";
|
---|
| 468 | set icon_z17;
|
---|
| 469 | }
|
---|
[13409] | 470 | node[barrier=kissing_gate] {
|
---|
| 471 | icon-image: "presets/barrier/kissing_gate.svg";
|
---|
| 472 | set icon_z17;
|
---|
| 473 | }
|
---|
[9892] | 474 | node[barrier=bump_gate][!is_prop_set(icon-image)],
|
---|
| 475 | node[barrier=bus_trap][!is_prop_set(icon-image)],
|
---|
| 476 | node[barrier=hampshire_gate][!is_prop_set(icon-image)] {
|
---|
[10706] | 477 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 478 | set icon_z17;
|
---|
[7041] | 479 | }
|
---|
| 480 |
|
---|
| 481 | /****************/
|
---|
| 482 | /* highway tags */
|
---|
| 483 | /****************/
|
---|
| 484 |
|
---|
[8137] | 485 | way[motorroad=yes]::core_motorroad {
|
---|
[7638] | 486 | major-z-index: 2;
|
---|
[7041] | 487 | z-index: -1;
|
---|
| 488 | width: +4;
|
---|
[7271] | 489 | color: motorroad#3377ff;
|
---|
[7041] | 490 | }
|
---|
| 491 | way[highway=motorway] {
|
---|
| 492 | width: 3;
|
---|
[13125] | 493 | z-index: 0.13; /* #15483 */
|
---|
[7041] | 494 | color: motorway#809bc0;
|
---|
| 495 | }
|
---|
| 496 | way[highway=motorway_link] {
|
---|
| 497 | width: 3;
|
---|
[13125] | 498 | z-index: 0.12;
|
---|
[7041] | 499 | color: motorway#809bc0;
|
---|
| 500 | }
|
---|
| 501 | way[highway=trunk] {
|
---|
| 502 | width: 3;
|
---|
[13125] | 503 | z-index: 0.11;
|
---|
[7041] | 504 | color: trunk#7fc97f;
|
---|
| 505 | }
|
---|
| 506 | way[highway=trunk_link] {
|
---|
| 507 | width: 3;
|
---|
[13125] | 508 | z-index: 0.10;
|
---|
[7041] | 509 | color: trunk#7fc97f;
|
---|
| 510 | }
|
---|
| 511 | way[highway=primary] {
|
---|
| 512 | width: 3;
|
---|
[13125] | 513 | z-index: 0.09;
|
---|
[7041] | 514 | color: primary#fb805f;
|
---|
| 515 | }
|
---|
| 516 | way[highway=primary_link] {
|
---|
| 517 | width: 3;
|
---|
[13125] | 518 | z-index: 0.08;
|
---|
[7041] | 519 | color: primary#fb805f;
|
---|
| 520 | }
|
---|
| 521 | way[highway=secondary] {
|
---|
| 522 | width: 3;
|
---|
[13125] | 523 | z-index: 0.07;
|
---|
[7041] | 524 | color: secondary#fdbf6f;
|
---|
| 525 | }
|
---|
| 526 | way[highway=secondary_link] {
|
---|
| 527 | width: 3;
|
---|
[13125] | 528 | z-index: 0.06;
|
---|
[7041] | 529 | color: secondary#fdbf6f;
|
---|
| 530 | }
|
---|
| 531 | way[highway=tertiary] {
|
---|
| 532 | width: 2;
|
---|
[13125] | 533 | z-index: 0.05;
|
---|
[7041] | 534 | color: tertiary#f7f496;
|
---|
| 535 | }
|
---|
| 536 | way[highway=tertiary_link] {
|
---|
| 537 | width: 2;
|
---|
[13125] | 538 | z-index: 0.04;
|
---|
[7041] | 539 | color: tertiary#f7f496;
|
---|
| 540 | }
|
---|
| 541 | way[highway=unclassified] {
|
---|
| 542 | width: 2;
|
---|
[13125] | 543 | z-index: 0.03;
|
---|
[7041] | 544 | color: street#c0c0c0;
|
---|
| 545 | }
|
---|
[7979] | 546 | way[highway=escape] {
|
---|
| 547 | width: 3;
|
---|
| 548 | color: street#c0c0c0;
|
---|
| 549 | dashes: 3,3;
|
---|
| 550 | }
|
---|
[7041] | 551 | way[highway=road] {
|
---|
| 552 | width: 2;
|
---|
[7211] | 553 | casing-width: 0.5;
|
---|
| 554 | casing-color: #ff9696;
|
---|
[8999] | 555 | color: highway_road#770000;
|
---|
[7041] | 556 | }
|
---|
[7241] | 557 | way[highway=track][area?], relation[type=multipolygon][highway=track] {
|
---|
[7904] | 558 | fill-color: highway_track#6e541c;
|
---|
[7241] | 559 | }
|
---|
[7041] | 560 | way[highway=track] {
|
---|
[7900] | 561 | width: 2;
|
---|
| 562 | color: highway_track#6e541c;
|
---|
[7041] | 563 | }
|
---|
| 564 | way[highway=residential] {
|
---|
| 565 | width: 2;
|
---|
[13125] | 566 | z-index: 0.02;
|
---|
[7041] | 567 | color: street#c0c0c0;
|
---|
| 568 | }
|
---|
| 569 | way[highway=living_street] {
|
---|
| 570 | width: 2;
|
---|
[13125] | 571 | z-index: 0.01;
|
---|
[7041] | 572 | dashes: 9,9;
|
---|
| 573 | dashes-background-color: livingdashed#00ff00;
|
---|
| 574 | color: street#c0c0c0;
|
---|
| 575 | }
|
---|
[7160] | 576 | way[highway=service][area?], relation[type=multipolygon][highway=service] {
|
---|
[7159] | 577 | fill-color: service#809bc0;
|
---|
| 578 | }
|
---|
[7160] | 579 | way[highway=service][!area?] {
|
---|
[7041] | 580 | width: 1;
|
---|
| 581 | color: service#809bc0;
|
---|
| 582 | }
|
---|
| 583 | way[highway=bridleway] {
|
---|
| 584 | width: 1;
|
---|
[7900] | 585 | color: horse#a18559;
|
---|
[7041] | 586 | }
|
---|
| 587 | way[highway=cycleway] {
|
---|
| 588 | width: 1;
|
---|
| 589 | color: bicycle#b100ff;
|
---|
| 590 | }
|
---|
[7160] | 591 | way[highway=footway][area?], relation[type=multipolygon][highway=footway] {
|
---|
[7159] | 592 | fill-color: foot#00ff00;
|
---|
| 593 | }
|
---|
[7160] | 594 | way[highway=footway][!area?] {
|
---|
[7041] | 595 | width: 1;
|
---|
| 596 | color: foot#00ff00;
|
---|
| 597 | }
|
---|
| 598 | way[highway=path][bicycle!=designated][bicycle!=official][foot!=designated][foot!=official] {
|
---|
| 599 | width: 1;
|
---|
| 600 | dashes: 9,9;
|
---|
| 601 | color: foot#00ff00;
|
---|
| 602 | }
|
---|
| 603 | /* display path with bicycle/foot=designated/official as if it was cycleway/footway */
|
---|
| 604 | way[highway=path][bicycle=designated],
|
---|
| 605 | way[highway=path][bicycle=official] {
|
---|
| 606 | width: 1;
|
---|
| 607 | color: bicycle#b100ff;
|
---|
[8999] | 608 | set cyclecolor;
|
---|
[7041] | 609 | }
|
---|
| 610 | way[highway=path][foot=designated],
|
---|
| 611 | way[highway=path][foot=official] {
|
---|
| 612 | width: 1;
|
---|
| 613 | color: foot#00ff00;
|
---|
| 614 | }
|
---|
| 615 | way[highway=path][bicycle=designated][foot=designated],
|
---|
| 616 | way[highway=path][bicycle=official][foot=official] {
|
---|
| 617 | width: 1;
|
---|
| 618 | color: bicycle#b100ff;
|
---|
[8999] | 619 | set cyclecolor;
|
---|
[7041] | 620 | dashes: 14,14;
|
---|
| 621 | dashes-background-color: foot#00ff00;
|
---|
| 622 | }
|
---|
[7172] | 623 | way[highway=cycleway][foot=yes],
|
---|
| 624 | way[highway=path][bicycle=designated][foot=yes],
|
---|
| 625 | way[highway=path][bicycle=official][foot=yes] {
|
---|
| 626 | width: 1;
|
---|
| 627 | color: bicycle#b100ff;
|
---|
[8999] | 628 | set cyclecolor;
|
---|
[7172] | 629 | dashes: 21,7;
|
---|
| 630 | dashes-background-color: foot#00ff00;
|
---|
| 631 | }
|
---|
| 632 | way[highway=footway][bicycle=yes],
|
---|
| 633 | way[highway=path][bicycle=yes][foot=designated],
|
---|
| 634 | way[highway=path][bicycle=yes][foot=official] {
|
---|
| 635 | width: 1;
|
---|
| 636 | color: foot#00ff00;
|
---|
| 637 | dashes: 21,7;
|
---|
| 638 | dashes-background-color: bicycle#b100ff;
|
---|
| 639 | }
|
---|
[7154] | 640 | way[highway=pedestrian][area?], relation[type=multipolygon][highway=pedestrian] {
|
---|
[7041] | 641 | width: 3;
|
---|
| 642 | color: foot#00ff00;
|
---|
[7154] | 643 | fill-color: foot#00ff00;
|
---|
[7041] | 644 | }
|
---|
[7154] | 645 | way[highway=pedestrian] {
|
---|
[7041] | 646 | width: 3;
|
---|
| 647 | color: foot#00ff00;
|
---|
| 648 | }
|
---|
| 649 | way[highway=steps] {
|
---|
[7900] | 650 | width: 3;
|
---|
[7041] | 651 | color: foot#00ff00;
|
---|
[7044] | 652 | dashes: 2,2;
|
---|
[7041] | 653 | }
|
---|
| 654 | way[highway=bus_guideway] {
|
---|
| 655 | width: 1;
|
---|
| 656 | color: rail#404040;
|
---|
| 657 | dashes: 9,9;
|
---|
| 658 | }
|
---|
| 659 | way[highway=raceway] {
|
---|
| 660 | width: 1;
|
---|
| 661 | color: raceway#ff80ff;
|
---|
| 662 | }
|
---|
[7652] | 663 | way[highway=raceway][area?], relation[type=multipolygon][highway=raceway] {
|
---|
| 664 | fill-color: raceway#ff80ff;
|
---|
| 665 | }
|
---|
[7858] | 666 | area[junction=yes] {
|
---|
| 667 | fill-color: junction#c0c0c0;
|
---|
| 668 | }
|
---|
| 669 | node[junction=yes] {
|
---|
[10565] | 670 | icon-image: "presets/vehicle/junction.svg";
|
---|
[7858] | 671 | set icon_z17;
|
---|
| 672 | }
|
---|
[7810] | 673 | node[highway=traffic_mirror] {
|
---|
[10565] | 674 | icon-image: "presets/vehicle/traffic_mirror.svg";
|
---|
[7810] | 675 | set icon_z17;
|
---|
| 676 | }
|
---|
[8725] | 677 | node[highway=milestone] {
|
---|
[10565] | 678 | icon-image: "presets/vehicle/milestone.svg";
|
---|
[8725] | 679 | set icon_z17;
|
---|
| 680 | }
|
---|
[7041] | 681 | node[direction=clockwise] {
|
---|
[10565] | 682 | icon-image: "presets/vehicle/restriction/roundabout_left.svg";
|
---|
[7454] | 683 | set icon_z17;
|
---|
[7041] | 684 | }
|
---|
| 685 | node[highway=mini_roundabout] {
|
---|
[10565] | 686 | icon-image: "presets/vehicle/restriction/mini_roundabout_left.svg";
|
---|
[7454] | 687 | set icon_z17;
|
---|
[7041] | 688 | }
|
---|
[7199] | 689 | node:righthandtraffic[highway=mini_roundabout] {
|
---|
[10565] | 690 | icon-image: "presets/vehicle/restriction/mini_roundabout_right.svg";
|
---|
[7454] | 691 | set icon_z17;
|
---|
[7199] | 692 | }
|
---|
[7041] | 693 | node[highway=stop] {
|
---|
[10565] | 694 | icon-image: "presets/vehicle/restriction/stop.svg";
|
---|
[7454] | 695 | set icon_z17;
|
---|
[7041] | 696 | }
|
---|
| 697 | node[highway=give_way] {
|
---|
[10565] | 698 | icon-image: "presets/vehicle/restriction/give_way.svg";
|
---|
[7454] | 699 | set icon_z17;
|
---|
[7041] | 700 | }
|
---|
[15197] | 701 | node[cycleway=asl] {
|
---|
| 702 | icon-image: "presets/transport/way/asl.svg";
|
---|
| 703 | set icon_z17;
|
---|
| 704 | }
|
---|
[7041] | 705 | node[highway=traffic_signals] {
|
---|
[10565] | 706 | icon-image: "presets/vehicle/traffic_signals.svg";
|
---|
[7454] | 707 | set icon_z17;
|
---|
[7041] | 708 | }
|
---|
[7968] | 709 | node[highway=traffic_signals][crossing][crossing!=no] {
|
---|
[10565] | 710 | icon-image: "presets/vehicle/traffic_signals_crossing.svg";
|
---|
[7815] | 711 | set icon_z17;
|
---|
| 712 | }
|
---|
[14370] | 713 | node[highway=traffic_signals][crossing_ref=zebra] {
|
---|
[10565] | 714 | icon-image: "presets/vehicle/traffic_signals_crossing_ref_zebra.svg";
|
---|
[7815] | 715 | set icon_z17;
|
---|
| 716 | }
|
---|
| 717 | node[highway=traffic_signals][crossing=island] {
|
---|
[10565] | 718 | icon-image: "presets/vehicle/traffic_signals_crossing_island.svg";
|
---|
[7815] | 719 | set icon_z17;
|
---|
| 720 | }
|
---|
| 721 | node[highway=traffic_signals][crossing=traffic_signals] {
|
---|
[10565] | 722 | icon-image: "presets/vehicle/traffic_signals_crossing_traffic_signals.svg";
|
---|
[7815] | 723 | set icon_z17;
|
---|
| 724 | }
|
---|
[7041] | 725 | node[highway=street_lamp] {
|
---|
[10808] | 726 | icon-image: "presets/misc/streetlamp.svg";
|
---|
[7454] | 727 | set icon_z17;
|
---|
[7041] | 728 | }
|
---|
| 729 | node[highway=speed_camera] {
|
---|
[10565] | 730 | icon-image: "presets/vehicle/restriction/speed_camera.svg";
|
---|
[7454] | 731 | set icon_z17;
|
---|
[7041] | 732 | }
|
---|
[8134] | 733 | relation[type=enforcement] >[role="device"] node {
|
---|
[10565] | 734 | icon-image: "presets/vehicle/restriction/speed_camera.svg";
|
---|
[8134] | 735 | set icon_z17;
|
---|
| 736 | }
|
---|
[7041] | 737 | node[traffic_sign=city_limit] {
|
---|
[10565] | 738 | icon-image: "presets/vehicle/restriction/city_limit.svg";
|
---|
[7454] | 739 | set icon_z17;
|
---|
[7041] | 740 | }
|
---|
[10522] | 741 | node[highway=crossing][crossing!=no] {
|
---|
[10565] | 742 | icon-image: "presets/vehicle/crossing.svg";
|
---|
[7454] | 743 | set icon_z17;
|
---|
[7041] | 744 | }
|
---|
[7794] | 745 | node[highway=crossing][crossing=unmarked] {
|
---|
[10565] | 746 | icon-image: "presets/vehicle/crossing_unmarked.svg";
|
---|
[7794] | 747 | set icon_z17;
|
---|
| 748 | }
|
---|
| 749 | node[highway=crossing][crossing=island] {
|
---|
[10565] | 750 | icon-image: "presets/vehicle/crossing_island.svg";
|
---|
[7794] | 751 | set icon_z17;
|
---|
| 752 | }
|
---|
[14370] | 753 | node[highway=crossing][crossing_ref=zebra] {
|
---|
[10565] | 754 | icon-image: "presets/vehicle/crossing_ref_zebra.svg";
|
---|
[7794] | 755 | set icon_z17;
|
---|
| 756 | }
|
---|
| 757 | node[highway=crossing][crossing=traffic_signals] {
|
---|
[10565] | 758 | icon-image: "presets/vehicle/crossing_traffic_signals.svg";
|
---|
[7794] | 759 | set icon_z17;
|
---|
| 760 | }
|
---|
[7041] | 761 | node[highway=motorway_junction] {
|
---|
[10565] | 762 | icon-image: "presets/vehicle/motorway_junction.svg";
|
---|
[7454] | 763 | set icon_z17;
|
---|
[10015] | 764 | text: eval(cond(has_tag_key(ref), concat(tag(name), " (", tag(ref), ")"), tag(name)));
|
---|
[7041] | 765 | }
|
---|
| 766 | area[highway=services] {
|
---|
| 767 | fill-color: services#c0c0c0;
|
---|
| 768 | }
|
---|
| 769 | node[highway=services] {
|
---|
[10565] | 770 | icon-image: "presets/vehicle/services.svg";
|
---|
[7454] | 771 | set icon_z17;
|
---|
[7041] | 772 | }
|
---|
| 773 | area[highway=rest_area] {
|
---|
| 774 | fill-color: services#c0c0c0;
|
---|
| 775 | }
|
---|
| 776 | node[highway=rest_area] {
|
---|
[10565] | 777 | icon-image: "presets/vehicle/rest_area.svg";
|
---|
[7454] | 778 | set icon_z17;
|
---|
[7041] | 779 | }
|
---|
[11010] | 780 | node[ford=stepping_stones],
|
---|
[10911] | 781 | node[ford?] {
|
---|
[10706] | 782 | icon-image: "presets/vehicle/ford.svg";
|
---|
[7454] | 783 | set icon_z17;
|
---|
[7041] | 784 | }
|
---|
[11010] | 785 | way[ford=stepping_stones]::core_ford,
|
---|
[7041] | 786 | way[ford?]::core_ford {
|
---|
| 787 | z-index: 1;
|
---|
| 788 | width: 2;
|
---|
| 789 | color: water#0000ff;
|
---|
| 790 | dashes: 9,9;
|
---|
[11010] | 791 | dashes-offset: 9;
|
---|
[7041] | 792 | }
|
---|
| 793 | area[highway=platform]:closed {
|
---|
| 794 | fill-color: highway_platform#c0c0c0;
|
---|
| 795 | }
|
---|
| 796 | way[highway=platform] {
|
---|
| 797 | width: 2;
|
---|
| 798 | color: highway_platform#c0c0c0;
|
---|
| 799 | }
|
---|
| 800 | node[highway=turning_circle] {
|
---|
[10565] | 801 | icon-image: "presets/vehicle/turning_circle.svg";
|
---|
[7454] | 802 | set icon_z17;
|
---|
[7041] | 803 | }
|
---|
[7328] | 804 | node[highway=turning_loop] {
|
---|
[10565] | 805 | icon-image: "presets/vehicle/turning_loop.svg";
|
---|
[7454] | 806 | set icon_z17;
|
---|
[7328] | 807 | }
|
---|
[7041] | 808 | node[highway=passing_place] {
|
---|
[10565] | 809 | icon-image: "presets/vehicle/passing_place.svg";
|
---|
[7454] | 810 | set icon_z17;
|
---|
[7041] | 811 | }
|
---|
[7854] | 812 | area[highway=elevator] {
|
---|
| 813 | fill-color: elevator#a6bace;
|
---|
| 814 | }
|
---|
[7261] | 815 | node[highway=elevator] {
|
---|
[10565] | 816 | icon-image: "presets/service/elevator.svg";
|
---|
[7454] | 817 | set icon_z17;
|
---|
[7261] | 818 | }
|
---|
[7041] | 819 | way[highway=construction] {
|
---|
| 820 | width: 2;
|
---|
| 821 | color: construction#ffff00;
|
---|
| 822 | dashes: 9,9;
|
---|
| 823 | }
|
---|
| 824 | node[highway=construction] {
|
---|
[10706] | 825 | icon-image: "presets/misc/construction.svg";
|
---|
[7454] | 826 | set icon_z17;
|
---|
[7041] | 827 | }
|
---|
| 828 | area[highway=emergency_access_point] {
|
---|
| 829 | fill-color: emergency_access_point#c0c0c0;
|
---|
| 830 | }
|
---|
| 831 | node[highway=emergency_access_point] {
|
---|
[10565] | 832 | icon-image: "presets/service/emergency_access_point.svg";
|
---|
[7454] | 833 | set icon_z17;
|
---|
[7041] | 834 | }
|
---|
| 835 | node[highway=motorway], node[highway=motorway_link],
|
---|
| 836 | node[highway=trunk], node[highway=trunk_link],
|
---|
| 837 | node[highway=primary], node[highway=primary_link],
|
---|
| 838 | node[highway=secondary], node[highway=secondary_link],
|
---|
| 839 | node[highway=tertiary], node[highway=tertiary_link],
|
---|
| 840 | node[highway=unclassified],
|
---|
| 841 | node[highway=road],
|
---|
| 842 | node[highway=unsurfaced],
|
---|
| 843 | node[highway=track],
|
---|
| 844 | node[highway=residential],
|
---|
| 845 | node[highway=living_street],
|
---|
| 846 | node[highway=service],
|
---|
| 847 | node[highway=bridleway],
|
---|
| 848 | node[highway=cycleway],
|
---|
| 849 | node[highway=footway],
|
---|
| 850 | node[highway=path],
|
---|
| 851 | node[highway=pedestrian],
|
---|
| 852 | node[highway=bus_guideway],
|
---|
| 853 | node[highway=platform] {
|
---|
[10706] | 854 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 855 | set icon_z17;
|
---|
[7041] | 856 | }
|
---|
| 857 |
|
---|
| 858 | /************************/
|
---|
| 859 | /* traffic_calming tags */
|
---|
| 860 | /************************/
|
---|
| 861 |
|
---|
| 862 | node[traffic_calming] {
|
---|
[10565] | 863 | icon-image: "presets/vehicle/traffic_calming.svg";
|
---|
[7454] | 864 | set icon_z17;
|
---|
[7041] | 865 | }
|
---|
| 866 | node[traffic_calming=chicane] {
|
---|
[10565] | 867 | icon-image: "presets/vehicle/chicane.svg";
|
---|
[7454] | 868 | set icon_z17;
|
---|
[7041] | 869 | }
|
---|
[8758] | 870 | node[traffic_calming=choker] {
|
---|
[10565] | 871 | icon-image: "presets/vehicle/choker.svg";
|
---|
[7454] | 872 | set icon_z17;
|
---|
[7041] | 873 | }
|
---|
[8758] | 874 | node[traffic_calming=island] {
|
---|
[10565] | 875 | icon-image: "presets/vehicle/island.svg";
|
---|
[8758] | 876 | set icon_z17;
|
---|
| 877 | }
|
---|
[9506] | 878 | node[traffic_calming=bump] {
|
---|
[10565] | 879 | icon-image: "presets/vehicle/bump.svg";
|
---|
[9506] | 880 | set icon_z17;
|
---|
| 881 | }
|
---|
| 882 | node[traffic_calming=hump] {
|
---|
[10565] | 883 | icon-image: "presets/vehicle/hump.svg";
|
---|
[9506] | 884 | set icon_z17;
|
---|
| 885 | }
|
---|
| 886 | node[traffic_calming=table] {
|
---|
[10565] | 887 | icon-image: "presets/vehicle/table.svg";
|
---|
[9506] | 888 | set icon_z17;
|
---|
| 889 | }
|
---|
| 890 | node[traffic_calming=cushion] {
|
---|
[10565] | 891 | icon-image: "presets/vehicle/cushion.svg";
|
---|
[9506] | 892 | set icon_z17;
|
---|
| 893 | }
|
---|
| 894 | node[traffic_calming=rumble_strip] {
|
---|
[10565] | 895 | icon-image: "presets/vehicle/rumble_strip.svg";
|
---|
[9506] | 896 | set icon_z17;
|
---|
| 897 | }
|
---|
[14714] | 898 | node[traffic_calming=dip] {
|
---|
| 899 | icon-image: "presets/vehicle/dip.svg";
|
---|
| 900 | set icon_z17;
|
---|
| 901 | }
|
---|
[7041] | 902 | /****************/
|
---|
| 903 | /* junction tag */
|
---|
| 904 | /****************/
|
---|
| 905 |
|
---|
| 906 | node[junction=roundabout] {
|
---|
[10565] | 907 | icon-image: "presets/vehicle/restriction/roundabout_left.svg";
|
---|
[7454] | 908 | set icon_z17;
|
---|
[7041] | 909 | }
|
---|
[7199] | 910 | node:righthandtraffic[junction=roundabout] {
|
---|
[10565] | 911 | icon-image: "presets/vehicle/restriction/roundabout_right.svg";
|
---|
[7454] | 912 | set icon_z17;
|
---|
[7199] | 913 | }
|
---|
[7041] | 914 |
|
---|
| 915 | /*****************/
|
---|
| 916 | /* cycleway tags */
|
---|
| 917 | /*****************/
|
---|
| 918 |
|
---|
[9566] | 919 | /* prepare lane */
|
---|
[7201] | 920 | way[oneway?][cycleway=lane]:righthandtraffic::core_cycleway,
|
---|
| 921 | way[oneway=-1][cycleway=opposite_lane]:righthandtraffic::core_cycleway {
|
---|
[9566] | 922 | set laneRight;
|
---|
[7201] | 923 | set righthandtr;
|
---|
| 924 | }
|
---|
| 925 | way[oneway?][cycleway=opposite_lane]:righthandtraffic::core_cycleway,
|
---|
| 926 | way[oneway=-1][cycleway=lane]:righthandtraffic::core_cycleway {
|
---|
[9566] | 927 | set laneLeft;
|
---|
[7201] | 928 | set righthandtr;
|
---|
| 929 | }
|
---|
| 930 | way[oneway?][cycleway=lane]!.righthandtr::core_cycleway,
|
---|
| 931 | way[oneway=-1][cycleway=opposite_lane]!.righthandtr::core_cycleway {
|
---|
[9566] | 932 | set laneLeft;
|
---|
[7201] | 933 | }
|
---|
| 934 | way[oneway?][cycleway=opposite_lane]!.righthandtr::core_cycleway,
|
---|
| 935 | way[oneway=-1][cycleway=lane]!.righthandtr::core_cycleway {
|
---|
[9566] | 936 | set laneRight;
|
---|
[7201] | 937 | }
|
---|
| 938 | way[cycleway:left=lane]::core_cycleway {
|
---|
[9566] | 939 | set laneLeft;
|
---|
[7201] | 940 | }
|
---|
| 941 | way[cycleway:right=lane]::core_cycleway {
|
---|
[9566] | 942 | set laneRight;
|
---|
[7201] | 943 | }
|
---|
[8166] | 944 | way[oneway=no][cycleway=lane]::core_cycleway,
|
---|
[7201] | 945 | way[!oneway][cycleway=lane]::core_cycleway {
|
---|
[9566] | 946 | set laneLeft;
|
---|
| 947 | set laneRight;
|
---|
[7201] | 948 | }
|
---|
| 949 |
|
---|
[9566] | 950 | /* prepare shared_lane */
|
---|
| 951 | way[oneway?][cycleway=shared_lane]:righthandtraffic::core_cycleway {
|
---|
| 952 | set shared_laneRight;
|
---|
| 953 | set righthandtr;
|
---|
| 954 | }
|
---|
| 955 | way[oneway=-1][cycleway=shared_lane]:righthandtraffic::core_cycleway {
|
---|
| 956 | set shared_laneLeft;
|
---|
| 957 | set righthandtr;
|
---|
| 958 | }
|
---|
| 959 | way[oneway?][cycleway=shared_lane]!.righthandtr::core_cycleway {
|
---|
| 960 | set shared_laneLeft;
|
---|
| 961 | }
|
---|
| 962 | way[oneway=-1][cycleway=shared_lane]!.righthandtr::core_cycleway {
|
---|
| 963 | set shared_laneRight;
|
---|
| 964 | }
|
---|
| 965 | way[cycleway:left=shared_lane]::core_cycleway {
|
---|
| 966 | set shared_laneLeft;
|
---|
| 967 | }
|
---|
| 968 | way[cycleway:right=shared_lane]::core_cycleway {
|
---|
| 969 | set shared_laneRight;
|
---|
| 970 | }
|
---|
| 971 | way[oneway=no][cycleway=shared_lane]::core_cycleway,
|
---|
| 972 | way[!oneway][cycleway=shared_lane]::core_cycleway {
|
---|
| 973 | set shared_laneLeft;
|
---|
| 974 | set shared_laneRight;
|
---|
| 975 | }
|
---|
| 976 |
|
---|
| 977 | /* prepare track */
|
---|
[7201] | 978 | way[oneway?][cycleway=track]:righthandtraffic::core_cycleway,
|
---|
| 979 | way[oneway=-1][cycleway=opposite_track]:righthandtraffic::core_cycleway {
|
---|
[9566] | 980 | set trackRight;
|
---|
[7201] | 981 | set righthandtr;
|
---|
| 982 | }
|
---|
| 983 | way[oneway?][cycleway=opposite_track]:righthandtraffic::core_cycleway,
|
---|
| 984 | way[oneway=-1][cycleway=track]:righthandtraffic::core_cycleway {
|
---|
[9566] | 985 | set trackLeft;
|
---|
[7201] | 986 | set righthandtr;
|
---|
| 987 | }
|
---|
| 988 | way[oneway?][cycleway=track]!.righthandtr::core_cycleway,
|
---|
| 989 | way[oneway=-1][cycleway=opposite_track]!.righthandtr::core_cycleway {
|
---|
[9566] | 990 | set trackLeft;
|
---|
[7201] | 991 | }
|
---|
| 992 | way[oneway?][cycleway=opposite_track]!.righthandtr::core_cycleway,
|
---|
| 993 | way[oneway=-1][cycleway=track]!.righthandtr::core_cycleway {
|
---|
[9566] | 994 | set trackRight;
|
---|
[7201] | 995 | }
|
---|
| 996 | way[cycleway:left=track]::core_cycleway {
|
---|
[9566] | 997 | set trackLeft;
|
---|
[7201] | 998 | }
|
---|
| 999 | way[cycleway:right=track]::core_cycleway {
|
---|
[9566] | 1000 | set trackRight;
|
---|
[7201] | 1001 | }
|
---|
[8166] | 1002 | way[oneway=no][cycleway=track]::core_cycleway,
|
---|
[7201] | 1003 | way[!oneway][cycleway=track]::core_cycleway {
|
---|
[9566] | 1004 | set trackLeft;
|
---|
| 1005 | set trackRight;
|
---|
[7201] | 1006 | }
|
---|
| 1007 |
|
---|
[9566] | 1008 | /* render lane */
|
---|
| 1009 | way.laneRight::core_cycleway {
|
---|
[7201] | 1010 | width: 2;
|
---|
[7041] | 1011 | color: bicycle#b100ff;
|
---|
[7201] | 1012 | dashes: 6, 10;
|
---|
| 1013 | offset: 0 - (prop("width", "default") / 2) - 2;
|
---|
| 1014 | major-z-index: 2.1;
|
---|
| 1015 | modifier: true;
|
---|
[7041] | 1016 | }
|
---|
[9566] | 1017 | way[prop("laneLeft","core_cycleway")]::core_cycleway2 {
|
---|
[7201] | 1018 | width: 2;
|
---|
[7041] | 1019 | color: bicycle#b100ff;
|
---|
[7201] | 1020 | dashes: 6, 10;
|
---|
| 1021 | offset: (prop("width", "default") / 2) + 2;
|
---|
| 1022 | major-z-index: 2.1;
|
---|
| 1023 | modifier: true;
|
---|
[7041] | 1024 | }
|
---|
[9566] | 1025 | /* render shared_lane */
|
---|
| 1026 | way.shared_laneRight::core_cycleway {
|
---|
[7201] | 1027 | width: 2;
|
---|
| 1028 | color: bicycle#b100ff;
|
---|
[9566] | 1029 | dashes: 6, 3;
|
---|
| 1030 | offset: 0 - (prop("width", "default") / 2) - 2;
|
---|
| 1031 | major-z-index: 2.1;
|
---|
| 1032 | modifier: true;
|
---|
| 1033 | }
|
---|
| 1034 | way[prop("shared_laneLeft","core_cycleway")]::core_cycleway2 {
|
---|
| 1035 | width: 2;
|
---|
| 1036 | color: bicycle#b100ff;
|
---|
| 1037 | dashes: 6, 3;
|
---|
| 1038 | offset: (prop("width", "default") / 2) + 2;
|
---|
| 1039 | major-z-index: 2.1;
|
---|
| 1040 | modifier: true;
|
---|
| 1041 | }
|
---|
| 1042 | /* render track */
|
---|
| 1043 | way.trackRight::core_cycleway {
|
---|
| 1044 | width: 2;
|
---|
| 1045 | color: bicycle#b100ff;
|
---|
[7271] | 1046 | dashes: 25, 8;
|
---|
[7201] | 1047 | offset: 0 - (prop("width", "default") / 2) - 2;
|
---|
| 1048 | major-z-index: 2.1;
|
---|
| 1049 | modifier: true;
|
---|
| 1050 | }
|
---|
[9566] | 1051 | way[prop("trackLeft","core_cycleway")]::core_cycleway2 {
|
---|
[7201] | 1052 | width: 2;
|
---|
| 1053 | color: bicycle#b100ff;
|
---|
[7271] | 1054 | dashes: 25, 8;
|
---|
[7201] | 1055 | offset: (prop("width", "default") / 2) + 2;
|
---|
| 1056 | major-z-index: 2.1;
|
---|
| 1057 | modifier: true;
|
---|
| 1058 | }
|
---|
[9566] | 1059 | /* render opposite */
|
---|
[13255] | 1060 | way[cycleway=opposite][oneway][oneway!=no]::core_cycleway {
|
---|
| 1061 | z-index: 1;
|
---|
[7041] | 1062 | width: +0;
|
---|
| 1063 | color: bicycle#b100ff;
|
---|
| 1064 | dashes: 4,10;
|
---|
| 1065 | }
|
---|
[13255] | 1066 | node[cycleway=lane ], node[cycleway=opposite_lane ],
|
---|
[7041] | 1067 | node[cycleway=track], node[cycleway=opposite_track],
|
---|
| 1068 | node[cycleway=opposite] {
|
---|
[10706] | 1069 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 1070 | set icon_z17;
|
---|
[7041] | 1071 | }
|
---|
| 1072 |
|
---|
| 1073 | /******************/
|
---|
| 1074 | /* tracktype tags */
|
---|
| 1075 | /******************/
|
---|
| 1076 |
|
---|
| 1077 | way[highway=track][tracktype=grade1] {
|
---|
[7900] | 1078 | dashes: 8,1;
|
---|
[7041] | 1079 | }
|
---|
| 1080 | way[highway=track][tracktype=grade2] {
|
---|
[7900] | 1081 | dashes: 6,2;
|
---|
[7041] | 1082 | }
|
---|
| 1083 | way[highway=track][tracktype=grade3] {
|
---|
[7900] | 1084 | dashes: 4,3;
|
---|
[7041] | 1085 | }
|
---|
| 1086 | way[highway=track][tracktype=grade4] {
|
---|
[7900] | 1087 | dashes: 4,5;
|
---|
[7041] | 1088 | }
|
---|
| 1089 | way[highway=track][tracktype=grade5] {
|
---|
[7900] | 1090 | dashes: 4,7;
|
---|
[7041] | 1091 | }
|
---|
| 1092 |
|
---|
| 1093 | /**************/
|
---|
| 1094 | /* piste tags */
|
---|
| 1095 | /**************/
|
---|
| 1096 |
|
---|
[7645] | 1097 | way[route=ski]::core_piste {
|
---|
| 1098 | z-index: -1;
|
---|
| 1099 | modifier: false;
|
---|
[7646] | 1100 | width: 6;
|
---|
[7645] | 1101 | color: ski#809bc0;
|
---|
| 1102 | }
|
---|
[10896] | 1103 | area[piste:difficulty=easy][!highway][area=yes]::core_piste {
|
---|
[7041] | 1104 | fill-color: piste_easy#0000ff;
|
---|
| 1105 | }
|
---|
| 1106 | way[piste:difficulty=easy]::core_piste {
|
---|
| 1107 | z-index: -1; /* below line style from highway=* tag */
|
---|
| 1108 | modifier: false; /* suppress default line if there is no style on default layer */
|
---|
| 1109 | width: 6;
|
---|
| 1110 | color: piste_easy#0000ff;
|
---|
| 1111 | }
|
---|
[10896] | 1112 | area[piste:difficulty=intermediate][!highway][area=yes]::core_piste {
|
---|
[7041] | 1113 | fill-color: piste_intermediate#ff0000;
|
---|
| 1114 | }
|
---|
| 1115 | way[piste:difficulty=intermediate]::core_piste {
|
---|
| 1116 | z-index: -1;
|
---|
| 1117 | modifier: false;
|
---|
| 1118 | width: 6;
|
---|
| 1119 | color: piste_intermediate#ff0000;
|
---|
| 1120 | }
|
---|
[10896] | 1121 | area[piste:difficulty=advanced][!highway][area=yes]::core_piste {
|
---|
[7041] | 1122 | fill-color: piste_advanced#606060;
|
---|
| 1123 | }
|
---|
| 1124 | way[piste:difficulty=advanced]::core_piste {
|
---|
| 1125 | z-index: -1;
|
---|
| 1126 | modifier: false;
|
---|
| 1127 | width: 6;
|
---|
| 1128 | color: piste_advanced#606060;
|
---|
| 1129 | }
|
---|
[10896] | 1130 | area[piste:difficulty=expert][!highway][area=yes]::core_piste {
|
---|
[7041] | 1131 | fill-color: piste_expert#606060;
|
---|
| 1132 | }
|
---|
| 1133 | way[piste:difficulty=expert]::core_piste {
|
---|
| 1134 | z-index: -1;
|
---|
| 1135 | modifier: false;
|
---|
| 1136 | width: 6;
|
---|
| 1137 | color: piste_expert#606060;
|
---|
| 1138 | }
|
---|
[10896] | 1139 | area[piste:difficulty=freeride][!highway][area=yes]::core_piste {
|
---|
[7041] | 1140 | fill-color: piste_freeride#ffff00;
|
---|
| 1141 | }
|
---|
| 1142 | way[piste:difficulty=freeride]::core_piste {
|
---|
| 1143 | z-index: -1;
|
---|
| 1144 | modifier: false;
|
---|
| 1145 | width: 6;
|
---|
| 1146 | color: piste_freeride#ffff00;
|
---|
| 1147 | }
|
---|
[10896] | 1148 | area[piste:difficulty=novice][!highway][area=yes]::core_piste {
|
---|
[7041] | 1149 | fill-color: piste_novice#00ff00;
|
---|
| 1150 | }
|
---|
| 1151 | way[piste:difficulty=novice]::core_piste {
|
---|
| 1152 | z-index: -1;
|
---|
| 1153 | modifier: false;
|
---|
| 1154 | width: 6;
|
---|
| 1155 | color: piste_novice#00ff00;
|
---|
| 1156 | }
|
---|
[8121] | 1157 | node[piste:type=downhill],
|
---|
| 1158 | node[piste:type=nordic],
|
---|
| 1159 | node[piste:type=skitour],
|
---|
| 1160 | node[piste:type=sled],
|
---|
| 1161 | node[piste:type=sleigh],
|
---|
| 1162 | node[piste:type=snow_park] {
|
---|
[10706] | 1163 | icon-image: "presets/sport/skiing.svg";
|
---|
[7454] | 1164 | set icon_z17;
|
---|
[7041] | 1165 | }
|
---|
| 1166 |
|
---|
| 1167 | /**************/
|
---|
| 1168 | /* power tags */
|
---|
| 1169 | /**************/
|
---|
| 1170 |
|
---|
[9433] | 1171 | node[power=portal] {
|
---|
[10565] | 1172 | icon-image: "presets/power/portal.svg";
|
---|
[9433] | 1173 | set icon_z17;
|
---|
| 1174 | }
|
---|
[7041] | 1175 | node[power=tower] {
|
---|
[10565] | 1176 | icon-image: "presets/power/tower.svg";
|
---|
[7454] | 1177 | set icon_z17;
|
---|
[7041] | 1178 | }
|
---|
| 1179 | node[power=pole] {
|
---|
[10565] | 1180 | icon-image: "presets/power/pole.svg";
|
---|
[7454] | 1181 | set icon_z17;
|
---|
[7041] | 1182 | }
|
---|
[12997] | 1183 | node[power=pole][switch] {
|
---|
| 1184 | icon-image: "presets/power/pole_switch.svg";
|
---|
| 1185 | set icon_z17;
|
---|
| 1186 | }
|
---|
[9423] | 1187 | node[power=pole][transformer=distribution] {
|
---|
[10565] | 1188 | icon-image: "presets/power/pole_transformer.svg";
|
---|
[9423] | 1189 | set icon_z17;
|
---|
| 1190 | }
|
---|
[14123] | 1191 | node[power=catenary_mast] {
|
---|
| 1192 | icon-image: "presets/power/catenary_mast.svg";
|
---|
| 1193 | set icon_z17;
|
---|
| 1194 | }
|
---|
[9433] | 1195 | node[power=insulator] {
|
---|
[10565] | 1196 | icon-image: "presets/power/insulator.svg";
|
---|
[9433] | 1197 | set icon_z17;
|
---|
| 1198 | }
|
---|
| 1199 | way[power=portal],
|
---|
[7041] | 1200 | way[power=line],
|
---|
| 1201 | way[power=minor_line] {
|
---|
| 1202 | width: 1;
|
---|
| 1203 | color: power#eeeeee;
|
---|
| 1204 | }
|
---|
[7540] | 1205 | way[power=cable] {
|
---|
| 1206 | width: 1;
|
---|
| 1207 | color: power#eeeeee;
|
---|
| 1208 | dashes: 9,9;
|
---|
| 1209 | }
|
---|
[7967] | 1210 | node[power=plant],
|
---|
| 1211 | node[power=sub_station],
|
---|
[7041] | 1212 | node[power=line],
|
---|
[7540] | 1213 | node[power=cable],
|
---|
[7041] | 1214 | node[power=minor_line] {
|
---|
[10706] | 1215 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 1216 | set icon_z17;
|
---|
[7041] | 1217 | }
|
---|
| 1218 | area[power=plant],
|
---|
| 1219 | area[power=substation],
|
---|
[7967] | 1220 | area[power=compensator],
|
---|
| 1221 | area[power=converter],
|
---|
[14299] | 1222 | area[power=switchgear],
|
---|
[7728] | 1223 | area[power=generator] {
|
---|
[7041] | 1224 | fill-color: power#eeeeee;
|
---|
| 1225 | }
|
---|
[15175] | 1226 | node[man_made=street_cabinet] {
|
---|
| 1227 | icon-image: "presets/misc/street_cabinet.svg";
|
---|
| 1228 | set icon_z17;
|
---|
| 1229 | }
|
---|
[9434] | 1230 | node[man_made=street_cabinet][street_cabinet=power] {
|
---|
[10565] | 1231 | icon-image: "presets/power/cable_distribution_cabinet.svg";
|
---|
[9423] | 1232 | set icon_z17;
|
---|
| 1233 | }
|
---|
[7728] | 1234 | node[power=generator] {
|
---|
[10565] | 1235 | icon-image: "presets/power/generator.svg";
|
---|
[7454] | 1236 | set icon_z17;
|
---|
[7041] | 1237 | }
|
---|
[7967] | 1238 | node[power=substation] {
|
---|
[10565] | 1239 | icon-image: "presets/power/substation.svg";
|
---|
[7967] | 1240 | set icon_z17;
|
---|
| 1241 | }
|
---|
[7041] | 1242 | node[power=transformer] {
|
---|
[10565] | 1243 | icon-image: "presets/power/transformer.svg";
|
---|
[7454] | 1244 | set icon_z17;
|
---|
[7041] | 1245 | }
|
---|
[14123] | 1246 | node[power=terminal] {
|
---|
| 1247 | icon-image: "presets/power/terminal.svg";
|
---|
| 1248 | set icon_z17;
|
---|
| 1249 | }
|
---|
[9423] | 1250 | node[power=switch] {
|
---|
[10565] | 1251 | icon-image: "presets/power/switch.svg";
|
---|
[9423] | 1252 | set icon_z17;
|
---|
| 1253 | }
|
---|
| 1254 | node[power=converter] {
|
---|
[10565] | 1255 | icon-image: "presets/power/converter.svg";
|
---|
[9423] | 1256 | set icon_z17;
|
---|
| 1257 | }
|
---|
| 1258 | node[power=compensator] {
|
---|
[10565] | 1259 | icon-image: "presets/power/compensator.svg";
|
---|
[9423] | 1260 | set icon_z17;
|
---|
| 1261 | }
|
---|
| 1262 |
|
---|
| 1263 |
|
---|
[7728] | 1264 | /*************************/
|
---|
| 1265 | /* generator:source tags */
|
---|
| 1266 | /*************************/
|
---|
| 1267 |
|
---|
| 1268 | area[generator:source=nuclear],
|
---|
| 1269 | area[generator:source=wind],
|
---|
| 1270 | area[generator:source=hydro],
|
---|
| 1271 | area[generator:source=tidal],
|
---|
| 1272 | area[generator:source=wave],
|
---|
| 1273 | area[generator:source=osmotic],
|
---|
| 1274 | area[generator:source=geothermal],
|
---|
| 1275 | area[generator:source=solar],
|
---|
| 1276 | area[generator:source=coal],
|
---|
| 1277 | area[generator:source=gas],
|
---|
| 1278 | area[generator:source=biomass],
|
---|
| 1279 | area[generator:source=biofuel],
|
---|
| 1280 | area[generator:source=biogas],
|
---|
| 1281 | area[generator:source=oil],
|
---|
| 1282 | area[generator:source=diesel],
|
---|
| 1283 | area[generator:source=gasoline],
|
---|
| 1284 | area[generator:source=waste] {
|
---|
[7041] | 1285 | fill-color: power#eeeeee;
|
---|
| 1286 | }
|
---|
[7728] | 1287 | node[generator:source=nuclear] {
|
---|
[10706] | 1288 | icon-image: "presets/power/power_source-nuclear.svg";
|
---|
[7454] | 1289 | set icon_z17;
|
---|
[7041] | 1290 | }
|
---|
[7728] | 1291 | node[generator:source=wind] {
|
---|
[10706] | 1292 | icon-image: "presets/power/power_source-wind.svg";
|
---|
[7454] | 1293 | set icon_z17;
|
---|
[7041] | 1294 | }
|
---|
[7728] | 1295 | node[generator:source=hydro],
|
---|
| 1296 | node[generator:source=tidal],
|
---|
| 1297 | node[generator:source=wave],
|
---|
[7997] | 1298 | node[generator:source=osmotic] {
|
---|
[10706] | 1299 | icon-image: "presets/power/power_source-water.svg";
|
---|
[7454] | 1300 | set icon_z17;
|
---|
[7041] | 1301 | }
|
---|
[7997] | 1302 | node[generator:source=geothermal] {
|
---|
[10706] | 1303 | icon-image: "presets/power/power_source-geothermal.svg";
|
---|
[7997] | 1304 | set icon_z17;
|
---|
| 1305 | }
|
---|
[7728] | 1306 | node[generator:source=solar] {
|
---|
[10706] | 1307 | icon-image: "presets/power/power_source-sun.svg";
|
---|
[7454] | 1308 | set icon_z17;
|
---|
[7041] | 1309 | }
|
---|
[7728] | 1310 | node[generator:source=coal] {
|
---|
[10706] | 1311 | icon-image: "presets/power/power_source-coal.svg";
|
---|
[7454] | 1312 | set icon_z17;
|
---|
[7041] | 1313 | }
|
---|
[7728] | 1314 | node[generator:source=gas] {
|
---|
[10706] | 1315 | icon-image: "presets/power/power_source-gas.svg";
|
---|
[7454] | 1316 | set icon_z17;
|
---|
[7041] | 1317 | }
|
---|
[7728] | 1318 | node[generator:source=biomass],
|
---|
| 1319 | node[generator:source=biofuel],
|
---|
| 1320 | node[generator:source=biogas] {
|
---|
[10706] | 1321 | icon-image: "presets/power/power_source-biofuel.svg";
|
---|
[7728] | 1322 | set icon_z17;
|
---|
| 1323 | }
|
---|
| 1324 | node[generator:source=oil],
|
---|
| 1325 | node[generator:source=diesel],
|
---|
| 1326 | node[generator:source=gasoline] {
|
---|
[10706] | 1327 | icon-image: "presets/power/power_source-oil.svg";
|
---|
[7728] | 1328 | set icon_z17;
|
---|
| 1329 | }
|
---|
| 1330 | node[generator:source=waste] {
|
---|
[10706] | 1331 | icon-image: "presets/power/power_source-waste.svg";
|
---|
[7728] | 1332 | set icon_z17;
|
---|
| 1333 | }
|
---|
| 1334 | node[power_source] {
|
---|
[10706] | 1335 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7728] | 1336 | set icon_z17;
|
---|
| 1337 | }
|
---|
[7041] | 1338 | /*****************/
|
---|
| 1339 | /* man_made tags */
|
---|
| 1340 | /*****************/
|
---|
| 1341 |
|
---|
| 1342 | area[man_made=beacon],
|
---|
[7648] | 1343 | area[man_made=bridge],
|
---|
[7960] | 1344 | area[bridge:support],
|
---|
[7041] | 1345 | area[man_made=chimney],
|
---|
[13379] | 1346 | area[man_made=kiln],
|
---|
[7041] | 1347 | area[man_made=gasometer],
|
---|
[9725] | 1348 | area[man_made=silo],
|
---|
[8328] | 1349 | area[man_made=storage_tank],
|
---|
[7710] | 1350 | area[man_made=bunker_silo],
|
---|
[7041] | 1351 | area[man_made=lighthouse],
|
---|
| 1352 | area[man_made=monitoring_station],
|
---|
[7960] | 1353 | area[man_made=mineshaft] {
|
---|
[7041] | 1354 | fill-color: manmade#d8d8d8;
|
---|
| 1355 | }
|
---|
| 1356 | node[man_made=beacon] {
|
---|
[10808] | 1357 | icon-image: "presets/landmark/beacon.svg";
|
---|
[7454] | 1358 | set icon_z17;
|
---|
[7041] | 1359 | }
|
---|
[7960] | 1360 | node[man_made=bridge] {
|
---|
[10706] | 1361 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7960] | 1362 | set icon_z17;
|
---|
| 1363 | }
|
---|
| 1364 | node[bridge:support] {
|
---|
[10565] | 1365 | icon-image: "presets/transport/bridge/bridge_support.svg";
|
---|
[7960] | 1366 | set icon_z17;
|
---|
| 1367 | }
|
---|
[7041] | 1368 | node[man_made=chimney] {
|
---|
[10808] | 1369 | icon-image: "presets/landmark/chimney.svg";
|
---|
[7454] | 1370 | set icon_z17;
|
---|
[7041] | 1371 | }
|
---|
[13379] | 1372 | node[man_made=kiln] {
|
---|
| 1373 | icon-image: "presets/misc/kiln.svg";
|
---|
| 1374 | set icon_z17;
|
---|
| 1375 | }
|
---|
[7041] | 1376 | node[man_made=flagpole] {
|
---|
[10808] | 1377 | icon-image: "presets/misc/flag.svg";
|
---|
[7454] | 1378 | set icon_z17;
|
---|
[7041] | 1379 | }
|
---|
[12446] | 1380 | node[man_made=cross] {
|
---|
| 1381 | icon-image: "presets/landmark/cross.svg";
|
---|
| 1382 | set icon_z17;
|
---|
| 1383 | }
|
---|
[7041] | 1384 | node[man_made=gasometer] {
|
---|
[10706] | 1385 | icon-image: "presets/landmark/gasometer.svg";
|
---|
[7454] | 1386 | set icon_z17;
|
---|
[7041] | 1387 | }
|
---|
[9725] | 1388 | node[man_made=silo] {
|
---|
[10706] | 1389 | icon-image: "presets/landmark/silo.svg";
|
---|
[9725] | 1390 | set icon_z17;
|
---|
| 1391 | }
|
---|
[8328] | 1392 | node[man_made=storage_tank] {
|
---|
[10706] | 1393 | icon-image: "presets/landmark/storage_tank.svg";
|
---|
[8328] | 1394 | set icon_z17;
|
---|
| 1395 | }
|
---|
[7710] | 1396 | node[man_made=bunker_silo] {
|
---|
[10706] | 1397 | icon-image: "presets/landmark/bunker_silo.svg";
|
---|
[7710] | 1398 | set icon_z17;
|
---|
| 1399 | }
|
---|
[7717] | 1400 | area[man_made=groyne]:closed {
|
---|
| 1401 | fill-color: manmade#d8d8d8;
|
---|
| 1402 | }
|
---|
| 1403 | way[man_made=groyne] {
|
---|
| 1404 | width: 2;
|
---|
| 1405 | color: manmade#d8d8d8;
|
---|
| 1406 | }
|
---|
| 1407 | area[man_made=breakwater]:closed {
|
---|
| 1408 | fill-color: manmade#d8d8d8;
|
---|
| 1409 | }
|
---|
| 1410 | way[man_made=breakwater] {
|
---|
| 1411 | width: 2;
|
---|
| 1412 | color: manmade#d8d8d8;
|
---|
| 1413 | }
|
---|
[15198] | 1414 | way[man_made=dyke]::man_made_dyke {
|
---|
| 1415 | width: 4;
|
---|
[14050] | 1416 | color: dyke#0aa846;
|
---|
[15198] | 1417 | z-index: -2;
|
---|
| 1418 | object-z-index: -1; /* below highway=* */
|
---|
| 1419 | modifier: false; /* don't draw default way if there is no line on default layer */
|
---|
[14050] | 1420 | }
|
---|
[7041] | 1421 | node[man_made=lighthouse] {
|
---|
[10706] | 1422 | icon-image: "presets/landmark/lighthouse.svg";
|
---|
[7454] | 1423 | set icon_z17;
|
---|
[7041] | 1424 | }
|
---|
| 1425 | node[man_made=monitoring_station] {
|
---|
[10808] | 1426 | icon-image: "presets/misc/monitoring_station.svg";
|
---|
[7454] | 1427 | set icon_z17;
|
---|
[7041] | 1428 | }
|
---|
| 1429 | node[man_made=mineshaft] {
|
---|
[10706] | 1430 | icon-image: "presets/landmark/mine.svg";
|
---|
[7454] | 1431 | set icon_z17;
|
---|
[7041] | 1432 | }
|
---|
[9589] | 1433 | area[man_made=crane]:closed {
|
---|
| 1434 | fill-color: manmade#d8d8d8;
|
---|
| 1435 | }
|
---|
| 1436 | way[man_made=crane] {
|
---|
| 1437 | width: 2;
|
---|
| 1438 | color: manmade#d8d8d8;
|
---|
| 1439 | }
|
---|
| 1440 | node[man_made=crane] {
|
---|
[10706] | 1441 | icon-image: "presets/landmark/crane.svg";
|
---|
[9589] | 1442 | set icon_z17;
|
---|
| 1443 | }
|
---|
[7041] | 1444 | node[man_made=adit] {
|
---|
[10706] | 1445 | icon-image: "presets/landmark/adit.svg";
|
---|
[7454] | 1446 | set icon_z17;
|
---|
[7041] | 1447 | }
|
---|
| 1448 | area[man_made=pier]:closed {
|
---|
| 1449 | fill-color: pier#660000;
|
---|
| 1450 | }
|
---|
| 1451 | way[man_made=pier] {
|
---|
| 1452 | width: 2;
|
---|
| 1453 | color: pier#660000;
|
---|
| 1454 | }
|
---|
| 1455 | node[man_made=pier] {
|
---|
[10565] | 1456 | icon-image: "presets/nautical/pier.svg";
|
---|
[7454] | 1457 | set icon_z17;
|
---|
[7041] | 1458 | }
|
---|
[7374] | 1459 | way[embankment?][!highway][!railway][!waterway],
|
---|
| 1460 | way[man_made=embankment][!highway][!railway][!waterway] {
|
---|
[10566] | 1461 | repeat-image: "presets/misc/embankment-pattern.png";
|
---|
[7374] | 1462 | repeat-image-align: top;
|
---|
| 1463 | width: 1;
|
---|
[7454] | 1464 | color: embankment#c14d00;
|
---|
[7374] | 1465 | }
|
---|
| 1466 | way[embankment?][highway],
|
---|
| 1467 | way[embankment?][railway],
|
---|
| 1468 | way[embankment?][waterway],
|
---|
| 1469 | way[man_made=embankment][highway],
|
---|
| 1470 | way[man_made=embankment][railway],
|
---|
| 1471 | way[man_made=embankment][waterway] {
|
---|
[10566] | 1472 | repeat-image: "presets/misc/embankment-pattern-centered.png";
|
---|
[7374] | 1473 | }
|
---|
[13972] | 1474 | way[man_made=pipeline][!waterway] {
|
---|
[7041] | 1475 | width: 2;
|
---|
| 1476 | color: pipeline#660000;
|
---|
| 1477 | }
|
---|
[9048] | 1478 | node[pipeline=marker] {
|
---|
[10565] | 1479 | icon-image: "presets/misc/pipeline_marker.svg";
|
---|
[9048] | 1480 | set icon_z17;
|
---|
| 1481 | }
|
---|
[9049] | 1482 | node[pipeline=valve] {
|
---|
[10565] | 1483 | icon-image: "presets/misc/valve.svg";
|
---|
[9049] | 1484 | set icon_z17;
|
---|
| 1485 | }
|
---|
[7975] | 1486 | node[man_made=breakwater],
|
---|
| 1487 | node[man_made=groyne],
|
---|
[7960] | 1488 | node[man_made=embankment],
|
---|
[7041] | 1489 | node[man_made=pipeline] {
|
---|
[10706] | 1490 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 1491 | set icon_z17;
|
---|
[7041] | 1492 | }
|
---|
[9892] | 1493 | node[man_made=petroleum_well][!is_prop_set(icon-image)] {
|
---|
[10706] | 1494 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 1495 | set icon_z17;
|
---|
[7041] | 1496 | }
|
---|
| 1497 | area[man_made=reservoir_covered],
|
---|
| 1498 | area[man_made=tower],
|
---|
| 1499 | area[man_made=wastewater_plant],
|
---|
| 1500 | area[man_made=watermill],
|
---|
| 1501 | area[man_made=water_tower],
|
---|
| 1502 | area[man_made=water_well],
|
---|
| 1503 | area[man_made=windmill],
|
---|
| 1504 | area[man_made=works],
|
---|
| 1505 | area[man_made=water_works] {
|
---|
| 1506 | fill-color: manmade#d8d8d8;
|
---|
| 1507 | }
|
---|
| 1508 | node[man_made=reservoir_covered] {
|
---|
[10706] | 1509 | icon-image: "presets/landmark/reservoir_covered.svg";
|
---|
[7454] | 1510 | set icon_z17;
|
---|
[7041] | 1511 | }
|
---|
| 1512 | node[man_made=surveillance] {
|
---|
[10814] | 1513 | icon-image: "presets/service/surveillance.svg";
|
---|
[7454] | 1514 | set icon_z17;
|
---|
[7041] | 1515 | }
|
---|
| 1516 | node[man_made=survey_point] {
|
---|
[10706] | 1517 | icon-image: "presets/landmark/survey_point.svg";
|
---|
[7454] | 1518 | set icon_z17;
|
---|
[7041] | 1519 | }
|
---|
| 1520 | node[man_made=tower] {
|
---|
[10808] | 1521 | icon-image: "presets/landmark/tower.svg";
|
---|
[7454] | 1522 | set icon_z17;
|
---|
[7041] | 1523 | }
|
---|
| 1524 | node[man_made=wastewater_plant] {
|
---|
[10706] | 1525 | icon-image: "presets/landmark/wastewater_plant.svg";
|
---|
[7454] | 1526 | set icon_z17;
|
---|
[7041] | 1527 | }
|
---|
| 1528 | node[man_made=watermill] {
|
---|
[10707] | 1529 | icon-image: "presets/landmark/watermill.svg";
|
---|
[7454] | 1530 | set icon_z17;
|
---|
[7041] | 1531 | }
|
---|
| 1532 | node[man_made=water_tower] {
|
---|
[10706] | 1533 | icon-image: "presets/landmark/water_tower.svg";
|
---|
[7454] | 1534 | set icon_z17;
|
---|
[7041] | 1535 | }
|
---|
| 1536 | node[man_made=water_well] {
|
---|
[10706] | 1537 | icon-image: "presets/landmark/water_well.svg";
|
---|
[7454] | 1538 | set icon_z17;
|
---|
[7041] | 1539 | }
|
---|
| 1540 | node[man_made=windmill] {
|
---|
[10706] | 1541 | icon-image: "presets/landmark/windmill.svg";
|
---|
[7454] | 1542 | set icon_z17;
|
---|
[7041] | 1543 | }
|
---|
| 1544 | node[man_made=works] {
|
---|
[10706] | 1545 | icon-image: "presets/landmark/works.svg";
|
---|
[7454] | 1546 | set icon_z17;
|
---|
[7041] | 1547 | }
|
---|
| 1548 | node[man_made=water_works] {
|
---|
[10808] | 1549 | icon-image: "presets/landmark/water_works.svg";
|
---|
[7454] | 1550 | set icon_z17;
|
---|
[7041] | 1551 | }
|
---|
[15066] | 1552 | way[man_made=cutline]::man_made_cutline {
|
---|
| 1553 | width: 4;
|
---|
| 1554 | color: cutline#bbff7c;
|
---|
| 1555 | z-index: -2;
|
---|
| 1556 | object-z-index: -1; /* below highway=* */
|
---|
| 1557 | modifier: false; /* don't draw default way if there is no line on default layer */
|
---|
[8147] | 1558 | }
|
---|
| 1559 | node[man_made=cutline] {
|
---|
[10706] | 1560 | icon-image: "presets/misc/deprecated.svg";
|
---|
[8147] | 1561 | set icon_z17;
|
---|
| 1562 | }
|
---|
[7041] | 1563 |
|
---|
[15171] | 1564 | /****************/
|
---|
| 1565 | /* telecom tags */
|
---|
| 1566 | /****************/
|
---|
| 1567 |
|
---|
| 1568 | area[telecom=exchange],
|
---|
| 1569 | area[telecom=connection_point],
|
---|
| 1570 | area[telecom=service_device] {
|
---|
| 1571 | fill-color: telecom#d8d8d8; /* same as man_made */
|
---|
| 1572 | }
|
---|
| 1573 | node[telecom=exchange] {
|
---|
| 1574 | icon-image: "presets/telecom/exchange.svg";
|
---|
| 1575 | set icon_z17;
|
---|
| 1576 | }
|
---|
| 1577 | node[telecom=connection_point] {
|
---|
| 1578 | icon-image: "presets/telecom/connection_point.svg";
|
---|
| 1579 | set icon_z17;
|
---|
| 1580 | }
|
---|
| 1581 | node[telecom=service_device] {
|
---|
| 1582 | icon-image: "presets/telecom/service_device.svg";
|
---|
| 1583 | set icon_z17;
|
---|
| 1584 | }
|
---|
| 1585 | node[man_made=street_cabinet][street_cabinet=telecom] {
|
---|
| 1586 | icon-image: "presets/telecom/telecom_cabinet.svg";
|
---|
| 1587 | set icon_z17;
|
---|
| 1588 | }
|
---|
| 1589 |
|
---|
[7041] | 1590 | /***************/
|
---|
| 1591 | /* office tags */
|
---|
| 1592 | /***************/
|
---|
| 1593 |
|
---|
[9681] | 1594 | area[office=accountant],
|
---|
| 1595 | area[office=administrative],
|
---|
| 1596 | area[office=advertising_agency],
|
---|
| 1597 | area[office=architect],
|
---|
| 1598 | area[office=association],
|
---|
| 1599 | area[office=company],
|
---|
| 1600 | area[office=educational_institution],
|
---|
| 1601 | area[office=employment_agency],
|
---|
| 1602 | area[office=estate_agent],
|
---|
| 1603 | area[office=foundation],
|
---|
| 1604 | area[office=government],
|
---|
| 1605 | area[office=insurance],
|
---|
| 1606 | area[office=it],
|
---|
| 1607 | area[office=lawyer],
|
---|
| 1608 | area[office=newspaper],
|
---|
| 1609 | area[office=ngo],
|
---|
| 1610 | area[office=notary],
|
---|
| 1611 | area[office=political_party],
|
---|
| 1612 | area[office=religion],
|
---|
| 1613 | area[office=research],
|
---|
| 1614 | area[office=tax_advisor],
|
---|
| 1615 | area[office=telecommunication] {
|
---|
[7041] | 1616 | fill-color: office#de5696;
|
---|
| 1617 | }
|
---|
[9148] | 1618 | node[office=accountant] {
|
---|
[10566] | 1619 | icon-image: "presets/office/accountant.svg";
|
---|
[9148] | 1620 | set icon_z17;
|
---|
| 1621 | }
|
---|
| 1622 | node[office=administrative] {
|
---|
[10566] | 1623 | icon-image: "presets/office/administrative.svg";
|
---|
[9148] | 1624 | set icon_z17;
|
---|
| 1625 | }
|
---|
| 1626 | node[office=advertising_agency] {
|
---|
[10566] | 1627 | icon-image: "presets/office/advertising_agency.svg";
|
---|
[9148] | 1628 | set icon_z17;
|
---|
| 1629 | }
|
---|
| 1630 | node[office=architect] {
|
---|
[10566] | 1631 | icon-image: "presets/office/architect.svg";
|
---|
[9148] | 1632 | set icon_z17;
|
---|
| 1633 | }
|
---|
| 1634 | node[office=association] {
|
---|
[10566] | 1635 | icon-image: "presets/office/association.svg";
|
---|
[9148] | 1636 | set icon_z17;
|
---|
| 1637 | }
|
---|
| 1638 | node[office=company] {
|
---|
[10566] | 1639 | icon-image: "presets/office/private_company.svg";
|
---|
[9148] | 1640 | set icon_z17;
|
---|
| 1641 | }
|
---|
| 1642 | node[office=educational_institution] {
|
---|
[10566] | 1643 | icon-image: "presets/office/educational_institution.svg";
|
---|
[9148] | 1644 | set icon_z17;
|
---|
| 1645 | }
|
---|
| 1646 | node[office=employment_agency] {
|
---|
[10566] | 1647 | icon-image: "presets/office/employment_agency.svg";
|
---|
[9148] | 1648 | set icon_z17;
|
---|
| 1649 | }
|
---|
| 1650 | node[office=estate_agent] {
|
---|
[10566] | 1651 | icon-image: "presets/office/real_state.svg";
|
---|
[9148] | 1652 | set icon_z17;
|
---|
| 1653 | }
|
---|
| 1654 | node[office=foundation] {
|
---|
[10566] | 1655 | icon-image: "presets/office/foundation.svg";
|
---|
[9148] | 1656 | set icon_z17;
|
---|
| 1657 | }
|
---|
| 1658 | node[office=insurance] {
|
---|
[10566] | 1659 | icon-image: "presets/office/insurance.svg";
|
---|
[9148] | 1660 | set icon_z17;
|
---|
| 1661 | }
|
---|
| 1662 | node[office=it] {
|
---|
[10566] | 1663 | icon-image: "presets/office/it.svg";
|
---|
[9148] | 1664 | set icon_z17;
|
---|
| 1665 | }
|
---|
| 1666 | node[office=lawyer] {
|
---|
[10566] | 1667 | icon-image: "presets/office/lawyer.svg";
|
---|
[9148] | 1668 | set icon_z17;
|
---|
| 1669 | }
|
---|
| 1670 | node[office=newspaper] {
|
---|
[10566] | 1671 | icon-image: "presets/office/newspaper.svg";
|
---|
[9148] | 1672 | set icon_z17;
|
---|
| 1673 | }
|
---|
| 1674 | node[office=ngo] {
|
---|
[10566] | 1675 | icon-image: "presets/office/ong.svg";
|
---|
[9148] | 1676 | set icon_z17;
|
---|
| 1677 | }
|
---|
| 1678 | node[office=notary] {
|
---|
[10566] | 1679 | icon-image: "presets/office/notary.svg";
|
---|
[9148] | 1680 | set icon_z17;
|
---|
| 1681 | }
|
---|
| 1682 | node[office=political_party] {
|
---|
[10566] | 1683 | icon-image: "presets/office/political_party.svg";
|
---|
[9148] | 1684 | set icon_z17;
|
---|
| 1685 | }
|
---|
| 1686 | node[office=religion] {
|
---|
[10566] | 1687 | icon-image: "presets/office/religion.svg";
|
---|
[9148] | 1688 | set icon_z17;
|
---|
| 1689 | }
|
---|
| 1690 | node[office=research] {
|
---|
[10566] | 1691 | icon-image: "presets/office/research.svg";
|
---|
[9148] | 1692 | set icon_z17;
|
---|
| 1693 | }
|
---|
| 1694 | node[office=tax_advisor] {
|
---|
[10566] | 1695 | icon-image: "presets/office/tax_advisor.svg";
|
---|
[9148] | 1696 | set icon_z17;
|
---|
| 1697 | }
|
---|
[9011] | 1698 | node[office=telecommunication] {
|
---|
[10566] | 1699 | icon-image: "presets/office/telecommunication.svg";
|
---|
[7454] | 1700 | set icon_z17;
|
---|
[7041] | 1701 | }
|
---|
| 1702 | node[office=government] {
|
---|
[10566] | 1703 | icon-image: "presets/office/government.svg";
|
---|
[7454] | 1704 | set icon_z17;
|
---|
[7041] | 1705 | }
|
---|
| 1706 |
|
---|
| 1707 | /****************/
|
---|
| 1708 | /* leisure tags */
|
---|
| 1709 | /****************/
|
---|
| 1710 |
|
---|
[13379] | 1711 | area[leisure=bandstand],
|
---|
[7041] | 1712 | area[leisure=sports_centre],
|
---|
[10539] | 1713 | area[leisure=fitness_centre],
|
---|
[7041] | 1714 | area[leisure=stadium],
|
---|
[7927] | 1715 | area[leisure=horse_riding],
|
---|
[13789] | 1716 | area[leisure=resort],
|
---|
[10822] | 1717 | area[leisure=beach_resort],
|
---|
[7041] | 1718 | area[leisure=water_park] {
|
---|
| 1719 | fill-color: leisure#c7f1a3;
|
---|
| 1720 | }
|
---|
[13379] | 1721 | node[leisure=bandstand] {
|
---|
| 1722 | icon-image: "presets/leisure/bandstand.svg";
|
---|
| 1723 | set icon_z17;
|
---|
| 1724 | }
|
---|
[7041] | 1725 | node[leisure=sports_centre] {
|
---|
[10808] | 1726 | icon-image: "presets/sport/sports_centre.svg";
|
---|
[7454] | 1727 | set icon_z17;
|
---|
[7041] | 1728 | }
|
---|
[10539] | 1729 | node[leisure=fitness_centre] {
|
---|
[10808] | 1730 | icon-image: "presets/sport/fitness_centre.svg";
|
---|
[10539] | 1731 | set icon_z17;
|
---|
| 1732 | }
|
---|
[7041] | 1733 | node[leisure=stadium] {
|
---|
[10808] | 1734 | icon-image: "presets/sport/stadium.svg";
|
---|
[7454] | 1735 | set icon_z17;
|
---|
[7041] | 1736 | }
|
---|
[8143] | 1737 | node[leisure=horse_riding] {
|
---|
[10808] | 1738 | icon-image: "presets/leisure/horse_riding.svg";
|
---|
[8143] | 1739 | set icon_z17;
|
---|
| 1740 | }
|
---|
[13789] | 1741 | node[leisure=resort] {
|
---|
| 1742 | icon-image: "presets/leisure/resort.svg";
|
---|
| 1743 | set icon_z17;
|
---|
| 1744 | }
|
---|
[10822] | 1745 | node[leisure=beach_resort] {
|
---|
| 1746 | icon-image: "presets/leisure/beach_resort.svg";
|
---|
| 1747 | set icon_z17;
|
---|
| 1748 | }
|
---|
[8143] | 1749 | node[leisure=water_park] {
|
---|
[10808] | 1750 | icon-image: "presets/leisure/water_park.svg";
|
---|
[8143] | 1751 | set icon_z17;
|
---|
| 1752 | }
|
---|
[7041] | 1753 | way[leisure=track] {
|
---|
| 1754 | width: 2;
|
---|
[8143] | 1755 | color: leisuretrack#d4f4b9;
|
---|
[7041] | 1756 | }
|
---|
[14808] | 1757 | way[leisure=track][area?],
|
---|
| 1758 | relation[leisure=track][!area?!]:closed {
|
---|
| 1759 | fill-color: leisuretrack#d4f4b9;
|
---|
| 1760 | }
|
---|
[7041] | 1761 | node[leisure=track] {
|
---|
[10808] | 1762 | icon-image: "presets/sport/track.svg";
|
---|
[7454] | 1763 | set icon_z17;
|
---|
[7041] | 1764 | }
|
---|
[8143] | 1765 | area[leisure=pitch] {
|
---|
| 1766 | fill-color: pitch#baee8d;
|
---|
| 1767 | }
|
---|
[7041] | 1768 | node[leisure=pitch] {
|
---|
[10808] | 1769 | icon-image: "presets/sport/pitch.svg";
|
---|
[7454] | 1770 | set icon_z17;
|
---|
[7041] | 1771 | }
|
---|
| 1772 | area[leisure=marina] {
|
---|
| 1773 | fill-color: marina#0070cf;
|
---|
| 1774 | }
|
---|
| 1775 | node[leisure=marina] {
|
---|
[10808] | 1776 | icon-image: "presets/nautical/marina.svg";
|
---|
[7454] | 1777 | set icon_z17;
|
---|
[7041] | 1778 | }
|
---|
[7975] | 1779 | way[leisure=slipway] {
|
---|
| 1780 | width: 2;
|
---|
| 1781 | color: leisure#c7f1a3;
|
---|
| 1782 | }
|
---|
| 1783 | node[leisure=slipway] {
|
---|
[10808] | 1784 | icon-image: "presets/nautical/slipway.svg";
|
---|
[7975] | 1785 | set icon_z17;
|
---|
| 1786 | }
|
---|
[7041] | 1787 | area[leisure=fishing],
|
---|
[10005] | 1788 | area[leisure=bird_hide],
|
---|
[7041] | 1789 | area[leisure=nature_reserve],
|
---|
| 1790 | area[leisure=park],
|
---|
| 1791 | area[leisure=playground],
|
---|
| 1792 | area[leisure=garden],
|
---|
[7598] | 1793 | area[leisure=firepit] {
|
---|
[7041] | 1794 | fill-color: leisure#c7f1a3;
|
---|
| 1795 | }
|
---|
| 1796 | node[leisure=fishing] {
|
---|
[10808] | 1797 | icon-image: "presets/sport/fishing.svg";
|
---|
[7454] | 1798 | set icon_z17;
|
---|
[7041] | 1799 | }
|
---|
[10005] | 1800 | node[leisure=bird_hide] {
|
---|
[10565] | 1801 | icon-image: "presets/leisure/bird_hide.svg";
|
---|
[10005] | 1802 | set icon_z17;
|
---|
| 1803 | }
|
---|
[7041] | 1804 | node[leisure=park] {
|
---|
[10706] | 1805 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 1806 | set icon_z17;
|
---|
[7041] | 1807 | }
|
---|
| 1808 | node[leisure=playground] {
|
---|
[10706] | 1809 | icon-image: "presets/leisure/playground.svg";
|
---|
[7454] | 1810 | set icon_z17;
|
---|
[7041] | 1811 | }
|
---|
| 1812 | node[leisure=garden] {
|
---|
[10808] | 1813 | icon-image: "presets/leisure/garden.svg";
|
---|
[7454] | 1814 | set icon_z17;
|
---|
[7041] | 1815 | }
|
---|
| 1816 | node[leisure=common] {
|
---|
[15086] | 1817 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 1818 | set icon_z17;
|
---|
[7041] | 1819 | }
|
---|
[7598] | 1820 | node[leisure=firepit] {
|
---|
[10565] | 1821 | icon-image: "presets/leisure/firepit.svg";
|
---|
[10013] | 1822 | set icon_z17;
|
---|
[7598] | 1823 | }
|
---|
[7875] | 1824 | node[leisure=picnic_table] {
|
---|
[10808] | 1825 | icon-image: "presets/leisure/picnic.svg";
|
---|
[7875] | 1826 | set icon_z17;
|
---|
| 1827 | }
|
---|
[7148] | 1828 | area[leisure=swimming_pool] {
|
---|
| 1829 | fill-color: swimming_pool#51c4ef;
|
---|
| 1830 | }
|
---|
[7041] | 1831 | node[leisure=swimming_pool] {
|
---|
[10706] | 1832 | icon-image: "presets/sport/swimming.svg";
|
---|
[7454] | 1833 | set icon_z17;
|
---|
[7041] | 1834 | }
|
---|
[9851] | 1835 | area[leisure=fitness_station],
|
---|
[7148] | 1836 | area[leisure=miniature_golf],
|
---|
| 1837 | area[leisure=dog_park],
|
---|
| 1838 | area[leisure=ice_rink],
|
---|
| 1839 | area[leisure=sauna] {
|
---|
| 1840 | fill-color: leisure#c7f1a3;
|
---|
| 1841 | }
|
---|
[9851] | 1842 | node[leisure=fitness_station] {
|
---|
[10565] | 1843 | icon-image: "presets/leisure/fitness_station.svg";
|
---|
[9851] | 1844 | set icon_z17;
|
---|
| 1845 | }
|
---|
[7041] | 1846 | node[leisure=miniature_golf] {
|
---|
[10565] | 1847 | icon-image: "presets/sport/miniature_golf.svg";
|
---|
[7454] | 1848 | set icon_z17;
|
---|
[7041] | 1849 | }
|
---|
| 1850 | node[leisure=dog_park] {
|
---|
[10808] | 1851 | icon-image: "presets/leisure/dogpark.svg";
|
---|
[7454] | 1852 | set icon_z17;
|
---|
[7041] | 1853 | }
|
---|
| 1854 | node[leisure=ice_rink] {
|
---|
[10808] | 1855 | icon-image: "presets/sport/ice_hockey.svg";
|
---|
[7454] | 1856 | set icon_z17;
|
---|
[7041] | 1857 | }
|
---|
| 1858 | node[leisure=sauna] {
|
---|
[10808] | 1859 | icon-image: "presets/leisure/sauna.svg";
|
---|
[7454] | 1860 | set icon_z17;
|
---|
[7041] | 1861 | }
|
---|
[9640] | 1862 | area[leisure=golf_course] {
|
---|
| 1863 | fill-color: leisure#c7f1a3;
|
---|
| 1864 | }
|
---|
| 1865 | node[leisure=golf_course] {
|
---|
[10565] | 1866 | icon-image: "presets/sport/golf/golf.svg";
|
---|
[9640] | 1867 | set icon_z17;
|
---|
| 1868 | }
|
---|
[7041] | 1869 |
|
---|
[9640] | 1870 | /*************/
|
---|
| 1871 | /* golf tags */
|
---|
| 1872 | /*************/
|
---|
| 1873 | area[golf=tee] {
|
---|
| 1874 | fill-color: golf#c7f1a3;
|
---|
| 1875 | }
|
---|
| 1876 | node[golf=tee] {
|
---|
[10565] | 1877 | icon-image: "presets/sport/golf/tee.svg";
|
---|
[9640] | 1878 | set icon_z17;
|
---|
| 1879 | }
|
---|
| 1880 | way[golf=hole] {
|
---|
| 1881 | width: 1;
|
---|
| 1882 | dashes: 10,10;
|
---|
| 1883 | color: golf_hole#808080;
|
---|
| 1884 | }
|
---|
| 1885 | node[golf=pin] {
|
---|
[10565] | 1886 | icon-image: "presets/sport/golf/pin.svg";
|
---|
[9640] | 1887 | set icon_z17;
|
---|
| 1888 | }
|
---|
| 1889 | area[golf=bunker] {
|
---|
| 1890 | fill-color: golf_bunker#ffab00;
|
---|
| 1891 | }
|
---|
| 1892 | area[golf=water_hazard],
|
---|
| 1893 | area[golf=lateral_water_hazard] {
|
---|
| 1894 | fill-color: golf_water_hazard#0000ff;
|
---|
| 1895 | }
|
---|
| 1896 | area[golf=green] {
|
---|
| 1897 | fill-color: golf_green#00e700;
|
---|
| 1898 | }
|
---|
| 1899 | area[golf=fairway] {
|
---|
| 1900 | fill-color: golf_fairway#009a00;
|
---|
| 1901 | }
|
---|
| 1902 | area[golf=rough] {
|
---|
| 1903 | fill-color: golf_rough#006700;
|
---|
| 1904 | }
|
---|
| 1905 | area[golf=driving_range] {
|
---|
| 1906 | fill-color: golf_driving_range#c7f1a3;
|
---|
| 1907 | }
|
---|
| 1908 | node[golf=driving_range] {
|
---|
[10565] | 1909 | icon-image: "presets/sport/golf/driving_range.svg";
|
---|
[9640] | 1910 | set icon_z17;
|
---|
| 1911 | }
|
---|
| 1912 |
|
---|
[7790] | 1913 | /********************/
|
---|
| 1914 | /* advertising tags */
|
---|
| 1915 | /********************/
|
---|
| 1916 |
|
---|
| 1917 | node[advertising=column] {
|
---|
[10565] | 1918 | icon-image: "presets/leisure/advertising_column.svg";
|
---|
[7790] | 1919 | set icon_z17;
|
---|
| 1920 | }
|
---|
[11976] | 1921 | area[advertising=column] {
|
---|
| 1922 | fill-color: advertising#880000;
|
---|
| 1923 | }
|
---|
[7790] | 1924 | node[advertising=billboard] {
|
---|
[10565] | 1925 | icon-image: "presets/leisure/billboard.svg";
|
---|
[7790] | 1926 | set icon_z17;
|
---|
| 1927 | }
|
---|
[14560] | 1928 | way[advertising=billboard] {
|
---|
| 1929 | width: 2;
|
---|
| 1930 | color: advertising#880000;
|
---|
| 1931 | }
|
---|
[7790] | 1932 |
|
---|
[7041] | 1933 | /*************/
|
---|
| 1934 | /* shop tags */
|
---|
| 1935 | /*************/
|
---|
| 1936 |
|
---|
| 1937 | area[shop=supermarket],
|
---|
| 1938 | area[shop=convenience],
|
---|
| 1939 | area[shop=bakery],
|
---|
| 1940 | area[shop=butcher],
|
---|
| 1941 | area[shop=bicycle],
|
---|
| 1942 | area[shop=doityourself],
|
---|
| 1943 | area[shop=dry_cleaning],
|
---|
| 1944 | area[shop=laundry],
|
---|
| 1945 | area[shop=outdoor],
|
---|
| 1946 | area[shop=kiosk],
|
---|
| 1947 | area[shop=alcohol],
|
---|
| 1948 | area[shop=beverages],
|
---|
| 1949 | area[shop=books],
|
---|
| 1950 | area[shop=boutique],
|
---|
| 1951 | area[shop=car],
|
---|
| 1952 | area[shop=car_repair],
|
---|
| 1953 | area[shop=tyres],
|
---|
| 1954 | area[shop=chemist],
|
---|
[9420] | 1955 | area[shop=tobacco],
|
---|
[7041] | 1956 | area[shop=clothes],
|
---|
| 1957 | area[shop=computer],
|
---|
| 1958 | area[shop=confectionery],
|
---|
[10897] | 1959 | area[shop=pastry],
|
---|
[7041] | 1960 | area[shop=copyshop],
|
---|
| 1961 | area[shop=curtain],
|
---|
| 1962 | area[shop=cycle_repair],
|
---|
| 1963 | area[shop=department_store],
|
---|
| 1964 | area[shop=deli],
|
---|
[15188] | 1965 | area[shop=doors],
|
---|
[7041] | 1966 | area[shop=electronics],
|
---|
| 1967 | area[shop=erotic],
|
---|
| 1968 | area[shop=furniture],
|
---|
| 1969 | area[shop=fabric],
|
---|
| 1970 | area[shop=florist],
|
---|
| 1971 | area[shop=frame],
|
---|
[14575] | 1972 | area[shop=gas],
|
---|
[7041] | 1973 | area[shop=gift],
|
---|
| 1974 | area[shop=greengrocer],
|
---|
| 1975 | area[shop=garden_centre],
|
---|
| 1976 | area[shop=hairdresser],
|
---|
| 1977 | area[shop=hardware],
|
---|
| 1978 | area[shop=hearing_aids],
|
---|
| 1979 | area[shop=hifi],
|
---|
[9718] | 1980 | area[shop=houseware],
|
---|
[7041] | 1981 | area[shop=jewelry],
|
---|
| 1982 | area[shop=kitchen],
|
---|
| 1983 | area[shop=mall],
|
---|
[14874] | 1984 | area[shop=massage],
|
---|
[7041] | 1985 | area[shop=mobile_phone],
|
---|
[15092] | 1986 | area[shop=watches],
|
---|
[7041] | 1987 | area[shop=motorcycle],
|
---|
| 1988 | area[shop=musical_instrument],
|
---|
| 1989 | area[shop=newsagent],
|
---|
| 1990 | area[shop=optician],
|
---|
[8053] | 1991 | area[shop=medical_supply],
|
---|
[7041] | 1992 | area[shop=paint],
|
---|
[15188] | 1993 | area[shop=party],
|
---|
[7041] | 1994 | area[shop=pawnbroker],
|
---|
| 1995 | area[shop=seafood],
|
---|
[11346] | 1996 | area[shop=dairy],
|
---|
[12083] | 1997 | area[shop=cheese],
|
---|
[7041] | 1998 | area[shop=shoes],
|
---|
| 1999 | area[shop=sports],
|
---|
| 2000 | area[shop=stationery],
|
---|
| 2001 | area[shop=tailor],
|
---|
| 2002 | area[shop=travel_agency],
|
---|
| 2003 | area[shop=toys],
|
---|
| 2004 | area[shop=vacuum_cleaner],
|
---|
| 2005 | area[shop=variety_store],
|
---|
[12612] | 2006 | area[shop=charity],
|
---|
[7041] | 2007 | area[shop=video],
|
---|
| 2008 | area[shop=bookmaker],
|
---|
| 2009 | area[shop=lottery],
|
---|
[7296] | 2010 | area[shop=pet],
|
---|
[8868] | 2011 | area[shop=photo],
|
---|
[7296] | 2012 | area[shop=ticket],
|
---|
[14959] | 2013 | area[shop=carpet],
|
---|
[7296] | 2014 | area[shop=interior_decoration],
|
---|
| 2015 | area[shop=car_parts],
|
---|
| 2016 | area[shop=video_games],
|
---|
| 2017 | area[shop=bed],
|
---|
| 2018 | area[shop=beauty],
|
---|
[9550] | 2019 | area[shop=cosmetics],
|
---|
| 2020 | area[shop=perfumery],
|
---|
[7296] | 2021 | area[shop=tea],
|
---|
| 2022 | area[shop=coffee],
|
---|
[7600] | 2023 | area[shop=antiques],
|
---|
[7685] | 2024 | area[shop=music],
|
---|
[7686] | 2025 | area[shop=funeral_directors],
|
---|
| 2026 | area[shop=wine],
|
---|
[7705] | 2027 | area[shop=farm],
|
---|
| 2028 | area[shop=tattoo],
|
---|
| 2029 | area[shop=art],
|
---|
[7296] | 2030 | area[shop=bag] {
|
---|
[7041] | 2031 | fill-color: shop#00005f;
|
---|
| 2032 | }
|
---|
| 2033 | node[shop=supermarket] {
|
---|
[10565] | 2034 | icon-image: "presets/shop/supermarket.svg";
|
---|
[7454] | 2035 | set icon_z17;
|
---|
[7041] | 2036 | }
|
---|
| 2037 | node[shop=convenience] {
|
---|
[10808] | 2038 | icon-image: "presets/shop/convenience.svg";
|
---|
[7454] | 2039 | set icon_z17;
|
---|
[7041] | 2040 | }
|
---|
| 2041 | node[shop=bakery] {
|
---|
[10808] | 2042 | icon-image: "presets/shop/groceries/bakery.svg";
|
---|
[7454] | 2043 | set icon_z17;
|
---|
[7041] | 2044 | }
|
---|
| 2045 | node[shop=butcher] {
|
---|
[10808] | 2046 | icon-image: "presets/shop/groceries/butcher.svg";
|
---|
[7454] | 2047 | set icon_z17;
|
---|
[7041] | 2048 | }
|
---|
| 2049 | node[shop=bicycle] {
|
---|
[10706] | 2050 | icon-image: "presets/shop/bicycle.svg";
|
---|
[7454] | 2051 | set icon_z17;
|
---|
[7041] | 2052 | }
|
---|
| 2053 | node[shop=doityourself] {
|
---|
[10706] | 2054 | icon-image: "presets/shop/diy_store.svg";
|
---|
[7454] | 2055 | set icon_z17;
|
---|
[7041] | 2056 | }
|
---|
| 2057 | node[shop=dry_cleaning],
|
---|
| 2058 | node[shop=laundry] {
|
---|
[10706] | 2059 | icon-image: "presets/shop/laundry.svg";
|
---|
[7454] | 2060 | set icon_z17;
|
---|
[7041] | 2061 | }
|
---|
| 2062 | node[shop=outdoor] {
|
---|
[10706] | 2063 | icon-image: "presets/shop/outdoor.svg";
|
---|
[7454] | 2064 | set icon_z17;
|
---|
[7041] | 2065 | }
|
---|
| 2066 | node[shop=kiosk] {
|
---|
[10706] | 2067 | icon-image: "presets/shop/kiosk.svg";
|
---|
[7454] | 2068 | set icon_z17;
|
---|
[7041] | 2069 | }
|
---|
| 2070 | node[shop=beverages] {
|
---|
[10706] | 2071 | icon-image: "presets/shop/beverages.svg";
|
---|
[7454] | 2072 | set icon_z17;
|
---|
[7041] | 2073 | }
|
---|
[7950] | 2074 | node[shop=alcohol] {
|
---|
[10706] | 2075 | icon-image: "presets/shop/alcohol.svg";
|
---|
[7950] | 2076 | set icon_z17;
|
---|
| 2077 | }
|
---|
[7041] | 2078 | node[shop=books] {
|
---|
[10565] | 2079 | icon-image: "presets/shop/book.svg";
|
---|
[7454] | 2080 | set icon_z17;
|
---|
[7041] | 2081 | }
|
---|
| 2082 | node[shop=boutique] {
|
---|
[10808] | 2083 | icon-image: "presets/shop/boutique.svg";
|
---|
[7454] | 2084 | set icon_z17;
|
---|
[7041] | 2085 | }
|
---|
[10911] | 2086 | node[shop=car] {
|
---|
[10706] | 2087 | icon-image: "presets/shop/vehicle.svg";
|
---|
[7454] | 2088 | set icon_z17;
|
---|
[7041] | 2089 | }
|
---|
| 2090 | node[shop=car_repair] {
|
---|
[10706] | 2091 | icon-image: "presets/vehicle/repair_shop.svg";
|
---|
[7454] | 2092 | set icon_z17;
|
---|
[7041] | 2093 | }
|
---|
| 2094 | node[shop=tyres] {
|
---|
[10706] | 2095 | icon-image: "presets/vehicle/tyres.svg";
|
---|
[7454] | 2096 | set icon_z17;
|
---|
[7041] | 2097 | }
|
---|
| 2098 | node[shop=chemist] {
|
---|
[10706] | 2099 | icon-image: "presets/shop/chemist.svg";
|
---|
[7454] | 2100 | set icon_z17;
|
---|
[7041] | 2101 | }
|
---|
[9420] | 2102 | node[shop=tobacco] {
|
---|
[10565] | 2103 | icon-image: "presets/shop/tobacco.svg";
|
---|
[9420] | 2104 | set icon_z17;
|
---|
| 2105 | }
|
---|
[7041] | 2106 | node[shop=clothes] {
|
---|
[10706] | 2107 | icon-image: "presets/shop/clothes.svg";
|
---|
[7454] | 2108 | set icon_z17;
|
---|
[7041] | 2109 | }
|
---|
| 2110 | node[shop=computer] {
|
---|
[10706] | 2111 | icon-image: "presets/shop/computer.svg";
|
---|
[7454] | 2112 | set icon_z17;
|
---|
[7041] | 2113 | }
|
---|
| 2114 | node[shop=confectionery] {
|
---|
[10706] | 2115 | icon-image: "presets/shop/groceries/confectionery.svg";
|
---|
[7454] | 2116 | set icon_z17;
|
---|
[7041] | 2117 | }
|
---|
[10897] | 2118 | node[shop=pastry] {
|
---|
| 2119 | icon-image: "presets/shop/groceries/pastry.svg";
|
---|
| 2120 | set icon_z17;
|
---|
| 2121 | }
|
---|
[7041] | 2122 | node[shop=copyshop] {
|
---|
[10808] | 2123 | icon-image: "presets/shop/copyshop.svg";
|
---|
[7454] | 2124 | set icon_z17;
|
---|
[7041] | 2125 | }
|
---|
| 2126 | node[shop=curtain] {
|
---|
[10808] | 2127 | icon-image: "presets/shop/curtain.svg";
|
---|
[7454] | 2128 | set icon_z17;
|
---|
[7041] | 2129 | }
|
---|
| 2130 | node[shop=cycle_repair] {
|
---|
[10706] | 2131 | icon-image: "presets/shop/bicycle.svg";
|
---|
[7454] | 2132 | set icon_z17;
|
---|
[7041] | 2133 | }
|
---|
| 2134 | node[shop=department_store] {
|
---|
[10706] | 2135 | icon-image: "presets/shop/mall.svg";
|
---|
[7454] | 2136 | set icon_z17;
|
---|
[7041] | 2137 | }
|
---|
| 2138 | node[shop=deli] {
|
---|
[10808] | 2139 | icon-image: "presets/shop/groceries/deli.svg";
|
---|
[7454] | 2140 | set icon_z17;
|
---|
[7041] | 2141 | }
|
---|
[15188] | 2142 | node[shop=doors] {
|
---|
| 2143 | icon-image: "presets/shop/doors.svg";
|
---|
| 2144 | set icon_z17;
|
---|
| 2145 | }
|
---|
[7041] | 2146 | node[shop=electronics] {
|
---|
[10706] | 2147 | icon-image: "presets/shop/electronics.svg";
|
---|
[7454] | 2148 | set icon_z17;
|
---|
[7041] | 2149 | }
|
---|
| 2150 | node[shop=erotic] {
|
---|
[10808] | 2151 | icon-image: "presets/shop/erotic.svg";
|
---|
[7454] | 2152 | set icon_z17;
|
---|
[7041] | 2153 | }
|
---|
| 2154 | node[shop=furniture] {
|
---|
[10706] | 2155 | icon-image: "presets/shop/furniture.svg";
|
---|
[7454] | 2156 | set icon_z17;
|
---|
[7041] | 2157 | }
|
---|
| 2158 | node[shop=fabric] {
|
---|
[10808] | 2159 | icon-image: "presets/shop/fabric.svg";
|
---|
[7454] | 2160 | set icon_z17;
|
---|
[7041] | 2161 | }
|
---|
| 2162 | node[shop=florist] {
|
---|
[10706] | 2163 | icon-image: "presets/shop/florist.svg";
|
---|
[7454] | 2164 | set icon_z17;
|
---|
[7041] | 2165 | }
|
---|
| 2166 | node[shop=frame] {
|
---|
[10808] | 2167 | icon-image: "presets/shop/frame.svg";
|
---|
[7454] | 2168 | set icon_z17;
|
---|
[7041] | 2169 | }
|
---|
[14575] | 2170 | node[shop=gas] {
|
---|
| 2171 | icon-image: "presets/shop/gas.svg";
|
---|
| 2172 | set icon_z17;
|
---|
| 2173 | }
|
---|
[7041] | 2174 | node[shop=gift] {
|
---|
[10706] | 2175 | icon-image: "presets/shop/present.svg";
|
---|
[7454] | 2176 | set icon_z17;
|
---|
[7041] | 2177 | }
|
---|
| 2178 | node[shop=greengrocer] {
|
---|
[10808] | 2179 | icon-image: "presets/shop/groceries/greengrocer.svg";
|
---|
[7454] | 2180 | set icon_z17;
|
---|
[7041] | 2181 | }
|
---|
| 2182 | node[shop=garden_centre] {
|
---|
[10706] | 2183 | icon-image: "presets/shop/garden_centre.svg";
|
---|
[7454] | 2184 | set icon_z17;
|
---|
[7041] | 2185 | }
|
---|
| 2186 | node[shop=hairdresser] {
|
---|
[10706] | 2187 | icon-image: "presets/shop/hairdresser.svg";
|
---|
[7454] | 2188 | set icon_z17;
|
---|
[7041] | 2189 | }
|
---|
| 2190 | node[shop=hardware] {
|
---|
[10808] | 2191 | icon-image: "presets/shop/hardware.svg";
|
---|
[7454] | 2192 | set icon_z17;
|
---|
[7041] | 2193 | }
|
---|
| 2194 | node[shop=hearing_aids] {
|
---|
[10808] | 2195 | icon-image: "presets/shop/hearing_aids.svg";
|
---|
[7454] | 2196 | set icon_z17;
|
---|
[7041] | 2197 | }
|
---|
| 2198 | node[shop=hifi] {
|
---|
[10565] | 2199 | icon-image: "presets/shop/hifi.svg";
|
---|
[7454] | 2200 | set icon_z17;
|
---|
[7041] | 2201 | }
|
---|
[9718] | 2202 | node[shop=houseware] {
|
---|
[10565] | 2203 | icon-image: "presets/shop/houseware.svg";
|
---|
[9718] | 2204 | set icon_z17;
|
---|
| 2205 | }
|
---|
[7041] | 2206 | node[shop=jewelry] {
|
---|
[10706] | 2207 | icon-image: "presets/shop/jewelry.svg";
|
---|
[7454] | 2208 | set icon_z17;
|
---|
[7041] | 2209 | }
|
---|
| 2210 | node[shop=kitchen] {
|
---|
[10808] | 2211 | icon-image: "presets/shop/kitchen.svg";
|
---|
[7454] | 2212 | set icon_z17;
|
---|
[7041] | 2213 | }
|
---|
| 2214 | node[shop=mall] {
|
---|
[10706] | 2215 | icon-image: "presets/shop/mall.svg";
|
---|
[7454] | 2216 | set icon_z17;
|
---|
[7041] | 2217 | }
|
---|
[14874] | 2218 | node[shop=massage] {
|
---|
| 2219 | icon-image: "presets/shop/massage.svg";
|
---|
| 2220 | set icon_z17;
|
---|
| 2221 | }
|
---|
[7041] | 2222 | node[shop=mobile_phone] {
|
---|
[10808] | 2223 | icon-image: "presets/shop/mobile_phone.svg";
|
---|
[7454] | 2224 | set icon_z17;
|
---|
[7041] | 2225 | }
|
---|
[15092] | 2226 | node[shop=watches] {
|
---|
| 2227 | icon-image: "presets/shop/watches.svg";
|
---|
| 2228 | set icon_z17;
|
---|
| 2229 | }
|
---|
[7041] | 2230 | node[shop=motorcycle] {
|
---|
[10706] | 2231 | icon-image: "presets/vehicle/motorbike.svg";
|
---|
[7454] | 2232 | set icon_z17;
|
---|
[7041] | 2233 | }
|
---|
| 2234 | node[shop=musical_instrument] {
|
---|
[10808] | 2235 | icon-image: "presets/shop/musical_instrument.svg";
|
---|
[7454] | 2236 | set icon_z17;
|
---|
[7041] | 2237 | }
|
---|
| 2238 | node[shop=newsagent] {
|
---|
[10565] | 2239 | icon-image: "presets/shop/news.svg";
|
---|
[7454] | 2240 | set icon_z17;
|
---|
[7041] | 2241 | }
|
---|
| 2242 | node[shop=optician] {
|
---|
[10565] | 2243 | icon-image: "presets/shop/optician.svg";
|
---|
[7454] | 2244 | set icon_z17;
|
---|
[7041] | 2245 | }
|
---|
[8053] | 2246 | node[shop=medical_supply] {
|
---|
[10565] | 2247 | icon-image: "presets/shop/medical_supply.svg";
|
---|
[8053] | 2248 | set icon_z17;
|
---|
| 2249 | }
|
---|
[7041] | 2250 | node[shop=paint] {
|
---|
[10808] | 2251 | icon-image: "presets/shop/paint.svg";
|
---|
[7454] | 2252 | set icon_z17;
|
---|
[7041] | 2253 | }
|
---|
[15188] | 2254 | node[shop=party] {
|
---|
| 2255 | icon-image: "presets/shop/party.svg";
|
---|
| 2256 | set icon_z17;
|
---|
| 2257 | }
|
---|
[7041] | 2258 | node[shop=pawnbroker] {
|
---|
[10706] | 2259 | icon-image: "presets/shop/pawnbroker.svg";
|
---|
[7454] | 2260 | set icon_z17;
|
---|
[7041] | 2261 | }
|
---|
| 2262 | node[shop=seafood] {
|
---|
[10808] | 2263 | icon-image: "presets/shop/groceries/seafood.svg";
|
---|
[7454] | 2264 | set icon_z17;
|
---|
[7041] | 2265 | }
|
---|
[11346] | 2266 | node[shop=dairy] {
|
---|
| 2267 | icon-image: "presets/shop/groceries/dairy.svg";
|
---|
| 2268 | set icon_z17;
|
---|
| 2269 | }
|
---|
[12083] | 2270 | node[shop=cheese] {
|
---|
| 2271 | icon-image: "presets/shop/groceries/cheese.svg";
|
---|
| 2272 | set icon_z17;
|
---|
| 2273 | }
|
---|
[7041] | 2274 | node[shop=shoes] {
|
---|
[10706] | 2275 | icon-image: "presets/shop/shoes.svg";
|
---|
[7454] | 2276 | set icon_z17;
|
---|
[7041] | 2277 | }
|
---|
| 2278 | node[shop=sports] {
|
---|
[10706] | 2279 | icon-image: "presets/sport/multi.svg";
|
---|
[7454] | 2280 | set icon_z17;
|
---|
[7041] | 2281 | }
|
---|
| 2282 | node[shop=stationery] {
|
---|
[10808] | 2283 | icon-image: "presets/shop/stationery.svg";
|
---|
[7454] | 2284 | set icon_z17;
|
---|
[7041] | 2285 | }
|
---|
| 2286 | node[shop=tailor] {
|
---|
[10706] | 2287 | icon-image: "presets/shop/tailor.svg";
|
---|
[7454] | 2288 | set icon_z17;
|
---|
[7041] | 2289 | }
|
---|
| 2290 | node[shop=travel_agency] {
|
---|
[10808] | 2291 | icon-image: "presets/shop/travel_agency.svg";
|
---|
[7454] | 2292 | set icon_z17;
|
---|
[7041] | 2293 | }
|
---|
| 2294 | node[shop=toys] {
|
---|
[10706] | 2295 | icon-image: "presets/shop/toys.svg";
|
---|
[7454] | 2296 | set icon_z17;
|
---|
[7041] | 2297 | }
|
---|
| 2298 | node[shop=vacuum_cleaner] {
|
---|
[10808] | 2299 | icon-image: "presets/shop/vacuum_cleaner.svg";
|
---|
[7454] | 2300 | set icon_z17;
|
---|
[7041] | 2301 | }
|
---|
| 2302 | node[shop=variety_store] {
|
---|
[10808] | 2303 | icon-image: "presets/shop/variety_store.svg";
|
---|
[7454] | 2304 | set icon_z17;
|
---|
[7041] | 2305 | }
|
---|
[12612] | 2306 | node[shop=charity] {
|
---|
| 2307 | icon-image: "presets/shop/charity.svg";
|
---|
| 2308 | set icon_z17;
|
---|
| 2309 | }
|
---|
[7041] | 2310 | node[shop=video] {
|
---|
[10808] | 2311 | icon-image: "presets/shop/video.svg";
|
---|
[7454] | 2312 | set icon_z17;
|
---|
[7041] | 2313 | }
|
---|
| 2314 | node[shop=bookmaker] {
|
---|
[10706] | 2315 | icon-image: "presets/shop/lottery.svg";
|
---|
[7454] | 2316 | set icon_z17;
|
---|
[7041] | 2317 | }
|
---|
| 2318 | node[shop=lottery] {
|
---|
[10706] | 2319 | icon-image: "presets/shop/lottery.svg";
|
---|
[7454] | 2320 | set icon_z17;
|
---|
[7041] | 2321 | }
|
---|
[7296] | 2322 | node[shop=pet] {
|
---|
[10565] | 2323 | icon-image: "presets/shop/pet.svg";
|
---|
[7454] | 2324 | set icon_z17;
|
---|
[7296] | 2325 | }
|
---|
[8868] | 2326 | node[shop=photo] {
|
---|
[10565] | 2327 | icon-image: "presets/shop/photo.svg";
|
---|
[8868] | 2328 | set icon_z17;
|
---|
| 2329 | }
|
---|
[7296] | 2330 | node[shop=ticket] {
|
---|
[10565] | 2331 | icon-image: "presets/shop/ticket.svg";
|
---|
[7454] | 2332 | set icon_z17;
|
---|
[7296] | 2333 | }
|
---|
[14959] | 2334 | node[shop=carpet] {
|
---|
| 2335 | icon-image: "presets/shop/carpet.svg";
|
---|
| 2336 | set icon_z17;
|
---|
| 2337 | }
|
---|
[7296] | 2338 | node[shop=interior_decoration] {
|
---|
[10565] | 2339 | icon-image: "presets/shop/interior_decoration.svg";
|
---|
[7454] | 2340 | set icon_z17;
|
---|
[7296] | 2341 | }
|
---|
| 2342 | node[shop=car_parts] {
|
---|
[10565] | 2343 | icon-image: "presets/vehicle/car_parts.svg";
|
---|
[7454] | 2344 | set icon_z17;
|
---|
[7296] | 2345 | }
|
---|
| 2346 | node[shop=video_games] {
|
---|
[10808] | 2347 | icon-image: "presets/shop/video_games.svg";
|
---|
[7454] | 2348 | set icon_z17;
|
---|
[7296] | 2349 | }
|
---|
| 2350 | node[shop=bed] {
|
---|
[10565] | 2351 | icon-image: "presets/shop/bed.svg";
|
---|
[7454] | 2352 | set icon_z17;
|
---|
[7296] | 2353 | }
|
---|
| 2354 | node[shop=beauty] {
|
---|
[10565] | 2355 | icon-image: "presets/shop/beauty.svg";
|
---|
[7454] | 2356 | set icon_z17;
|
---|
[7296] | 2357 | }
|
---|
[9550] | 2358 | node[shop=cosmetics] {
|
---|
[10565] | 2359 | icon-image: "presets/shop/cosmetics.svg";
|
---|
[9550] | 2360 | set icon_z17;
|
---|
| 2361 | }
|
---|
| 2362 | node[shop=perfumery] {
|
---|
[10565] | 2363 | icon-image: "presets/shop/perfumery.svg";
|
---|
[9550] | 2364 | set icon_z17;
|
---|
| 2365 | }
|
---|
[7296] | 2366 | node[shop=tea] {
|
---|
[10565] | 2367 | icon-image: "presets/shop/groceries/tea.svg";
|
---|
[7454] | 2368 | set icon_z17;
|
---|
[7296] | 2369 | }
|
---|
| 2370 | node[shop=coffee] {
|
---|
[10565] | 2371 | icon-image: "presets/shop/groceries/coffee.svg";
|
---|
[7454] | 2372 | set icon_z17;
|
---|
[7296] | 2373 | }
|
---|
[7600] | 2374 | node[shop=antiques] {
|
---|
[10565] | 2375 | icon-image: "presets/shop/antique.svg";
|
---|
[7600] | 2376 | set icon_z17;
|
---|
| 2377 | }
|
---|
[7685] | 2378 | node[shop=music] {
|
---|
[10565] | 2379 | icon-image: "presets/shop/music.svg";
|
---|
[7685] | 2380 | set icon_z17;
|
---|
| 2381 | }
|
---|
[7686] | 2382 | node[shop=funeral_directors] {
|
---|
[10565] | 2383 | icon-image: "presets/shop/funeral_directors.svg";
|
---|
[7686] | 2384 | set icon_z17;
|
---|
| 2385 | }
|
---|
| 2386 | node[shop=wine] {
|
---|
[10565] | 2387 | icon-image: "presets/shop/wine.svg";
|
---|
[7686] | 2388 | set icon_z17;
|
---|
| 2389 | }
|
---|
[7705] | 2390 | node[shop=farm] {
|
---|
[10808] | 2391 | icon-image: "presets/shop/groceries/farm.svg";
|
---|
[7705] | 2392 | set icon_z17;
|
---|
| 2393 | }
|
---|
| 2394 | node[shop=tattoo] {
|
---|
[10565] | 2395 | icon-image: "presets/shop/tattoo.svg";
|
---|
[7705] | 2396 | set icon_z17;
|
---|
| 2397 | }
|
---|
| 2398 | node[shop=art] {
|
---|
[10565] | 2399 | icon-image: "presets/shop/art.svg";
|
---|
[7705] | 2400 | set icon_z17;
|
---|
| 2401 | }
|
---|
[7296] | 2402 | node[shop=bag] {
|
---|
[10565] | 2403 | icon-image: "presets/shop/bag.svg";
|
---|
[7454] | 2404 | set icon_z17;
|
---|
[7296] | 2405 | }
|
---|
[7041] | 2406 |
|
---|
[9523] | 2407 | /******************/
|
---|
| 2408 | /* emergency tags */
|
---|
| 2409 | /******************/
|
---|
| 2410 | area[emergency=ambulance_station],
|
---|
| 2411 | area[emergency=water_tank] {
|
---|
| 2412 | fill-color: emergency#eeeeee;
|
---|
| 2413 | }
|
---|
| 2414 | node[emergency=ambulance_station] {
|
---|
[10565] | 2415 | icon-image: "presets/emergency/ambulance_station.svg";
|
---|
[9523] | 2416 | set icon_z17;
|
---|
| 2417 | }
|
---|
| 2418 | node[emergency=water_tank] {
|
---|
[10565] | 2419 | icon-image: "presets/emergency/water_tank.svg";
|
---|
[9523] | 2420 | set icon_z17;
|
---|
| 2421 | }
|
---|
| 2422 | node[emergency=phone] {
|
---|
[10706] | 2423 | icon-image: "presets/vehicle/emergency_phone.svg";
|
---|
[9523] | 2424 | set icon_z17;
|
---|
| 2425 | }
|
---|
| 2426 | node[emergency=defibrillator] {
|
---|
[10706] | 2427 | icon-image: "presets/emergency/aed.svg";
|
---|
[9523] | 2428 | set icon_z17;
|
---|
| 2429 | }
|
---|
| 2430 | node[emergency=fire_hydrant] {
|
---|
[10706] | 2431 | icon-image: "presets/service/fire_hydrant.svg";
|
---|
[9523] | 2432 | set icon_z17;
|
---|
| 2433 | }
|
---|
| 2434 | node[emergency=fire_extinguisher] {
|
---|
[10565] | 2435 | icon-image: "presets/emergency/fire_extinguisher.svg";
|
---|
[9523] | 2436 | set icon_z17;
|
---|
| 2437 | }
|
---|
| 2438 | node[emergency=fire_hose] {
|
---|
[10565] | 2439 | icon-image: "presets/emergency/fire_hose.svg";
|
---|
[9523] | 2440 | set icon_z17;
|
---|
| 2441 | }
|
---|
| 2442 | node[emergency=assembly_point] {
|
---|
[10565] | 2443 | icon-image: "presets/emergency/assembly_point.svg";
|
---|
[9523] | 2444 | set icon_z17;
|
---|
| 2445 | }
|
---|
| 2446 | node[emergency=siren] {
|
---|
[10565] | 2447 | icon-image: "presets/emergency/siren.svg";
|
---|
[9523] | 2448 | set icon_z17;
|
---|
| 2449 | }
|
---|
| 2450 |
|
---|
[7041] | 2451 | /****************/
|
---|
| 2452 | /* amenity tags */
|
---|
| 2453 | /****************/
|
---|
| 2454 |
|
---|
| 2455 | area[amenity=pub],
|
---|
| 2456 | area[amenity=biergarten],
|
---|
| 2457 | area[amenity=nightclub],
|
---|
| 2458 | area[amenity=stripclub],
|
---|
[8501] | 2459 | area[amenity=casino],
|
---|
[7041] | 2460 | area[amenity=brothel],
|
---|
| 2461 | area[amenity=cafe],
|
---|
| 2462 | area[amenity=restaurant],
|
---|
| 2463 | area[amenity=food_court],
|
---|
| 2464 | area[amenity=fast_food],
|
---|
| 2465 | area[amenity=bar],
|
---|
| 2466 | area[amenity=ice_cream] {
|
---|
| 2467 | fill-color: amenity#ecba52;
|
---|
| 2468 | }
|
---|
| 2469 | node[amenity=pub] {
|
---|
[10808] | 2470 | icon-image: "presets/food/pub.svg";
|
---|
[7454] | 2471 | set icon_z17;
|
---|
[7041] | 2472 | }
|
---|
| 2473 | node[amenity=biergarten] {
|
---|
[10808] | 2474 | icon-image: "presets/food/biergarten.svg";
|
---|
[7454] | 2475 | set icon_z17;
|
---|
[7041] | 2476 | }
|
---|
| 2477 | node[amenity=nightclub] {
|
---|
[10808] | 2478 | icon-image: "presets/leisure/nightclub.svg";
|
---|
[7454] | 2479 | set icon_z17;
|
---|
[7041] | 2480 | }
|
---|
| 2481 | node[amenity=stripclub] {
|
---|
[10808] | 2482 | icon-image: "presets/leisure/stripclub.svg";
|
---|
[7454] | 2483 | set icon_z17;
|
---|
[7041] | 2484 | }
|
---|
[8501] | 2485 | node[amenity=casino] {
|
---|
[10565] | 2486 | icon-image: "presets/leisure/casino.svg";
|
---|
[8501] | 2487 | set icon_z17;
|
---|
| 2488 | }
|
---|
[7041] | 2489 | node[amenity=brothel] {
|
---|
[10808] | 2490 | icon-image: "presets/leisure/brothel.svg";
|
---|
[7454] | 2491 | set icon_z17;
|
---|
[7041] | 2492 | }
|
---|
| 2493 | node[amenity=cafe] {
|
---|
[10808] | 2494 | icon-image: "presets/food/cafe.svg";
|
---|
[7454] | 2495 | set icon_z17;
|
---|
[7041] | 2496 | }
|
---|
[8434] | 2497 | node[amenity=restaurant] {
|
---|
[10565] | 2498 | icon-image: "presets/food/restaurant.svg";
|
---|
[8434] | 2499 | set icon_z17;
|
---|
| 2500 | }
|
---|
[7041] | 2501 | node[amenity=food_court] {
|
---|
[10808] | 2502 | icon-image: "presets/food/food_court.svg";
|
---|
[7454] | 2503 | set icon_z17;
|
---|
[7041] | 2504 | }
|
---|
| 2505 | node[amenity=fast_food] {
|
---|
[10808] | 2506 | icon-image: "presets/food/fast_food.svg";
|
---|
[7454] | 2507 | set icon_z17;
|
---|
[7041] | 2508 | }
|
---|
| 2509 | node[amenity=bar] {
|
---|
[10706] | 2510 | icon-image: "presets/food/bar.svg";
|
---|
[7454] | 2511 | set icon_z17;
|
---|
[7041] | 2512 | }
|
---|
| 2513 | node[amenity=ice_cream] {
|
---|
[10808] | 2514 | icon-image: "presets/food/ice_cream.svg";
|
---|
[7454] | 2515 | set icon_z17;
|
---|
[7041] | 2516 | }
|
---|
[8667] | 2517 | area[amenity=bicycle_parking]:closed {
|
---|
| 2518 | fill-color: amenity_traffic#f7efb7;
|
---|
| 2519 | }
|
---|
[8362] | 2520 | way[amenity=bicycle_parking] {
|
---|
| 2521 | width: 2;
|
---|
| 2522 | color: amenity_traffic#f7efb7;
|
---|
| 2523 | }
|
---|
[13979] | 2524 | area[amenity=parking_space] {
|
---|
| 2525 | fill-color: parking_space#f7efb8;
|
---|
| 2526 | }
|
---|
[7041] | 2527 | area[amenity=parking],
|
---|
| 2528 | area[amenity=motorcycle_parking],
|
---|
| 2529 | area[amenity=bicycle_rental],
|
---|
[7928] | 2530 | area[amenity=bicycle_repair_station],
|
---|
[7041] | 2531 | area[amenity=car_rental],
|
---|
| 2532 | area[amenity=car_sharing],
|
---|
| 2533 | area[amenity=car_wash],
|
---|
| 2534 | area[amenity=taxi],
|
---|
[7977] | 2535 | area[amenity=fuel] {
|
---|
[7041] | 2536 | fill-color: amenity_traffic#f7efb7;
|
---|
| 2537 | }
|
---|
| 2538 | node[amenity=parking_space] {
|
---|
[10565] | 2539 | icon-image: "presets/vehicle/parking/parking_space.svg";
|
---|
[7454] | 2540 | set icon_z17;
|
---|
[7763] | 2541 | }
|
---|
| 2542 | node[amenity=parking] {
|
---|
[10706] | 2543 | icon-image: "presets/vehicle/parking/parking.svg";
|
---|
[7454] | 2544 | set icon_z17;
|
---|
[7041] | 2545 | }
|
---|
[7766] | 2546 | node[amenity=parking_entrance] {
|
---|
[10706] | 2547 | icon-image: "presets/vehicle/parking/parking.svg";
|
---|
[7766] | 2548 | set icon_z17;
|
---|
| 2549 | }
|
---|
| 2550 | node[amenity=parking_entrance][parking=multi-storey],
|
---|
[7763] | 2551 | node[amenity=parking][parking=multi-storey] {
|
---|
[10706] | 2552 | icon-image: "presets/vehicle/parking/multi-storey.svg";
|
---|
[7454] | 2553 | set icon_z17;
|
---|
[7041] | 2554 | }
|
---|
[7766] | 2555 | node[amenity=parking_entrance][parking=underground],
|
---|
[7763] | 2556 | node[amenity=parking][parking=underground] {
|
---|
[10706] | 2557 | icon-image: "presets/vehicle/parking/underground.svg";
|
---|
[7763] | 2558 | set icon_z17;
|
---|
| 2559 | }
|
---|
[7041] | 2560 | node[amenity=motorcycle_parking] {
|
---|
[10706] | 2561 | icon-image: "presets/vehicle/parking/motorbike.svg";
|
---|
[7454] | 2562 | set icon_z17;
|
---|
[7041] | 2563 | }
|
---|
| 2564 | node[amenity=bicycle_parking] {
|
---|
[10706] | 2565 | icon-image: "presets/vehicle/parking/bicycle.svg";
|
---|
[7454] | 2566 | set icon_z17;
|
---|
[7041] | 2567 | }
|
---|
[7635] | 2568 | node[park_ride][park_ride!=no] {
|
---|
[10565] | 2569 | icon-image: "presets/vehicle/parking/park_ride.svg";
|
---|
[7454] | 2570 | set icon_z17;
|
---|
[7041] | 2571 | }
|
---|
| 2572 | node[amenity=parking_space][wheelchair?] {
|
---|
[10706] | 2573 | icon-image: "presets/vehicle/parking/handicapped.svg";
|
---|
[7454] | 2574 | set icon_z17;
|
---|
[7041] | 2575 | }
|
---|
| 2576 | node[amenity=bicycle_rental] {
|
---|
[10706] | 2577 | icon-image: "presets/vehicle/bicycle_rental.svg";
|
---|
[7454] | 2578 | set icon_z17;
|
---|
[7041] | 2579 | }
|
---|
[7928] | 2580 | node[amenity=bicycle_repair_station] {
|
---|
[10565] | 2581 | icon-image: "presets/vehicle/bicycle_repair_station.svg";
|
---|
[7928] | 2582 | set icon_z17;
|
---|
| 2583 | }
|
---|
[7041] | 2584 | node[amenity=car_rental] {
|
---|
[10706] | 2585 | icon-image: "presets/vehicle/car_rental.svg";
|
---|
[7454] | 2586 | set icon_z17;
|
---|
[7041] | 2587 | }
|
---|
| 2588 | node[amenity=car_sharing] {
|
---|
[10706] | 2589 | icon-image: "presets/vehicle/car_sharing.svg";
|
---|
[7454] | 2590 | set icon_z17;
|
---|
[7041] | 2591 | }
|
---|
| 2592 | node[amenity=car_wash] {
|
---|
[10706] | 2593 | icon-image: "presets/vehicle/car_wash.svg";
|
---|
[7454] | 2594 | set icon_z17;
|
---|
[7041] | 2595 | }
|
---|
| 2596 | node[amenity=taxi] {
|
---|
[10706] | 2597 | icon-image: "presets/transport/taxi.svg";
|
---|
[7454] | 2598 | set icon_z17;
|
---|
[7041] | 2599 | }
|
---|
| 2600 | node[amenity=fuel] {
|
---|
[10706] | 2601 | icon-image: "presets/vehicle/fuel.svg";
|
---|
[7454] | 2602 | set icon_z17;
|
---|
[7041] | 2603 | }
|
---|
| 2604 | node[amenity=charging_station] {
|
---|
[10808] | 2605 | icon-image: "presets/vehicle/charging_station.svg";
|
---|
[7454] | 2606 | set icon_z17;
|
---|
[7041] | 2607 | }
|
---|
| 2608 | node[amenity=grit_bin] {
|
---|
[10565] | 2609 | icon-image: "presets/misc/grit_bin.svg";
|
---|
[7454] | 2610 | set icon_z17;
|
---|
[7041] | 2611 | }
|
---|
| 2612 | node[amenity=telephone] {
|
---|
[10706] | 2613 | icon-image: "presets/service/telephone.svg";
|
---|
[7454] | 2614 | set icon_z17;
|
---|
[7041] | 2615 | }
|
---|
| 2616 | node[amenity=clock] {
|
---|
[10565] | 2617 | icon-image: "presets/service/clock.svg";
|
---|
[7454] | 2618 | set icon_z17;
|
---|
[7041] | 2619 | }
|
---|
[11583] | 2620 | node[amenity=photo_booth] {
|
---|
| 2621 | icon-image: "presets/service/photo_booth.svg";
|
---|
| 2622 | set icon_z17;
|
---|
| 2623 | }
|
---|
[7041] | 2624 | area[amenity=toilets],
|
---|
[7598] | 2625 | area[amenity=shower],
|
---|
[11585] | 2626 | area[amenity=internet_cafe],
|
---|
[8190] | 2627 | area[amenity=recycling],
|
---|
| 2628 | area[amenity=sanitary_dump_station] {
|
---|
[7041] | 2629 | fill-color: amenity_light#f7efb7;
|
---|
| 2630 | }
|
---|
| 2631 | node[amenity=toilets] {
|
---|
[10706] | 2632 | icon-image: "presets/service/toilets.svg";
|
---|
[7454] | 2633 | set icon_z17;
|
---|
[7041] | 2634 | }
|
---|
[7598] | 2635 | node[amenity=shower] {
|
---|
[10565] | 2636 | icon-image: "presets/service/shower.svg";
|
---|
[10013] | 2637 | set icon_z17;
|
---|
[7598] | 2638 | }
|
---|
[11585] | 2639 | node[amenity=internet_cafe] {
|
---|
| 2640 | icon-image: "presets/service/internet_cafe.svg";
|
---|
| 2641 | set icon_z17;
|
---|
| 2642 | }
|
---|
[7041] | 2643 | node[amenity=recycling] {
|
---|
[10565] | 2644 | icon-image: "presets/service/recycling/recycling.svg";
|
---|
[7454] | 2645 | set icon_z17;
|
---|
[7041] | 2646 | }
|
---|
[8411] | 2647 | node[amenity=recycling][recycling_type=container] {
|
---|
[10565] | 2648 | icon-image: "presets/service/recycling/recycling_container.svg";
|
---|
[8411] | 2649 | }
|
---|
| 2650 | node[amenity=recycling][recycling_type=centre] {
|
---|
[10565] | 2651 | icon-image: "presets/service/recycling/recycling_centre.svg";
|
---|
[8411] | 2652 | }
|
---|
[7041] | 2653 | node[amenity=waste_basket] {
|
---|
[10810] | 2654 | icon-image: "presets/service/recycling/waste_basket.svg";
|
---|
[7454] | 2655 | set icon_z17;
|
---|
[7041] | 2656 | }
|
---|
| 2657 | node[amenity=waste_disposal] {
|
---|
[10814] | 2658 | icon-image: "presets/service/recycling/waste_disposal.svg";
|
---|
[7454] | 2659 | set icon_z17;
|
---|
[7041] | 2660 | }
|
---|
[8190] | 2661 | node[amenity=sanitary_dump_station] {
|
---|
[10565] | 2662 | icon-image: "presets/service/recycling/sanitary_dump_station.svg";
|
---|
[8190] | 2663 | set icon_z17;
|
---|
| 2664 | }
|
---|
[7041] | 2665 | area[amenity=townhall],
|
---|
| 2666 | area[amenity=embassy],
|
---|
| 2667 | area[amenity=community_centre] {
|
---|
| 2668 | fill-color: amenity_light#f7efb7;
|
---|
| 2669 | }
|
---|
[7927] | 2670 | node[amenity=townhall] {
|
---|
[10808] | 2671 | icon-image: "presets/service/townhall.svg";
|
---|
[7927] | 2672 | set icon_z17;
|
---|
| 2673 | }
|
---|
[7041] | 2674 | node[amenity=embassy] {
|
---|
[10808] | 2675 | icon-image: "presets/service/embassy.svg";
|
---|
[7454] | 2676 | set icon_z17;
|
---|
[7041] | 2677 | }
|
---|
| 2678 | node[amenity=community_centre] {
|
---|
[10808] | 2679 | icon-image: "presets/service/community_centre.svg";
|
---|
[7454] | 2680 | set icon_z17;
|
---|
[7041] | 2681 | }
|
---|
[7737] | 2682 | area[amenity=water_point],
|
---|
[7041] | 2683 | area[amenity=fountain] {
|
---|
| 2684 | fill-color: light_water#00005f;
|
---|
| 2685 | }
|
---|
| 2686 | node[amenity=drinking_water] {
|
---|
[10808] | 2687 | icon-image: "presets/food/drinking_water.svg";
|
---|
[7454] | 2688 | set icon_z17;
|
---|
[7041] | 2689 | }
|
---|
[7737] | 2690 | node[amenity=water_point] {
|
---|
[10706] | 2691 | icon-image: "presets/accommodation/water.svg";
|
---|
[7737] | 2692 | set icon_z17;
|
---|
| 2693 | }
|
---|
[7041] | 2694 | node[amenity=fountain] {
|
---|
[10808] | 2695 | icon-image: "presets/misc/fountain.svg";
|
---|
[7454] | 2696 | set icon_z17;
|
---|
[7041] | 2697 | }
|
---|
| 2698 | area[amenity=place_of_worship],
|
---|
| 2699 | area[amenity=grave_yard],
|
---|
| 2700 | area[amenity=crematorium],
|
---|
| 2701 | area[amenity=post_office],
|
---|
| 2702 | area[amenity=studio],
|
---|
| 2703 | area[amenity=school],
|
---|
| 2704 | area[amenity=university],
|
---|
| 2705 | area[amenity=college],
|
---|
| 2706 | area[amenity=kindergarten],
|
---|
| 2707 | area[amenity=driving_school] {
|
---|
| 2708 | fill-color: amenity_light#f7efb7;
|
---|
| 2709 | }
|
---|
| 2710 | node[amenity=place_of_worship] {
|
---|
[10706] | 2711 | icon-image: "presets/religion/religion.svg";
|
---|
[7454] | 2712 | set icon_z17;
|
---|
[7041] | 2713 | }
|
---|
[7359] | 2714 | node[amenity=place_of_worship][religion=bahai] {
|
---|
[10706] | 2715 | icon-image: "presets/religion/bahai.svg";
|
---|
[7454] | 2716 | set icon_z17;
|
---|
[7041] | 2717 | }
|
---|
[7359] | 2718 | node[amenity=place_of_worship][religion=buddhist] {
|
---|
[10706] | 2719 | icon-image: "presets/religion/buddhism.svg";
|
---|
[7454] | 2720 | set icon_z17;
|
---|
[7041] | 2721 | }
|
---|
[14867] | 2722 | node[amenity=place_of_worship][religion=caodaism][!is_prop_set(icon-image)] {
|
---|
| 2723 | icon-image: "presets/misc/no_icon.svg";
|
---|
| 2724 | set icon_z17;
|
---|
| 2725 | }
|
---|
[7359] | 2726 | node[amenity=place_of_worship][religion=christian] {
|
---|
[10706] | 2727 | icon-image: "presets/religion/church.svg";
|
---|
[7454] | 2728 | set icon_z17;
|
---|
[7041] | 2729 | }
|
---|
[14867] | 2730 | node[amenity=place_of_worship][religion=confucian] {
|
---|
| 2731 | icon-image: "presets/religion/confucian.svg";
|
---|
| 2732 | set icon_z17;
|
---|
| 2733 | }
|
---|
[7359] | 2734 | node[amenity=place_of_worship][religion=hindu] {
|
---|
[10706] | 2735 | icon-image: "presets/religion/hinduism.svg";
|
---|
[7454] | 2736 | set icon_z17;
|
---|
[7041] | 2737 | }
|
---|
[7359] | 2738 | node[amenity=place_of_worship][religion=jain] {
|
---|
[10706] | 2739 | icon-image: "presets/religion/jainism.svg";
|
---|
[7454] | 2740 | set icon_z17;
|
---|
[7041] | 2741 | }
|
---|
[7359] | 2742 | node[amenity=place_of_worship][religion=jewish] {
|
---|
[10706] | 2743 | icon-image: "presets/religion/jewish.svg";
|
---|
[7454] | 2744 | set icon_z17;
|
---|
[7041] | 2745 | }
|
---|
[7359] | 2746 | node[amenity=place_of_worship][religion=muslim] {
|
---|
[10706] | 2747 | icon-image: "presets/religion/muslim.svg";
|
---|
[7454] | 2748 | set icon_z17;
|
---|
[7041] | 2749 | }
|
---|
[14867] | 2750 | node[amenity=place_of_worship][religion=shinto] {
|
---|
| 2751 | icon-image: "presets/religion/shinto.svg";
|
---|
| 2752 | set icon_z17;
|
---|
| 2753 | }
|
---|
[7359] | 2754 | node[amenity=place_of_worship][religion=sikh] {
|
---|
[10706] | 2755 | icon-image: "presets/religion/sikhism.svg";
|
---|
[7454] | 2756 | set icon_z17;
|
---|
[7041] | 2757 | }
|
---|
[9892] | 2758 | node[amenity=place_of_worship][religion=spiritualist][!is_prop_set(icon-image)] {
|
---|
[10706] | 2759 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 2760 | set icon_z17;
|
---|
[7041] | 2761 | }
|
---|
[7359] | 2762 | node[amenity=place_of_worship][religion=taoist] {
|
---|
[10706] | 2763 | icon-image: "presets/religion/taoism.svg";
|
---|
[7454] | 2764 | set icon_z17;
|
---|
[7041] | 2765 | }
|
---|
[14867] | 2766 | node[amenity=place_of_worship][religion=tenrikyo] {
|
---|
| 2767 | icon-image: "presets/religion/tenrikyo.svg";
|
---|
| 2768 | set icon_z17;
|
---|
| 2769 | }
|
---|
| 2770 | node[amenity=place_of_worship][religion=unitarian_universalist][!is_prop_set(icon-image)] {
|
---|
[10706] | 2771 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 2772 | set icon_z17;
|
---|
[7041] | 2773 | }
|
---|
[9892] | 2774 | node[amenity=place_of_worship][religion=zoroastrian][!is_prop_set(icon-image)] {
|
---|
[10706] | 2775 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 2776 | set icon_z17;
|
---|
[7041] | 2777 | }
|
---|
| 2778 | node[amenity=grave_yard] {
|
---|
[10707] | 2779 | icon-image: "presets/landuse/graveyard.svg";
|
---|
[7454] | 2780 | set icon_z17;
|
---|
[7041] | 2781 | }
|
---|
[9892] | 2782 | node[amenity=crematorium][!is_prop_set(icon-image)] {
|
---|
[10706] | 2783 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 2784 | set icon_z17;
|
---|
[7041] | 2785 | }
|
---|
| 2786 | node[amenity=post_office] {
|
---|
[10808] | 2787 | icon-image: "presets/service/post_office.svg";
|
---|
[7454] | 2788 | set icon_z17;
|
---|
[7041] | 2789 | }
|
---|
| 2790 | node[amenity=post_box] {
|
---|
[10808] | 2791 | icon-image: "presets/service/post_box.svg";
|
---|
[7454] | 2792 | set icon_z17;
|
---|
[7041] | 2793 | }
|
---|
| 2794 | node[amenity=studio] {
|
---|
[10808] | 2795 | icon-image: "presets/service/studio.svg";
|
---|
[7454] | 2796 | set icon_z17;
|
---|
[7041] | 2797 | }
|
---|
| 2798 | node[amenity=school] {
|
---|
[10808] | 2799 | icon-image: "presets/education/school.svg";
|
---|
[7454] | 2800 | set icon_z17;
|
---|
[7041] | 2801 | }
|
---|
| 2802 | node[amenity=university] {
|
---|
[10808] | 2803 | icon-image: "presets/education/university.svg";
|
---|
[7454] | 2804 | set icon_z17;
|
---|
[7041] | 2805 | }
|
---|
| 2806 | node[amenity=college] {
|
---|
[10808] | 2807 | icon-image: "presets/education/college.svg";
|
---|
[7454] | 2808 | set icon_z17;
|
---|
[7041] | 2809 | }
|
---|
| 2810 | node[amenity=kindergarten] {
|
---|
[10706] | 2811 | icon-image: "presets/education/kindergarten.svg";
|
---|
[7454] | 2812 | set icon_z17;
|
---|
[7041] | 2813 | }
|
---|
| 2814 | node[amenity=driving_school] {
|
---|
[10808] | 2815 | icon-image: "presets/education/driving_school.svg";
|
---|
[7454] | 2816 | set icon_z17;
|
---|
[7041] | 2817 | }
|
---|
| 2818 | area[amenity=pharmacy],
|
---|
| 2819 | area[amenity=hospital],
|
---|
| 2820 | area[amenity=clinic],
|
---|
[7927] | 2821 | area[amenity=nursing_home],
|
---|
| 2822 | area[amenity=social_facility],
|
---|
[7041] | 2823 | area[amenity=baby_hatch],
|
---|
| 2824 | area[amenity=doctors],
|
---|
| 2825 | area[amenity=dentist],
|
---|
| 2826 | area[amenity=veterinary] {
|
---|
| 2827 | fill-color: health#eeeeee;
|
---|
| 2828 | }
|
---|
| 2829 | node[amenity=pharmacy] {
|
---|
[10565] | 2830 | icon-image: "presets/health/pharmacy.svg";
|
---|
[7454] | 2831 | set icon_z17;
|
---|
[7041] | 2832 | }
|
---|
[9286] | 2833 | node[amenity=hospital] {
|
---|
[10565] | 2834 | icon-image: "presets/health/hospital.svg";
|
---|
[9286] | 2835 | set icon_z17;
|
---|
| 2836 | }
|
---|
[7041] | 2837 | node[amenity=clinic] {
|
---|
[10565] | 2838 | icon-image: "presets/health/clinic.svg";
|
---|
[7454] | 2839 | set icon_z17;
|
---|
[7041] | 2840 | }
|
---|
[12613] | 2841 | node[amenity=social_facility][social_facility=nursing_home],
|
---|
[9286] | 2842 | node[amenity=nursing_home] {
|
---|
[10565] | 2843 | icon-image: "presets/social_facility/nursing_home.svg";
|
---|
[9286] | 2844 | set icon_z17;
|
---|
| 2845 | }
|
---|
[9285] | 2846 | node[amenity=social_facility][social_facility=group_home] {
|
---|
[10565] | 2847 | icon-image: "presets/social_facility/group_home.svg";
|
---|
[7454] | 2848 | set icon_z17;
|
---|
[7041] | 2849 | }
|
---|
[9285] | 2850 | node[amenity=social_facility][social_facility=assisted_living] {
|
---|
[10565] | 2851 | icon-image: "presets/social_facility/assisted_living.svg";
|
---|
[9285] | 2852 | set icon_z17;
|
---|
| 2853 | }
|
---|
| 2854 | node[amenity=social_facility][social_facility=outreach] {
|
---|
[10565] | 2855 | icon-image: "presets/social_facility/outreach.svg";
|
---|
[9285] | 2856 | set icon_z17;
|
---|
| 2857 | }
|
---|
| 2858 | node[amenity=social_facility][social_facility=shelter] {
|
---|
[10565] | 2859 | icon-image: "presets/social_facility/shelter.svg";
|
---|
[9285] | 2860 | set icon_z17;
|
---|
| 2861 | }
|
---|
| 2862 | node[amenity=social_facility][social_facility=food_bank] {
|
---|
[10565] | 2863 | icon-image: "presets/social_facility/food_bank.svg";
|
---|
[9285] | 2864 | set icon_z17;
|
---|
| 2865 | }
|
---|
[7041] | 2866 | node[amenity=baby_hatch] {
|
---|
[10565] | 2867 | icon-image: "presets/health/baby_hatch.svg";
|
---|
[7454] | 2868 | set icon_z17;
|
---|
[7041] | 2869 | }
|
---|
| 2870 | node[amenity=doctors] {
|
---|
[10565] | 2871 | icon-image: "presets/health/doctors.svg";
|
---|
[7454] | 2872 | set icon_z17;
|
---|
[7041] | 2873 | }
|
---|
| 2874 | node[amenity=dentist] {
|
---|
[10565] | 2875 | icon-image: "presets/health/dentist.svg";
|
---|
[7454] | 2876 | set icon_z17;
|
---|
[7041] | 2877 | }
|
---|
| 2878 | node[amenity=veterinary] {
|
---|
[10565] | 2879 | icon-image: "presets/health/veterinary.svg";
|
---|
[7454] | 2880 | set icon_z17;
|
---|
[7041] | 2881 | }
|
---|
| 2882 | area[amenity=library],
|
---|
| 2883 | area[amenity=police],
|
---|
[8025] | 2884 | area[amenity=ranger_station],
|
---|
[7041] | 2885 | area[amenity=fire_station],
|
---|
| 2886 | area[amenity=bus_station],
|
---|
| 2887 | area[amenity=ferry_terminal],
|
---|
| 2888 | area[amenity=theatre],
|
---|
| 2889 | area[amenity=cinema],
|
---|
| 2890 | area[amenity=arts_centre],
|
---|
| 2891 | area[amenity=courthouse],
|
---|
| 2892 | area[amenity=prison],
|
---|
| 2893 | area[amenity=bank],
|
---|
| 2894 | area[amenity=bureau_de_change],
|
---|
[15199] | 2895 | area[amenity=money_transfer],
|
---|
[11233] | 2896 | area[amenity=bbq],
|
---|
| 2897 | area[amenity=watering_place] {
|
---|
[7041] | 2898 | fill-color: amenity_light#f7efb7;
|
---|
| 2899 | }
|
---|
| 2900 | node[amenity=library] {
|
---|
[10808] | 2901 | icon-image: "presets/education/library.svg";
|
---|
[7454] | 2902 | set icon_z17;
|
---|
[7041] | 2903 | }
|
---|
| 2904 | node[amenity=police] {
|
---|
[10706] | 2905 | icon-image: "presets/service/police.svg";
|
---|
[7454] | 2906 | set icon_z17;
|
---|
[7041] | 2907 | }
|
---|
[8025] | 2908 | node[amenity=ranger_station] {
|
---|
[10565] | 2909 | icon-image: "presets/service/ranger_station.svg";
|
---|
[8025] | 2910 | set icon_z17;
|
---|
| 2911 | }
|
---|
[7041] | 2912 | node[amenity=fire_station] {
|
---|
[10706] | 2913 | icon-image: "presets/service/firebrigade.svg";
|
---|
[7454] | 2914 | set icon_z17;
|
---|
[7041] | 2915 | }
|
---|
| 2916 | node[amenity=bus_station] {
|
---|
[10706] | 2917 | icon-image: "presets/transport/bus_old.svg";
|
---|
[7454] | 2918 | set icon_z17;
|
---|
[7041] | 2919 | }
|
---|
| 2920 | node[amenity=ferry_terminal] {
|
---|
[10565] | 2921 | icon-image: "presets/nautical/ferry.svg";
|
---|
[7454] | 2922 | set icon_z17;
|
---|
[7041] | 2923 | }
|
---|
| 2924 | node[amenity=theatre] {
|
---|
[10808] | 2925 | icon-image: "presets/leisure/theater.svg";
|
---|
[7454] | 2926 | set icon_z17;
|
---|
[7041] | 2927 | }
|
---|
| 2928 | node[amenity=cinema] {
|
---|
[10706] | 2929 | icon-image: "presets/leisure/cinema.svg";
|
---|
[7454] | 2930 | set icon_z17;
|
---|
[7041] | 2931 | }
|
---|
| 2932 | node[amenity=arts_centre] {
|
---|
[10808] | 2933 | icon-image: "presets/sightseeing/arts_centre.svg";
|
---|
[7454] | 2934 | set icon_z17;
|
---|
[7041] | 2935 | }
|
---|
| 2936 | node[amenity=courthouse] {
|
---|
[10706] | 2937 | icon-image: "presets/service/courthouse.svg";
|
---|
[7454] | 2938 | set icon_z17;
|
---|
[7041] | 2939 | }
|
---|
| 2940 | node[amenity=prison] {
|
---|
[10706] | 2941 | icon-image: "presets/service/prison.svg";
|
---|
[7454] | 2942 | set icon_z17;
|
---|
[7041] | 2943 | }
|
---|
| 2944 | node[amenity=bank] {
|
---|
[10706] | 2945 | icon-image: "presets/money/bank.svg";
|
---|
[7454] | 2946 | set icon_z17;
|
---|
[7041] | 2947 | }
|
---|
| 2948 | node[amenity=bureau_de_change] {
|
---|
[10706] | 2949 | icon-image: "presets/money/exchange.svg";
|
---|
[7454] | 2950 | set icon_z17;
|
---|
[7041] | 2951 | }
|
---|
[15199] | 2952 | node[amenity=money_transfer] {
|
---|
| 2953 | icon-image: "presets/money/money_transfer.svg";
|
---|
| 2954 | set icon_z17;
|
---|
| 2955 | }
|
---|
[7041] | 2956 | node[amenity=atm] {
|
---|
[10706] | 2957 | icon-image: "presets/money/atm.svg";
|
---|
[7454] | 2958 | set icon_z17;
|
---|
[7041] | 2959 | }
|
---|
| 2960 | way[amenity=bench] {
|
---|
| 2961 | width: 2;
|
---|
| 2962 | color: amenity_light#f7efb7;
|
---|
| 2963 | }
|
---|
| 2964 | node[amenity=bench] {
|
---|
[10808] | 2965 | icon-image: "presets/leisure/bench.svg";
|
---|
[7454] | 2966 | set icon_z17;
|
---|
[7041] | 2967 | }
|
---|
| 2968 | node[amenity=bbq] {
|
---|
[10808] | 2969 | icon-image: "presets/leisure/bbq.svg";
|
---|
[7454] | 2970 | set icon_z17;
|
---|
[7041] | 2971 | }
|
---|
[8865] | 2972 | node[amenity=compressed_air] {
|
---|
[10565] | 2973 | icon-image: "presets/vehicle/compressed_air.svg";
|
---|
[8865] | 2974 | set icon_z17;
|
---|
| 2975 | }
|
---|
[11233] | 2976 | node[amenity=watering_place] {
|
---|
| 2977 | icon-image: "presets/misc/watering_place.svg";
|
---|
| 2978 | set icon_z17;
|
---|
| 2979 | }
|
---|
[7041] | 2980 | area[amenity=shelter],
|
---|
| 2981 | area[amenity=marketplace],
|
---|
[7977] | 2982 | area[amenity=wlan] {
|
---|
[7041] | 2983 | fill-color: amenity_light#f7efb7;
|
---|
| 2984 | }
|
---|
| 2985 | node[amenity=shelter] {
|
---|
[10707] | 2986 | icon-image: "presets/accommodation/shelter.svg";
|
---|
[7454] | 2987 | set icon_z17;
|
---|
[7041] | 2988 | }
|
---|
[7541] | 2989 | node[amenity=shelter][shelter_type=public_transport] {
|
---|
[10808] | 2990 | icon-image: "presets/accommodation/shelter_public_transport.svg";
|
---|
[7541] | 2991 | set icon_z17;
|
---|
| 2992 | }
|
---|
| 2993 | node[amenity=shelter][shelter_type=picnic_shelter] {
|
---|
[10808] | 2994 | icon-image: "presets/accommodation/shelter_picnic.svg";
|
---|
[7541] | 2995 | set icon_z17;
|
---|
| 2996 | }
|
---|
| 2997 | node[amenity=shelter][shelter_type=basic_hut] {
|
---|
[10808] | 2998 | icon-image: "presets/accommodation/basic_hut.svg";
|
---|
[7541] | 2999 | set icon_z17;
|
---|
| 3000 | }
|
---|
[7927] | 3001 | node[amenity=shelter][shelter_type=lean_to] {
|
---|
[10565] | 3002 | icon-image: "presets/accommodation/shelter_lean_to.svg";
|
---|
[7927] | 3003 | set icon_z17;
|
---|
| 3004 | }
|
---|
[7041] | 3005 | node[amenity=hunting_stand] {
|
---|
[10808] | 3006 | icon-image: "presets/landmark/hunting_stand.svg";
|
---|
[7454] | 3007 | set icon_z17;
|
---|
[7041] | 3008 | }
|
---|
| 3009 | node[amenity=marketplace] {
|
---|
[10808] | 3010 | icon-image: "presets/shop/marketplace.svg";
|
---|
[7454] | 3011 | set icon_z17;
|
---|
[7041] | 3012 | }
|
---|
| 3013 | node[amenity=vending_machine] {
|
---|
[10706] | 3014 | icon-image: "presets/transport/ticket-machine.svg";
|
---|
[7454] | 3015 | set icon_z17;
|
---|
[7041] | 3016 | }
|
---|
| 3017 | node[vending=excrement_bags] {
|
---|
[10808] | 3018 | icon-image: "presets/service/excrement_bags.svg";
|
---|
[7454] | 3019 | set icon_z17;
|
---|
[7041] | 3020 | }
|
---|
| 3021 |
|
---|
| 3022 | /**************/
|
---|
| 3023 | /* craft tags */
|
---|
| 3024 | /**************/
|
---|
| 3025 |
|
---|
[9681] | 3026 | area[craft=carpenter],
|
---|
| 3027 | area[craft=shoemaker],
|
---|
| 3028 | area[craft=photographer],
|
---|
| 3029 | area[craft=metal_construction],
|
---|
| 3030 | area[craft=electrician],
|
---|
| 3031 | area[craft=brewery],
|
---|
| 3032 | area[craft=plumber],
|
---|
| 3033 | area[craft=sawmill],
|
---|
| 3034 | area[craft=gardener],
|
---|
| 3035 | area[craft=winery],
|
---|
| 3036 | area[craft=hvac],
|
---|
[7041] | 3037 | area[craft=painter],
|
---|
[9681] | 3038 | area[craft=stonemason],
|
---|
| 3039 | area[craft=handicraft],
|
---|
[7041] | 3040 | area[craft=pottery],
|
---|
[9681] | 3041 | area[craft=key_cutter],
|
---|
| 3042 | area[craft=caterer],
|
---|
| 3043 | area[craft=roofer],
|
---|
| 3044 | area[craft=beekeeper],
|
---|
| 3045 | area[craft=blacksmith],
|
---|
| 3046 | area[craft=locksmith],
|
---|
| 3047 | area[craft=window_construction],
|
---|
| 3048 | area[craft=upholsterer],
|
---|
| 3049 | area[craft=tiler] {
|
---|
[7041] | 3050 | fill-color: craft#999900;
|
---|
| 3051 | }
|
---|
[9892] | 3052 | node[craft=carpenter][!is_prop_set(icon-image)] {
|
---|
[10706] | 3053 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 3054 | set icon_z17;
|
---|
[7041] | 3055 | }
|
---|
[9892] | 3056 | node[craft=shoemaker][!is_prop_set(icon-image)] {
|
---|
[10706] | 3057 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3058 | set icon_z17;
|
---|
| 3059 | }
|
---|
[9892] | 3060 | node[craft=photographer][!is_prop_set(icon-image)] {
|
---|
[10706] | 3061 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3062 | set icon_z17;
|
---|
| 3063 | }
|
---|
[9892] | 3064 | node[craft=metal_construction][!is_prop_set(icon-image)] {
|
---|
[10706] | 3065 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3066 | set icon_z17;
|
---|
[14363] | 3067 | }node[craft=electrician] {
|
---|
| 3068 | icon-image: "presets/craft/electrician.svg";
|
---|
[9681] | 3069 | set icon_z17;
|
---|
| 3070 | }
|
---|
[9892] | 3071 | node[craft=brewery][!is_prop_set(icon-image)] {
|
---|
[10706] | 3072 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3073 | set icon_z17;
|
---|
| 3074 | }
|
---|
[7041] | 3075 | node[craft=plumber] {
|
---|
[10808] | 3076 | icon-image: "presets/craft/plumber.svg";
|
---|
[7454] | 3077 | set icon_z17;
|
---|
[7041] | 3078 | }
|
---|
[14998] | 3079 | node[craft=sawmill] {
|
---|
| 3080 | icon-image: "presets/craft/sawmill.svg";
|
---|
[7454] | 3081 | set icon_z17;
|
---|
[7041] | 3082 | }
|
---|
[9892] | 3083 | node[craft=gardener][!is_prop_set(icon-image)] {
|
---|
[10706] | 3084 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3085 | set icon_z17;
|
---|
| 3086 | }
|
---|
[9892] | 3087 | node[craft=winery][!is_prop_set(icon-image)] {
|
---|
[10706] | 3088 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3089 | set icon_z17;
|
---|
| 3090 | }
|
---|
[15170] | 3091 | node[craft=hvac] {
|
---|
| 3092 | icon-image: "presets/craft/hvac.svg";
|
---|
[9681] | 3093 | set icon_z17;
|
---|
| 3094 | }
|
---|
| 3095 | node[craft=painter] {
|
---|
[10808] | 3096 | icon-image: "presets/craft/painter.svg";
|
---|
[9681] | 3097 | set icon_z17;
|
---|
| 3098 | }
|
---|
[9892] | 3099 | node[craft=stonemason][!is_prop_set(icon-image)] {
|
---|
[10706] | 3100 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 3101 | set icon_z17;
|
---|
[7041] | 3102 | }
|
---|
[9892] | 3103 | node[craft=handicraft][!is_prop_set(icon-image)] {
|
---|
[10706] | 3104 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 3105 | set icon_z17;
|
---|
[7041] | 3106 | }
|
---|
[9681] | 3107 | node[craft=pottery] {
|
---|
[10808] | 3108 | icon-image: "presets/craft/pottery.svg";
|
---|
[9681] | 3109 | set icon_z17;
|
---|
| 3110 | }
|
---|
[13833] | 3111 | node[craft=key_cutter] {
|
---|
[13835] | 3112 | icon-image: "presets/craft/key_cutter.svg";
|
---|
[9681] | 3113 | set icon_z17;
|
---|
| 3114 | }
|
---|
[9892] | 3115 | node[craft=caterer][!is_prop_set(icon-image)] {
|
---|
[10706] | 3116 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3117 | set icon_z17;
|
---|
| 3118 | }
|
---|
[10727] | 3119 | node[craft=roofer] {
|
---|
| 3120 | icon-image: "presets/craft/roofer.svg";
|
---|
[9681] | 3121 | set icon_z17;
|
---|
| 3122 | }
|
---|
[10825] | 3123 | node[craft=beekeeper] {
|
---|
| 3124 | icon-image: "presets/craft/beekeeper.svg";
|
---|
[9681] | 3125 | set icon_z17;
|
---|
| 3126 | }
|
---|
[9892] | 3127 | node[craft=blacksmith][!is_prop_set(icon-image)] {
|
---|
[10706] | 3128 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3129 | set icon_z17;
|
---|
| 3130 | }
|
---|
[13833] | 3131 | node[craft=locksmith] {
|
---|
[13835] | 3132 | icon-image: "presets/craft/locksmith.svg";
|
---|
[9681] | 3133 | set icon_z17;
|
---|
| 3134 | }
|
---|
[7041] | 3135 | node[craft=window_construction] {
|
---|
[10808] | 3136 | icon-image: "presets/craft/window_construction.svg";
|
---|
[7454] | 3137 | set icon_z17;
|
---|
[7041] | 3138 | }
|
---|
[9892] | 3139 | node[craft=upholsterer][!is_prop_set(icon-image)] {
|
---|
[10706] | 3140 | icon-image: "presets/misc/no_icon.svg";
|
---|
[9681] | 3141 | set icon_z17;
|
---|
| 3142 | }
|
---|
| 3143 | node[craft=tiler] {
|
---|
[10808] | 3144 | icon-image: "presets/craft/tiler.svg";
|
---|
[9681] | 3145 | set icon_z17;
|
---|
| 3146 | }
|
---|
[7041] | 3147 |
|
---|
| 3148 | /****************/
|
---|
| 3149 | /* tourism tags */
|
---|
| 3150 | /****************/
|
---|
| 3151 |
|
---|
| 3152 | area[tourism=hotel],
|
---|
| 3153 | area[tourism=motel],
|
---|
| 3154 | area[tourism=guest_house],
|
---|
[11265] | 3155 | area[tourism=apartment],
|
---|
[7041] | 3156 | area[tourism=hostel],
|
---|
| 3157 | area[tourism=chalet],
|
---|
| 3158 | area[tourism=alpine_hut],
|
---|
[9302] | 3159 | area[tourism=wilderness_hut],
|
---|
[7041] | 3160 | area[tourism=camp_site],
|
---|
| 3161 | area[tourism=caravan_site] {
|
---|
[9302] | 3162 | fill-color: hotel#feced0;
|
---|
[7041] | 3163 | }
|
---|
| 3164 | node[tourism=hotel] {
|
---|
[10565] | 3165 | icon-image: "presets/accommodation/hotel.svg";
|
---|
[7454] | 3166 | set icon_z17;
|
---|
[7041] | 3167 | }
|
---|
| 3168 | node[tourism=motel] {
|
---|
[10565] | 3169 | icon-image: "presets/accommodation/motel.svg";
|
---|
[7454] | 3170 | set icon_z17;
|
---|
[7041] | 3171 | }
|
---|
| 3172 | node[tourism=guest_house] {
|
---|
[10706] | 3173 | icon-image: "presets/accommodation/guest_house.svg";
|
---|
[7454] | 3174 | set icon_z17;
|
---|
[7041] | 3175 | }
|
---|
[11265] | 3176 | node[tourism=apartment] {
|
---|
| 3177 | icon-image: "presets/accommodation/apartment.svg";
|
---|
| 3178 | set icon_z17;
|
---|
| 3179 | }
|
---|
[7041] | 3180 | node[tourism=hostel] {
|
---|
[10565] | 3181 | icon-image: "presets/accommodation/hostel.svg";
|
---|
[7454] | 3182 | set icon_z17;
|
---|
[7041] | 3183 | }
|
---|
| 3184 | node[tourism=chalet] {
|
---|
[10706] | 3185 | icon-image: "presets/accommodation/chalet.svg";
|
---|
[7454] | 3186 | set icon_z17;
|
---|
[7041] | 3187 | }
|
---|
| 3188 | node[tourism=alpine_hut] {
|
---|
[10808] | 3189 | icon-image: "presets/accommodation/alpine_hut.svg";
|
---|
[7454] | 3190 | set icon_z17;
|
---|
[7041] | 3191 | }
|
---|
[7541] | 3192 | node[tourism=wilderness_hut] {
|
---|
[10808] | 3193 | icon-image: "presets/accommodation/wilderness_hut.svg";
|
---|
[7541] | 3194 | set icon_z17;
|
---|
| 3195 | }
|
---|
[7041] | 3196 | node[tourism=camp_site] {
|
---|
[10706] | 3197 | icon-image: "presets/accommodation/camping.svg";
|
---|
[7454] | 3198 | set icon_z17;
|
---|
[7041] | 3199 | }
|
---|
| 3200 | node[tourism=caravan_site] {
|
---|
[10706] | 3201 | icon-image: "presets/accommodation/caravan.svg";
|
---|
[7454] | 3202 | set icon_z17;
|
---|
[7041] | 3203 | }
|
---|
[11584] | 3204 | area[tourism=attraction]:closed {
|
---|
| 3205 | fill-color: tourism#e180a2;
|
---|
| 3206 | }
|
---|
| 3207 | way[tourism=attraction] {
|
---|
| 3208 | width: 2;
|
---|
| 3209 | color: tourism#e180a2;
|
---|
| 3210 | }
|
---|
| 3211 | node[tourism=attraction] {
|
---|
| 3212 | icon-image: "presets/sightseeing/attraction.svg";
|
---|
| 3213 | set icon_z17;
|
---|
| 3214 | }
|
---|
[7041] | 3215 | area[tourism=picnic_site],
|
---|
| 3216 | area[tourism=viewpoint],
|
---|
| 3217 | area[tourism=theme_park],
|
---|
| 3218 | area[tourism=zoo],
|
---|
| 3219 | area[tourism=museum] {
|
---|
| 3220 | fill-color: tourism#e180a2;
|
---|
| 3221 | }
|
---|
| 3222 | node[tourism=picnic_site] {
|
---|
[10808] | 3223 | icon-image: "presets/leisure/picnic.svg";
|
---|
[7454] | 3224 | set icon_z17;
|
---|
[7041] | 3225 | }
|
---|
| 3226 | node[tourism=viewpoint] {
|
---|
[10706] | 3227 | icon-image: "presets/sightseeing/viewpoint.svg";
|
---|
[7454] | 3228 | set icon_z17;
|
---|
[7041] | 3229 | }
|
---|
| 3230 | node[tourism=theme_park] {
|
---|
[10706] | 3231 | icon-image: "presets/leisure/theme_park.svg";
|
---|
[7454] | 3232 | set icon_z17;
|
---|
[7041] | 3233 | }
|
---|
| 3234 | node[tourism=zoo] {
|
---|
[10706] | 3235 | icon-image: "presets/leisure/zoo.svg";
|
---|
[7454] | 3236 | set icon_z17;
|
---|
[7041] | 3237 | }
|
---|
[8747] | 3238 | area[tourism=artwork]:closed {
|
---|
| 3239 | fill-color: tourism#e180a2;
|
---|
| 3240 | }
|
---|
[7041] | 3241 | way[tourism=artwork] {
|
---|
| 3242 | width: 2;
|
---|
| 3243 | color: tourism#e180a2;
|
---|
| 3244 | }
|
---|
| 3245 | node[tourism=artwork] {
|
---|
[10808] | 3246 | icon-image: "presets/sightseeing/arts_centre.svg";
|
---|
[7454] | 3247 | set icon_z17;
|
---|
[7041] | 3248 | }
|
---|
| 3249 | node[tourism=museum] {
|
---|
[10565] | 3250 | icon-image: "presets/sightseeing/museum.svg";
|
---|
[7454] | 3251 | set icon_z17;
|
---|
[7041] | 3252 | }
|
---|
| 3253 |
|
---|
| 3254 | /********************/
|
---|
[14181] | 3255 | /* attraction tags */
|
---|
| 3256 | /********************/
|
---|
| 3257 |
|
---|
| 3258 | area[attraction=animal] {
|
---|
| 3259 | fill-color: attraction#ffbfd3;
|
---|
| 3260 | color: attraction#ffbfd3; /* color explizitly needed here to overwrite the color already set by (a lot of wrongly tagged) tourism=attraction */
|
---|
| 3261 | }
|
---|
| 3262 | node[attraction=animal] {
|
---|
| 3263 | icon-image: "presets/attraction/animal.svg";
|
---|
| 3264 | set icon_z17;
|
---|
| 3265 | }
|
---|
| 3266 |
|
---|
| 3267 | /********************/
|
---|
[7041] | 3268 | /* information tags */
|
---|
| 3269 | /********************/
|
---|
| 3270 |
|
---|
| 3271 | area[tourism=information] {
|
---|
| 3272 | fill-color: tourism#e180a2;
|
---|
| 3273 | }
|
---|
| 3274 | node[tourism=information] {
|
---|
[10706] | 3275 | icon-image: "presets/misc/information/information.svg";
|
---|
[7454] | 3276 | set icon_z17;
|
---|
[7041] | 3277 | }
|
---|
[7996] | 3278 | node[tourism=information][information=guidepost] {
|
---|
[10706] | 3279 | icon-image: "presets/misc/information/guidepost.svg";
|
---|
[7454] | 3280 | set icon_z17;
|
---|
[7041] | 3281 | }
|
---|
[7996] | 3282 | area[tourism=information][information=office] {
|
---|
[7041] | 3283 | fill-color: tourism#e180a2;
|
---|
| 3284 | }
|
---|
[7996] | 3285 | node[tourism=information][information=office] {
|
---|
[10706] | 3286 | icon-image: "presets/misc/information/informationoffice.svg";
|
---|
[7454] | 3287 | set icon_z17;
|
---|
[7041] | 3288 | }
|
---|
[7996] | 3289 | node[tourism=information][information=map] {
|
---|
[10706] | 3290 | icon-image: "presets/misc/information/map.svg";
|
---|
[7454] | 3291 | set icon_z17;
|
---|
[7041] | 3292 | }
|
---|
[7996] | 3293 | node[tourism=information][information=board] {
|
---|
[10706] | 3294 | icon-image: "presets/misc/information/board.svg";
|
---|
[7454] | 3295 | set icon_z17;
|
---|
[7041] | 3296 | }
|
---|
| 3297 |
|
---|
| 3298 | /*****************/
|
---|
| 3299 | /* historic tags */
|
---|
| 3300 | /*****************/
|
---|
| 3301 |
|
---|
| 3302 | area[historic=castle],
|
---|
| 3303 | area[historic=monument],
|
---|
| 3304 | area[historic=memorial],
|
---|
[12993] | 3305 | area[historic=tomb],
|
---|
[7041] | 3306 | area[historic=archaeological_site],
|
---|
| 3307 | area[historic=ruins],
|
---|
| 3308 | area[historic=battlefield],
|
---|
[7960] | 3309 | area[geological=palaeontological_site],
|
---|
[7041] | 3310 | area[historic=wayside_cross],
|
---|
| 3311 | area[historic=wayside_shrine],
|
---|
| 3312 | area[historic=boundary_stone] {
|
---|
| 3313 | fill-color: historic#663300;
|
---|
| 3314 | }
|
---|
| 3315 | node[historic=castle] {
|
---|
[10565] | 3316 | icon-image: "presets/sightseeing/castle.svg";
|
---|
[7454] | 3317 | set icon_z17;
|
---|
[7041] | 3318 | }
|
---|
| 3319 | node[historic=monument] {
|
---|
[10706] | 3320 | icon-image: "presets/sightseeing/monument.svg";
|
---|
[7454] | 3321 | set icon_z17;
|
---|
[7041] | 3322 | }
|
---|
| 3323 | node[historic=memorial] {
|
---|
[10706] | 3324 | icon-image: "presets/sightseeing/memorial.svg";
|
---|
[7454] | 3325 | set icon_z17;
|
---|
[7041] | 3326 | }
|
---|
| 3327 | node[historic=archaeological_site] {
|
---|
[10706] | 3328 | icon-image: "presets/sightseeing/archaeological.svg";
|
---|
[7454] | 3329 | set icon_z17;
|
---|
[7041] | 3330 | }
|
---|
| 3331 | node[historic=ruins] {
|
---|
[10706] | 3332 | icon-image: "presets/sightseeing/ruins.svg";
|
---|
[7454] | 3333 | set icon_z17;
|
---|
[7041] | 3334 | }
|
---|
| 3335 | node[historic=battlefield] {
|
---|
[10706] | 3336 | icon-image: "presets/sightseeing/battlefield.svg";
|
---|
[7454] | 3337 | set icon_z17;
|
---|
[7041] | 3338 | }
|
---|
[7960] | 3339 | node[geological=palaeontological_site] {
|
---|
[10814] | 3340 | icon-image: "presets/sightseeing/palaeontological_site.svg";
|
---|
[7454] | 3341 | set icon_z17;
|
---|
[7041] | 3342 | }
|
---|
| 3343 | node[historic=wayside_cross] {
|
---|
[10706] | 3344 | icon-image: "presets/religion/wayside_cross.svg";
|
---|
[7454] | 3345 | set icon_z17;
|
---|
[7041] | 3346 | }
|
---|
| 3347 | node[historic=wayside_shrine] {
|
---|
[10706] | 3348 | icon-image: "presets/religion/wayside_shrine.svg";
|
---|
[7454] | 3349 | set icon_z17;
|
---|
[7041] | 3350 | }
|
---|
| 3351 | node[historic=boundary_stone] {
|
---|
[10808] | 3352 | icon-image: "presets/landmark/boundary_stone.svg";
|
---|
[7454] | 3353 | set icon_z17;
|
---|
[7041] | 3354 | }
|
---|
[13052] | 3355 | area[cemetery=grave] {
|
---|
| 3356 | fill-color: grave#663300;
|
---|
| 3357 | }
|
---|
| 3358 | node[cemetery=grave] {
|
---|
| 3359 | icon-image: "presets/misc/grave.svg";
|
---|
| 3360 | set icon_z17;
|
---|
| 3361 | }
|
---|
[15169] | 3362 | area[cemetery=sector] {
|
---|
| 3363 | fill-color: cemetery_sector#dbf8e6;
|
---|
| 3364 | }
|
---|
| 3365 | node[cemetery=sector] {
|
---|
| 3366 | icon-image: "presets/misc/cemetery_sector.svg";
|
---|
| 3367 | set icon_z17;
|
---|
| 3368 | }
|
---|
[13052] | 3369 | node[historic=tomb] {
|
---|
| 3370 | icon-image: "presets/misc/tomb.svg";
|
---|
| 3371 | set icon_z17;
|
---|
| 3372 | }
|
---|
[7041] | 3373 |
|
---|
| 3374 | /****************/
|
---|
| 3375 | /* landuse tags */
|
---|
| 3376 | /****************/
|
---|
| 3377 |
|
---|
[7564] | 3378 | area[landuse],
|
---|
| 3379 | area[leisure],
|
---|
| 3380 | area[amenity],
|
---|
| 3381 | area[place],
|
---|
| 3382 | area[natural],
|
---|
| 3383 | area[man_made] {
|
---|
| 3384 | z-index: -2; /* put areas that can have other areas inside (e.g. building) a little lower, see #9606 */
|
---|
| 3385 | }
|
---|
[8045] | 3386 | area[landuse=farmland] {
|
---|
| 3387 | fill-color: farmland#b8e0b1;
|
---|
| 3388 | }
|
---|
| 3389 | area[landuse=meadow] {
|
---|
| 3390 | fill-color: meadow#b1e0b6;
|
---|
| 3391 | }
|
---|
[7041] | 3392 | area[landuse=vineyard],
|
---|
| 3393 | area[landuse=orchard] {
|
---|
| 3394 | fill-color: green#b1e0c2;
|
---|
| 3395 | }
|
---|
| 3396 | area[landuse=quarry] {
|
---|
| 3397 | fill-color: quarry#888888;
|
---|
| 3398 | }
|
---|
| 3399 | area[landuse=landfill] {
|
---|
| 3400 | fill-color: landfill#663300;
|
---|
| 3401 | }
|
---|
| 3402 | area[landuse=basin],
|
---|
| 3403 | area[landuse=reservoir] {
|
---|
| 3404 | fill-color: basin#0000bf;
|
---|
| 3405 | }
|
---|
| 3406 | area[landuse=forest] {
|
---|
| 3407 | fill-color: forest#b1efc8;
|
---|
| 3408 | }
|
---|
[8045] | 3409 | area[landuse=allotments] {
|
---|
| 3410 | fill-color: allotments#5dbf80;
|
---|
| 3411 | }
|
---|
[7041] | 3412 | area[landuse=greenhouse_horticulture],
|
---|
[8045] | 3413 | area[landuse=plant_nursery] {
|
---|
[7041] | 3414 | fill-color: green#b1e0c2;
|
---|
| 3415 | }
|
---|
[13008] | 3416 | area[landuse=salt_pond] {
|
---|
| 3417 | fill-color: salt_pond#eeeeee;
|
---|
| 3418 | }
|
---|
[10798] | 3419 | area[landuse=aquaculture] {
|
---|
| 3420 | fill-color: aquaculture#189dff;
|
---|
| 3421 | }
|
---|
[8045] | 3422 | area[landuse=grass] {
|
---|
| 3423 | fill-color: grass#97ca96;
|
---|
| 3424 | }
|
---|
[7041] | 3425 | area[landuse=residential] {
|
---|
| 3426 | fill-color: residential#f0f0f0;
|
---|
| 3427 | }
|
---|
| 3428 | area[landuse=garages] {
|
---|
[7409] | 3429 | fill-color: garages#d6c8aa;
|
---|
[7041] | 3430 | }
|
---|
| 3431 | area[landuse=farmyard] {
|
---|
| 3432 | fill-color: farmyard#f0f0f0;
|
---|
| 3433 | }
|
---|
| 3434 | area[landuse=retail],
|
---|
| 3435 | area[landuse=commercial] {
|
---|
| 3436 | fill-color: retail#ffc4ee;
|
---|
| 3437 | }
|
---|
| 3438 | area[landuse=industrial] {
|
---|
| 3439 | fill-color: industrial#ecd8ff;
|
---|
| 3440 | }
|
---|
| 3441 | area[landuse=brownfield] {
|
---|
| 3442 | fill-color: brownfield#ecba32;
|
---|
| 3443 | }
|
---|
| 3444 | area[landuse=greenfield] {
|
---|
| 3445 | fill-color: greenfield#b1ec5c;
|
---|
| 3446 | }
|
---|
| 3447 | area[landuse=railway] {
|
---|
| 3448 | fill-color: railland#888888;
|
---|
| 3449 | }
|
---|
| 3450 | area[landuse=construction] {
|
---|
| 3451 | fill-color: construction#ffff00;
|
---|
| 3452 | }
|
---|
| 3453 | way[landuse=construction] {
|
---|
| 3454 | width: 1;
|
---|
| 3455 | color: construction#ffff00;
|
---|
| 3456 | dashes: 9,9;
|
---|
| 3457 | }
|
---|
| 3458 | area[landuse=military] {
|
---|
| 3459 | fill-color: military#b62c2c;
|
---|
| 3460 | }
|
---|
[7311] | 3461 | area[landuse=religious] {
|
---|
| 3462 | fill-color: religious#ffd454;
|
---|
| 3463 | }
|
---|
[7041] | 3464 | area[landuse=cemetery] {
|
---|
| 3465 | fill-color: cemetery#b1efc8;
|
---|
| 3466 | }
|
---|
| 3467 | area[landuse=village_green] {
|
---|
| 3468 | fill-color: green#b1e0c2;
|
---|
| 3469 | }
|
---|
| 3470 | area[landuse=recreation_ground] {
|
---|
| 3471 | fill-color: green#b1e0c2;
|
---|
| 3472 | }
|
---|
[7711] | 3473 | node[landuse] {
|
---|
[10706] | 3474 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 3475 | set icon_z17;
|
---|
[7041] | 3476 | }
|
---|
| 3477 |
|
---|
| 3478 | /*****************/
|
---|
| 3479 | /* military tags */
|
---|
| 3480 | /*****************/
|
---|
| 3481 |
|
---|
| 3482 | area[military=airfield],
|
---|
| 3483 | area[military=bunker],
|
---|
| 3484 | area[military=barracks],
|
---|
| 3485 | area[military=danger_area],
|
---|
| 3486 | area[military=range] {
|
---|
| 3487 | fill-color: military#b62c2c;
|
---|
| 3488 | }
|
---|
| 3489 | node[military=airfield] {
|
---|
[10706] | 3490 | icon-image: "presets/transport/airport/airfield.svg";
|
---|
[7454] | 3491 | set icon_z17;
|
---|
[7041] | 3492 | }
|
---|
| 3493 | node[military=bunker] {
|
---|
[10706] | 3494 | icon-image: "presets/landmark/bunker.svg";
|
---|
[7454] | 3495 | set icon_z17;
|
---|
[7041] | 3496 | }
|
---|
[9892] | 3497 | node[military=barracks][!is_prop_set(icon-image)] {
|
---|
[10706] | 3498 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7454] | 3499 | set icon_z17;
|
---|
[7041] | 3500 | }
|
---|
| 3501 | node[military=danger_area] {
|
---|
[10706] | 3502 | icon-image: "presets/misc/danger.svg";
|
---|
[7454] | 3503 | set icon_z17;
|
---|
[7041] | 3504 | }
|
---|
| 3505 | node[military=range] {
|
---|
[10706] | 3506 | icon-image: "presets/sport/range.svg";
|
---|
[7454] | 3507 | set icon_z17;
|
---|
[7041] | 3508 | }
|
---|
| 3509 |
|
---|
| 3510 | /****************/
|
---|
| 3511 | /* railway tags */
|
---|
| 3512 | /****************/
|
---|
| 3513 |
|
---|
[10429] | 3514 | area[railway=station] {
|
---|
[7041] | 3515 | fill-color: railwaypoint#f7efb7;
|
---|
| 3516 | }
|
---|
[10429] | 3517 | node[railway=station] {
|
---|
[10706] | 3518 | icon-image: "presets/transport/railway_station.svg";
|
---|
[7454] | 3519 | set icon_z17;
|
---|
[7041] | 3520 | }
|
---|
| 3521 | node[railway=halt] {
|
---|
[10808] | 3522 | icon-image: "presets/transport/railway_halt.svg";
|
---|
[7454] | 3523 | set icon_z17;
|
---|
[7041] | 3524 | }
|
---|
| 3525 | node[railway=tram_stop] {
|
---|
[10706] | 3526 | icon-image: "presets/transport/tram.svg";
|
---|
[7454] | 3527 | set icon_z17;
|
---|
[7041] | 3528 | }
|
---|
| 3529 | node[railway=subway_entrance] {
|
---|
[10808] | 3530 | icon-image: "presets/transport/underground.svg";
|
---|
[7454] | 3531 | set icon_z17;
|
---|
[7041] | 3532 | }
|
---|
| 3533 | node[railway=crossing] {
|
---|
[10565] | 3534 | icon-image: "presets/transport/railway/crossing.svg";
|
---|
[7454] | 3535 | set icon_z17;
|
---|
[7041] | 3536 | }
|
---|
| 3537 | node[railway=level_crossing] {
|
---|
[10565] | 3538 | icon-image: "presets/transport/railway/level_crossing.svg";
|
---|
[7454] | 3539 | set icon_z17;
|
---|
[7041] | 3540 | }
|
---|
| 3541 | way[railway=rail] {
|
---|
| 3542 | width: 2;
|
---|
| 3543 | color: rail#404040;
|
---|
| 3544 | dashes: 9,9;
|
---|
| 3545 | dashes-background-color: raildashed#ffffff;
|
---|
| 3546 | }
|
---|
[10091] | 3547 | way[railway=rail][service=crossover],
|
---|
[7041] | 3548 | way[railway=rail][service=siding] {
|
---|
| 3549 | width: 1;
|
---|
| 3550 | }
|
---|
| 3551 | way[railway=rail][service=yard],
|
---|
| 3552 | way[railway=rail][service=spur] {
|
---|
| 3553 | width: 1;
|
---|
[10091] | 3554 | color: railyard#552200;
|
---|
[7041] | 3555 | }
|
---|
| 3556 | /* draw tram on top of other way (highway=*) or
|
---|
| 3557 | as a standalone style */
|
---|
[10091] | 3558 | way[highway][railway=tram]::core_railway,
|
---|
| 3559 | way[!highway][railway=tram] {
|
---|
[7041] | 3560 | object-z-index: 1;
|
---|
| 3561 | modifier: false; /* don't draw default way if there is no line on default layer */
|
---|
| 3562 | width: 1;
|
---|
| 3563 | color: railover#202020;
|
---|
| 3564 | dashes: 9,9;
|
---|
| 3565 | casing-width: 1;
|
---|
| 3566 | casing-color: otherrail#808080;
|
---|
| 3567 | casing-linecap: round;
|
---|
| 3568 | casing-dashes: 9,9;
|
---|
| 3569 | }
|
---|
[10091] | 3570 | way[highway][railway=tram][service=crossover]::core_railway,
|
---|
| 3571 | way[!highway][railway=tram][service=crossover],
|
---|
| 3572 | way[highway][railway=tram][service=siding]::core_railway,
|
---|
| 3573 | way[!highway][railway=tram][service=siding],
|
---|
| 3574 | way[highway][railway=tram][service=yard]::core_railway,
|
---|
| 3575 | way[!highway][railway=tram][service=yard],
|
---|
| 3576 | way[highway][railway=tram][service=spur]::core_railway,
|
---|
| 3577 | way[!highway][railway=tram][service=spur] {
|
---|
| 3578 | dashes: 6,6;
|
---|
| 3579 | casing-dashes: 6,6;
|
---|
| 3580 | }
|
---|
| 3581 |
|
---|
[7041] | 3582 | way[railway=light_rail] {
|
---|
| 3583 | width: 2;
|
---|
| 3584 | color: otherrail#808080;
|
---|
| 3585 | dashes: 9,9;
|
---|
| 3586 | }
|
---|
| 3587 | way[railway=subway] {
|
---|
| 3588 | width: 1;
|
---|
| 3589 | color: subway#606060;
|
---|
| 3590 | dashes: 9,9;
|
---|
| 3591 | }
|
---|
| 3592 | way[railway=preserved] {
|
---|
| 3593 | width: 1;
|
---|
| 3594 | color: oldrail#404040;
|
---|
| 3595 | dashes: 9,9;
|
---|
| 3596 | }
|
---|
[10091] | 3597 | way[railway=light_rail][service=crossover],
|
---|
| 3598 | way[railway=light_rail][service=siding],
|
---|
| 3599 | way[railway=light_rail][service=yard],
|
---|
| 3600 | way[railway=light_rail][service=spur],
|
---|
| 3601 | way[railway=subway][service=crossover],
|
---|
| 3602 | way[railway=subway][service=siding],
|
---|
| 3603 | way[railway=subway][service=yard],
|
---|
| 3604 | way[railway=subway][service=spur],
|
---|
| 3605 | way[railway=preserved][service=crossover],
|
---|
| 3606 | way[railway=preserved][service=siding],
|
---|
| 3607 | way[railway=preserved][service=yard],
|
---|
| 3608 | way[railway=preserved][service=spur] {
|
---|
| 3609 | dashes: 6,6;
|
---|
| 3610 | }
|
---|
[7041] | 3611 | /* disused often appears together with highway=xy */
|
---|
| 3612 | /* -> draw on separate layer with higher z-index, but use */
|
---|
| 3613 | /* modifier: false; to suppress default line when used alone. */
|
---|
[7612] | 3614 | /* use default layer when used without highway=* to display bridge correctly */
|
---|
| 3615 | way[railway=disused][highway]::core_railway,
|
---|
| 3616 | way[railway=disused][!highway],
|
---|
| 3617 | way[railway=abandoned][highway]::core_railway,
|
---|
| 3618 | way[railway=abandoned][!highway] {
|
---|
[7041] | 3619 | width: 1;
|
---|
| 3620 | modifier: false;
|
---|
| 3621 | z-index: 1;
|
---|
| 3622 | color: oldrail#404040;
|
---|
| 3623 | dashes: 9,9;
|
---|
| 3624 | }
|
---|
| 3625 | way[railway=narrow_gauge],
|
---|
| 3626 | way[railway=monorail] {
|
---|
| 3627 | width: 1;
|
---|
| 3628 | color: rail#404040;
|
---|
| 3629 | dashes: 9,9;
|
---|
| 3630 | }
|
---|
[10091] | 3631 | way[railway=narrow_gauge][service=crossover],
|
---|
| 3632 | way[railway=narrow_gauge][service=siding],
|
---|
| 3633 | way[railway=narrow_gauge][service=yard],
|
---|
| 3634 | way[railway=narrow_gauge][service=spur],
|
---|
| 3635 | way[railway=monorail][service=crossover],
|
---|
| 3636 | way[railway=monorail][service=siding],
|
---|
| 3637 | way[railway=monorail][service=yard],
|
---|
| 3638 | way[railway=monorail][service=spur] {
|
---|
| 3639 | dashes: 6,6;
|
---|
| 3640 | }
|
---|
[7977] | 3641 | area[railway=turntable] {
|
---|
[7041] | 3642 | fill-color: rail#404040;
|
---|
| 3643 | }
|
---|
| 3644 | node[railway=turntable] {
|
---|
[10565] | 3645 | icon-image: "presets/transport/railway/turntable.svg";
|
---|
[7454] | 3646 | set icon_z17;
|
---|
[7041] | 3647 | }
|
---|
| 3648 | node[railway=buffer_stop] {
|
---|
[10565] | 3649 | icon-image: "presets/transport/railway/buffer_stop.svg";
|
---|
[7454] | 3650 | set icon_z17;
|
---|
[7041] | 3651 | }
|
---|
| 3652 | area[railway=platform]:closed {
|
---|
| 3653 | fill-color: rail#404040;
|
---|
| 3654 | }
|
---|
| 3655 | way[railway=platform] {
|
---|
| 3656 | width: 2;
|
---|
| 3657 | color: rail#404040;
|
---|
| 3658 | }
|
---|
| 3659 | way[railway=funicular] {
|
---|
| 3660 | width: 1;
|
---|
| 3661 | color: rail#404040;
|
---|
| 3662 | dashes: 9,9;
|
---|
| 3663 | }
|
---|
[7977] | 3664 | node[railway=switch] {
|
---|
[10565] | 3665 | icon-image: "presets/transport/railway/switch.svg";
|
---|
[7977] | 3666 | set icon_z17;
|
---|
| 3667 | }
|
---|
[15188] | 3668 | node[railway=railway_crossing] {
|
---|
| 3669 | icon-image: "presets/transport/railway/railway_crossing.svg";
|
---|
| 3670 | set icon_z17;
|
---|
| 3671 | }
|
---|
[9092] | 3672 | node[railway=signal] {
|
---|
[10565] | 3673 | icon-image: "presets/transport/railway/signal.svg";
|
---|
[9092] | 3674 | set icon_z17;
|
---|
| 3675 | }
|
---|
[8725] | 3676 | node[railway=milestone] {
|
---|
[10565] | 3677 | icon-image: "presets/transport/railway/milestone.svg";
|
---|
[8725] | 3678 | set icon_z17;
|
---|
| 3679 | }
|
---|
[7041] | 3680 | node[railway=rail], node[railway=tram], node[railway=light_rail],
|
---|
| 3681 | node[railway=subway], node[railway=preserved],
|
---|
| 3682 | node[railway=disused], node[railway=abandoned],
|
---|
| 3683 | node[railway=narrow_gauge], node[railway=monorail],
|
---|
| 3684 | node[railway=platform], node[railway=funicular],
|
---|
| 3685 | node[service=yard], node[service=siding], node[service=spur] {
|
---|
[10706] | 3686 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 3687 | set icon_z17;
|
---|
[7041] | 3688 | }
|
---|
[7638] | 3689 | way[railway=construction][!highway] {
|
---|
| 3690 | width: 1;
|
---|
| 3691 | color: construction#ffff00;
|
---|
| 3692 | dashes: 9,9;
|
---|
| 3693 | }
|
---|
| 3694 | way[railway=construction][construction=rail] {
|
---|
| 3695 | width: 2;
|
---|
| 3696 | color: rail#404040;
|
---|
| 3697 | dashes: 9,9;
|
---|
| 3698 | dashes-background-color: construction#ffff00;
|
---|
| 3699 | }
|
---|
| 3700 | way[railway=construction][construction=light_rail] {
|
---|
| 3701 | width: 2;
|
---|
| 3702 | }
|
---|
| 3703 | way[railway=construction][construction=tram][highway]::core_railway,
|
---|
| 3704 | way[railway=construction][construction=tram][!highway] {
|
---|
| 3705 | z-index: 1;
|
---|
| 3706 | width: 1;
|
---|
| 3707 | color: railover#202020;
|
---|
| 3708 | dashes: 9,9;
|
---|
| 3709 | casing-width: 1;
|
---|
| 3710 | casing-color: construction#ffff00;
|
---|
| 3711 | casing-linecap: round;
|
---|
| 3712 | casing-dashes: 9,9;
|
---|
| 3713 | }
|
---|
[7041] | 3714 |
|
---|
| 3715 | /****************/
|
---|
| 3716 | /* aeroway tags */
|
---|
| 3717 | /****************/
|
---|
| 3718 |
|
---|
[7977] | 3719 | area[aeroway=aerodrome] {
|
---|
[7041] | 3720 | fill-color: aeroway#660000;
|
---|
| 3721 | width: 2;
|
---|
| 3722 | dashes: 9,9;
|
---|
| 3723 | }
|
---|
[9048] | 3724 | node[aeroway=aerodrome][military!=airfield] {
|
---|
[10706] | 3725 | icon-image: "presets/transport/airport.svg";
|
---|
[7454] | 3726 | set icon_z17;
|
---|
[7041] | 3727 | }
|
---|
| 3728 | area[aeroway=terminal] {
|
---|
| 3729 | fill-color: terminal#bb0000;
|
---|
| 3730 | }
|
---|
| 3731 | node[aeroway=terminal] {
|
---|
[10706] | 3732 | icon-image: "presets/transport/airport/terminal.svg";
|
---|
[7454] | 3733 | set icon_z17;
|
---|
[7041] | 3734 | }
|
---|
| 3735 | area[aeroway=helipad] {
|
---|
| 3736 | fill-color: aeroway_dark#330000;
|
---|
| 3737 | }
|
---|
| 3738 | node[aeroway=helipad] {
|
---|
[10706] | 3739 | icon-image: "presets/transport/airport/helipad.svg";
|
---|
[7454] | 3740 | set icon_z17;
|
---|
[7041] | 3741 | }
|
---|
[7603] | 3742 | area[aeroway=runway]:closed {
|
---|
[7440] | 3743 | fill-color: aeroway_dark#330000;
|
---|
| 3744 | }
|
---|
[7041] | 3745 | way[aeroway=runway] {
|
---|
| 3746 | width: 3;
|
---|
| 3747 | color: aeroway_dark#330000;
|
---|
| 3748 | }
|
---|
[7603] | 3749 | area[aeroway=taxiway]:closed {
|
---|
[7440] | 3750 | fill-color: aeroway#660000;
|
---|
| 3751 | }
|
---|
[7041] | 3752 | way[aeroway=taxiway] {
|
---|
[8062] | 3753 | width: 2;
|
---|
| 3754 | color: aeroway#660000;
|
---|
| 3755 | }
|
---|
| 3756 | way[aeroway=parking_position] {
|
---|
| 3757 | width: 1;
|
---|
| 3758 | color: aeroway#660000;
|
---|
| 3759 | }
|
---|
[8021] | 3760 | node[aeroway=parking_position] {
|
---|
[10808] | 3761 | icon-image: "presets/transport/airport/parking_position.svg";
|
---|
[8021] | 3762 | set icon_z17;
|
---|
[7041] | 3763 | }
|
---|
[8062] | 3764 | area[aeroway=apron],
|
---|
| 3765 | area[aeroway=hangar] {
|
---|
| 3766 | fill-color: aeroway_light#990000;
|
---|
[7041] | 3767 | }
|
---|
[7977] | 3768 | node[aeroway=apron],
|
---|
| 3769 | node[aeroway=runway],
|
---|
| 3770 | node[aeroway=taxiway] {
|
---|
[10706] | 3771 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 3772 | set icon_z17;
|
---|
[7041] | 3773 | }
|
---|
[11005] | 3774 | node[aeroway=holding_position] {
|
---|
| 3775 | icon-image: "presets/transport/airport/holding_position.svg";
|
---|
| 3776 | set icon_z17;
|
---|
| 3777 | }
|
---|
[7041] | 3778 | node[aeroway=hangar] {
|
---|
[10706] | 3779 | icon-image: "presets/transport/airport/hangar.svg";
|
---|
[7454] | 3780 | set icon_z17;
|
---|
[8062] | 3781 | }
|
---|
| 3782 | node[aeroway=gate] {
|
---|
[10706] | 3783 | icon-image: "presets/transport/airport/gate.svg";
|
---|
[8062] | 3784 | set icon_z17;
|
---|
| 3785 | }
|
---|
[12417] | 3786 | node[airmark=beacon] {
|
---|
| 3787 | icon-image: "presets/transport/airport/airmark_beacon.svg";
|
---|
| 3788 | set icon_z17;
|
---|
| 3789 | }
|
---|
| 3790 | node[aeroway=navigationaid] {
|
---|
| 3791 | icon-image: "presets/transport/airport/navigationaid.svg";
|
---|
| 3792 | set icon_z17;
|
---|
| 3793 | }
|
---|
[7041] | 3794 | node[aeroway=windsock] {
|
---|
[10706] | 3795 | icon-image: "presets/transport/airport/windsock.svg";
|
---|
[7454] | 3796 | set icon_z17;
|
---|
[7041] | 3797 | }
|
---|
| 3798 |
|
---|
| 3799 | /******************/
|
---|
| 3800 | /* aerialway tags */
|
---|
| 3801 | /******************/
|
---|
| 3802 |
|
---|
| 3803 | way[aerialway=cable_car],
|
---|
| 3804 | way[aerialway=gondola] {
|
---|
| 3805 | width: 1;
|
---|
| 3806 | color: aerialway#663300;
|
---|
| 3807 | dashes: 9,9;
|
---|
| 3808 | }
|
---|
| 3809 | way[aerialway=chair_lift] {
|
---|
| 3810 | width: 1;
|
---|
| 3811 | color: aerialway#663300;
|
---|
| 3812 | dashes: 6,6;
|
---|
| 3813 | }
|
---|
[7915] | 3814 | way[aerialway=mixed_lift] {
|
---|
| 3815 | width: 1;
|
---|
| 3816 | color: aerialway#663300;
|
---|
| 3817 | dashes: 6,6,9,6;
|
---|
[7041] | 3818 | }
|
---|
[7915] | 3819 | way[aerialway=j-bar],
|
---|
| 3820 | way[aerialway=t-bar],
|
---|
| 3821 | way[aerialway=platter],
|
---|
| 3822 | way[aerialway=rope_tow],
|
---|
[7041] | 3823 | way[aerialway=drag_lift] {
|
---|
| 3824 | width: 1;
|
---|
| 3825 | color: aerialway#663300;
|
---|
| 3826 | dashes: 3,3;
|
---|
| 3827 | }
|
---|
[7915] | 3828 | way[aerialway=magic_carpet] {
|
---|
| 3829 | width: 1;
|
---|
| 3830 | color: aerialway#663300;
|
---|
| 3831 | dashes: 3,3;
|
---|
[7041] | 3832 | }
|
---|
[7915] | 3833 | way[aerialway=goods] {
|
---|
| 3834 | width: 1;
|
---|
| 3835 | color: aerialway#663300;
|
---|
| 3836 | dashes: 2,2;
|
---|
| 3837 | }
|
---|
| 3838 | area[aerialway=station] {
|
---|
[7041] | 3839 | fill-color: aerialway#663300;
|
---|
| 3840 | }
|
---|
| 3841 | node[aerialway=station] {
|
---|
[10706] | 3842 | icon-image: "presets/transport/aerialway/station.svg";
|
---|
[7454] | 3843 | set icon_z17;
|
---|
[7041] | 3844 | }
|
---|
| 3845 | node[aerialway=pylon] {
|
---|
[10565] | 3846 | icon-image: "presets/transport/aerialway/pylon.svg";
|
---|
[7454] | 3847 | set icon_z17;
|
---|
[7041] | 3848 | }
|
---|
[7915] | 3849 | node[aerialway=cable_car],
|
---|
| 3850 | node[aerialway=gondola],
|
---|
| 3851 | node[aerialway=chair_lift],
|
---|
| 3852 | node[aerialway=mixed_lift],
|
---|
| 3853 | node[aerialway=drag_lift],
|
---|
| 3854 | node[aerialway=t-bar],
|
---|
| 3855 | node[aerialway=j-bar],
|
---|
| 3856 | node[aerialway=platter],
|
---|
| 3857 | node[aerialway=magic_carpet],
|
---|
| 3858 | node[aerialway=rope_tow],
|
---|
[7041] | 3859 | node[aerialway=goods] {
|
---|
[10706] | 3860 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 3861 | set icon_z17;
|
---|
[7041] | 3862 | }
|
---|
| 3863 |
|
---|
[10429] | 3864 | /*************************/
|
---|
| 3865 | /* public_transport tags */
|
---|
| 3866 | /*************************/
|
---|
| 3867 |
|
---|
| 3868 | node[highway=bus_stop] {
|
---|
[10808] | 3869 | icon-image: "presets/transport/bus_small.svg";
|
---|
[10429] | 3870 | set icon_z17;
|
---|
| 3871 | }
|
---|
| 3872 | node[public_transport=stop_position] {
|
---|
[10808] | 3873 | icon-image: "presets/transport/stop_position.svg";
|
---|
[10429] | 3874 | set icon_z17;
|
---|
| 3875 | }
|
---|
[10502] | 3876 | node[public_transport=stop_position][share_taxi=yes] {
|
---|
[10565] | 3877 | icon-image: "presets/transport/share_taxi.svg";
|
---|
[10502] | 3878 | set icon_z17;
|
---|
| 3879 | }
|
---|
[10450] | 3880 | node[public_transport=stop_position][bus=yes] {
|
---|
[10565] | 3881 | icon-image: "presets/transport/bus.svg";
|
---|
[10450] | 3882 | set icon_z17;
|
---|
| 3883 | }
|
---|
[10429] | 3884 | node[public_transport=stop_position][train=yes] {
|
---|
[10565] | 3885 | icon-image: "presets/transport/train.svg";
|
---|
[10429] | 3886 | set icon_z17;
|
---|
| 3887 | }
|
---|
[12991] | 3888 | node[public_transport=stop_position][light_rail=yes] {
|
---|
| 3889 | icon-image: "presets/transport/railway/light_rail.svg";
|
---|
| 3890 | set icon_z17;
|
---|
| 3891 | }
|
---|
[10450] | 3892 | node[public_transport=stop_position][tram=yes] {
|
---|
[10565] | 3893 | icon-image: "presets/transport/railway/tram.svg";
|
---|
[10450] | 3894 | set icon_z17;
|
---|
| 3895 | }
|
---|
[10429] | 3896 | node[public_transport=stop_position][subway=yes] {
|
---|
[10565] | 3897 | icon-image: "presets/transport/railway/subway.svg";
|
---|
[10429] | 3898 | set icon_z17;
|
---|
| 3899 | }
|
---|
| 3900 | node[public_transport=stop_position][monorail=yes] {
|
---|
[10565] | 3901 | icon-image: "presets/transport/railway/monorail.svg";
|
---|
[10429] | 3902 | set icon_z17;
|
---|
| 3903 | }
|
---|
| 3904 | node[public_transport=stop_position][trolleybus=yes] {
|
---|
[10565] | 3905 | icon-image: "presets/transport/trolleybus.svg";
|
---|
[10429] | 3906 | set icon_z17;
|
---|
| 3907 | }
|
---|
[10501] | 3908 | node[public_transport=stop_position][funicular=yes] {
|
---|
[10565] | 3909 | icon-image: "presets/transport/railway/funicular.svg";
|
---|
[10501] | 3910 | set icon_z17;
|
---|
| 3911 | }
|
---|
[10429] | 3912 | node[public_transport=stop_position][aerialway=yes] {
|
---|
[10706] | 3913 | icon-image: "presets/transport/aerialway/station.svg";
|
---|
[10429] | 3914 | set icon_z17;
|
---|
| 3915 | }
|
---|
| 3916 | node[public_transport=stop_position][ferry=yes] {
|
---|
[10565] | 3917 | icon-image: "presets/nautical/ferry.svg";
|
---|
[10429] | 3918 | set icon_z17;
|
---|
| 3919 | }
|
---|
| 3920 | area[public_transport=platform]:closed {
|
---|
| 3921 | fill-color: service#809bc0;
|
---|
| 3922 | }
|
---|
| 3923 | way[public_transport=platform]!:closed {
|
---|
| 3924 | width: 3;
|
---|
| 3925 | color: service#809bc0;
|
---|
| 3926 | dashes: 12,3;
|
---|
| 3927 | }
|
---|
| 3928 | node[public_transport=platform] {
|
---|
[10565] | 3929 | icon-image: "presets/transport/platform.svg";
|
---|
[10429] | 3930 | set icon_z17;
|
---|
| 3931 | }
|
---|
| 3932 | area[public_transport=station] {
|
---|
| 3933 | fill-color: railwaypoint#f7efb7;
|
---|
| 3934 | }
|
---|
| 3935 | node[public_transport=station] {
|
---|
[10565] | 3936 | icon-image: "presets/transport/station.svg";
|
---|
[10429] | 3937 | set icon_z17;
|
---|
| 3938 | }
|
---|
| 3939 |
|
---|
[7581] | 3940 | /**************/
|
---|
| 3941 | /* sport tags */
|
---|
| 3942 | /**************/
|
---|
| 3943 |
|
---|
| 3944 | area[sport="9pin"],
|
---|
| 3945 | area[sport="10pin"],
|
---|
| 3946 | area[sport=soccer],
|
---|
| 3947 | area[sport=australian_football],
|
---|
| 3948 | area[sport=american_football],
|
---|
| 3949 | area[sport=canadian_football],
|
---|
[7724] | 3950 | area[sport=gaelic_games],
|
---|
[7581] | 3951 | area[sport=rugby_league],
|
---|
| 3952 | area[sport=rugby_union] {
|
---|
| 3953 | fill-color: sport#bde3cb;
|
---|
| 3954 | }
|
---|
| 3955 | node[sport="9pin"] {
|
---|
[10808] | 3956 | icon-image: "presets/sport/9pin.svg";
|
---|
[7581] | 3957 | set icon_z17;
|
---|
| 3958 | }
|
---|
| 3959 | node[sport="10pin"] {
|
---|
[10706] | 3960 | icon-image: "presets/sport/10pin.svg";
|
---|
[7581] | 3961 | set icon_z17;
|
---|
| 3962 | }
|
---|
| 3963 | node[sport=soccer],
|
---|
[7724] | 3964 | node[sport=gaelic_games] {
|
---|
[10706] | 3965 | icon-image: "presets/sport/soccer.svg";
|
---|
[7581] | 3966 | set icon_z17;
|
---|
| 3967 | }
|
---|
[7724] | 3968 | node[sport=australian_football],
|
---|
| 3969 | node[sport=american_football],
|
---|
| 3970 | node[sport=canadian_football],
|
---|
[7581] | 3971 | node[sport=rugby_league],
|
---|
| 3972 | node[sport=rugby_union] {
|
---|
[10706] | 3973 | icon-image: "presets/sport/football.svg";
|
---|
[7581] | 3974 | set icon_z17;
|
---|
| 3975 | }
|
---|
| 3976 | area[sport=baseball],
|
---|
| 3977 | area[sport=basketball],
|
---|
| 3978 | area[sport=boules],
|
---|
| 3979 | area[sport=bowls],
|
---|
| 3980 | area[sport=canoe],
|
---|
| 3981 | area[sport=chess],
|
---|
| 3982 | area[sport=climbing]:closed,
|
---|
| 3983 | area[sport=cricket],
|
---|
| 3984 | area[sport=croquet] {
|
---|
| 3985 | fill-color: sport#bde3cb;
|
---|
| 3986 | }
|
---|
| 3987 | node[sport=baseball] {
|
---|
[10706] | 3988 | icon-image: "presets/sport/baseball.svg";
|
---|
[7581] | 3989 | set icon_z17;
|
---|
| 3990 | }
|
---|
| 3991 | node[sport=basketball] {
|
---|
[10706] | 3992 | icon-image: "presets/sport/basketball.svg";
|
---|
[7581] | 3993 | set icon_z17;
|
---|
| 3994 | }
|
---|
| 3995 | node[sport=boules] {
|
---|
[10706] | 3996 | icon-image: "presets/sport/boule.svg";
|
---|
[7581] | 3997 | set icon_z17;
|
---|
| 3998 | }
|
---|
| 3999 | node[sport=bowls] {
|
---|
[10706] | 4000 | icon-image: "presets/sport/boule.svg";
|
---|
[7581] | 4001 | set icon_z17;
|
---|
| 4002 | }
|
---|
| 4003 | node[sport=canoe] {
|
---|
[10565] | 4004 | icon-image: "presets/sport/canoe.svg";
|
---|
[7581] | 4005 | set icon_z17;
|
---|
| 4006 | }
|
---|
| 4007 | node[sport=chess] {
|
---|
[10808] | 4008 | icon-image: "presets/sport/chess.svg";
|
---|
[7581] | 4009 | set icon_z17;
|
---|
| 4010 | }
|
---|
| 4011 | node[sport=climbing] {
|
---|
[10706] | 4012 | icon-image: "presets/sport/climbing.svg";
|
---|
[7581] | 4013 | set icon_z17;
|
---|
| 4014 | }
|
---|
| 4015 | node[sport=cricket] {
|
---|
[10706] | 4016 | icon-image: "presets/sport/cricket.svg";
|
---|
[7581] | 4017 | set icon_z17;
|
---|
| 4018 | }
|
---|
| 4019 | node[sport=croquet] {
|
---|
[10706] | 4020 | icon-image: "presets/sport/croquet.svg";
|
---|
[7581] | 4021 | set icon_z17;
|
---|
| 4022 | }
|
---|
| 4023 | area[sport=cycling],
|
---|
| 4024 | area[sport=dog_racing],
|
---|
| 4025 | area[sport=equestrian],
|
---|
| 4026 | area[sport=golf],
|
---|
| 4027 | area[sport=gymnastics],
|
---|
[8383] | 4028 | area[sport=field_hockey],
|
---|
| 4029 | area[sport=ice_hockey],
|
---|
[7581] | 4030 | area[sport=horse_racing],
|
---|
[8279] | 4031 | area[sport=karting][highway!=raceway],
|
---|
| 4032 | area[sport=karting][highway=raceway][area=yes],
|
---|
| 4033 | area[sport=motocross][highway!=raceway],
|
---|
| 4034 | area[sport=motocross][highway=raceway][area=yes],
|
---|
| 4035 | area[sport=motor][highway!=raceway],
|
---|
| 4036 | area[sport=motor][highway=raceway][area=yes] {
|
---|
[7581] | 4037 | fill-color: sport#bde3cb;
|
---|
| 4038 | }
|
---|
| 4039 | node[sport=cycling] {
|
---|
[10706] | 4040 | icon-image: "presets/sport/cycling.svg";
|
---|
[7581] | 4041 | set icon_z17;
|
---|
| 4042 | }
|
---|
| 4043 | node[sport=dog_racing] {
|
---|
[10808] | 4044 | icon-image: "presets/sport/dog_racing.svg";
|
---|
[7581] | 4045 | set icon_z17;
|
---|
| 4046 | }
|
---|
| 4047 | node[sport=equestrian] {
|
---|
[10808] | 4048 | icon-image: "presets/sport/equestrian.svg";
|
---|
[7581] | 4049 | set icon_z17;
|
---|
| 4050 | }
|
---|
| 4051 | node[sport=golf] {
|
---|
[10565] | 4052 | icon-image: "presets/sport/golf.svg";
|
---|
[7581] | 4053 | set icon_z17;
|
---|
| 4054 | }
|
---|
| 4055 | node[sport=gymnastics] {
|
---|
[10706] | 4056 | icon-image: "presets/sport/gymnastics.svg";
|
---|
[7581] | 4057 | set icon_z17;
|
---|
| 4058 | }
|
---|
[8383] | 4059 | node[sport=field_hockey] {
|
---|
[10808] | 4060 | icon-image: "presets/sport/field_hockey.svg";
|
---|
[7581] | 4061 | set icon_z17;
|
---|
| 4062 | }
|
---|
[8383] | 4063 | node[sport=ice_hockey] {
|
---|
[10808] | 4064 | icon-image: "presets/sport/ice_hockey.svg";
|
---|
[8383] | 4065 | set icon_z17;
|
---|
| 4066 | }
|
---|
[7581] | 4067 | node[sport=horse_racing] {
|
---|
[10706] | 4068 | icon-image: "presets/sport/riding.svg";
|
---|
[7581] | 4069 | set icon_z17;
|
---|
| 4070 | }
|
---|
| 4071 | node[sport=karting] {
|
---|
[10808] | 4072 | icon-image: "presets/sport/karting.svg";
|
---|
[7581] | 4073 | set icon_z17;
|
---|
| 4074 | }
|
---|
| 4075 | node[sport=motocross] {
|
---|
[10706] | 4076 | icon-image: "presets/sport/motocross.svg";
|
---|
[7581] | 4077 | set icon_z17;
|
---|
| 4078 | }
|
---|
| 4079 | node[sport=motor] {
|
---|
[10808] | 4080 | icon-image: "presets/sport/motor.svg";
|
---|
[7581] | 4081 | set icon_z17;
|
---|
| 4082 | }
|
---|
[11153] | 4083 | area[sport=athletics] {
|
---|
| 4084 | fill-color: sport_athletics#cfebd7;
|
---|
| 4085 | }
|
---|
| 4086 | node[sport=athletics] {
|
---|
| 4087 | icon-image: "presets/sport/athletics.svg";
|
---|
| 4088 | set icon_z17;
|
---|
| 4089 | }
|
---|
| 4090 | area[sport=running] {
|
---|
| 4091 | fill-color: sport_running#cfebd8;
|
---|
| 4092 | }
|
---|
| 4093 | node[sport=running] {
|
---|
| 4094 | icon-image: "presets/sport/running.svg";
|
---|
| 4095 | set icon_z17;
|
---|
| 4096 | }
|
---|
| 4097 | area[sport=multi] {
|
---|
| 4098 | fill-color: sport_multi#cfebd9;
|
---|
| 4099 | }
|
---|
| 4100 | node[sport=multi] {
|
---|
| 4101 | icon-image: "presets/sport/multi.svg";
|
---|
| 4102 | set icon_z17;
|
---|
| 4103 | }
|
---|
[7581] | 4104 | area[sport=pelota],
|
---|
| 4105 | area[sport=racquet],
|
---|
[9835] | 4106 | area[sport=ice_skating],
|
---|
| 4107 | area[sport=roller_skating],
|
---|
[7581] | 4108 | area[sport=skateboard] {
|
---|
| 4109 | fill-color: sport#bde3cb;
|
---|
| 4110 | }
|
---|
| 4111 | node[sport=pelota] {
|
---|
[10808] | 4112 | icon-image: "presets/sport/pelota.svg";
|
---|
[7581] | 4113 | set icon_z17;
|
---|
| 4114 | }
|
---|
| 4115 | node[sport=racquet] {
|
---|
[10706] | 4116 | icon-image: "presets/sport/racquetball.svg";
|
---|
[7581] | 4117 | set icon_z17;
|
---|
| 4118 | }
|
---|
[9835] | 4119 | node[sport=ice_skating] {
|
---|
[10808] | 4120 | icon-image: "presets/sport/ice_skating.svg";
|
---|
[7581] | 4121 | set icon_z17;
|
---|
| 4122 | }
|
---|
[9835] | 4123 | node[sport=roller_skating] {
|
---|
[10565] | 4124 | icon-image: "presets/sport/roller_skating.svg";
|
---|
[9835] | 4125 | set icon_z17;
|
---|
| 4126 | }
|
---|
| 4127 | node[sport=skating] {
|
---|
[10706] | 4128 | icon-image: "presets/misc/deprecated.svg";
|
---|
[9835] | 4129 | set icon_z17;
|
---|
| 4130 | }
|
---|
[7581] | 4131 | node[sport=skateboard] {
|
---|
[10706] | 4132 | icon-image: "presets/sport/skateboard.svg";
|
---|
[7581] | 4133 | set icon_z17;
|
---|
| 4134 | }
|
---|
| 4135 | area[sport=swimming] {
|
---|
| 4136 | fill-color: swimming_pool#51c4ef;
|
---|
| 4137 | }
|
---|
| 4138 | node[sport=swimming] {
|
---|
[10706] | 4139 | icon-image: "presets/sport/swimming.svg";
|
---|
[7581] | 4140 | set icon_z17;
|
---|
| 4141 | }
|
---|
| 4142 | area[sport=table_tennis],
|
---|
| 4143 | area[sport=tennis],
|
---|
| 4144 | area[sport=paintball] {
|
---|
| 4145 | fill-color: sport#bde3cb;
|
---|
| 4146 | }
|
---|
| 4147 | node[sport=table_tennis] {
|
---|
[10706] | 4148 | icon-image: "presets/sport/table_tennis.svg";
|
---|
[7581] | 4149 | set icon_z17;
|
---|
| 4150 | }
|
---|
| 4151 | node[sport=tennis] {
|
---|
[10706] | 4152 | icon-image: "presets/sport/tennis.svg";
|
---|
[7581] | 4153 | set icon_z17;
|
---|
| 4154 | }
|
---|
[9892] | 4155 | node[sport=paintball][!is_prop_set(icon-image)] {
|
---|
[10706] | 4156 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7581] | 4157 | set icon_z17;
|
---|
| 4158 | }
|
---|
| 4159 | area[sport=squash],
|
---|
| 4160 | area[sport=shooting],
|
---|
| 4161 | area[sport=volleyball],
|
---|
| 4162 | area[sport=beachvolleyball],
|
---|
[8428] | 4163 | area[sport=billiards],
|
---|
[7581] | 4164 | area[sport=bowling],
|
---|
| 4165 | area[sport=handball],
|
---|
| 4166 | area[sport=rowing],
|
---|
| 4167 | area[sport=sailing],
|
---|
[7630] | 4168 | area[sport=scuba_diving],
|
---|
[7581] | 4169 | area[sport=badminton] {
|
---|
| 4170 | fill-color: sport#bde3cb;
|
---|
| 4171 | }
|
---|
[9892] | 4172 | node[sport=squash][!is_prop_set(icon-image)] {
|
---|
[10706] | 4173 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7581] | 4174 | set icon_z17;
|
---|
| 4175 | }
|
---|
| 4176 | node[sport=shooting] {
|
---|
[10706] | 4177 | icon-image: "presets/sport/range.svg";
|
---|
[7581] | 4178 | set icon_z17;
|
---|
| 4179 | }
|
---|
| 4180 | node[sport=volleyball] {
|
---|
[10706] | 4181 | icon-image: "presets/sport/volleyball.svg";
|
---|
[7581] | 4182 | set icon_z17;
|
---|
| 4183 | }
|
---|
| 4184 | node[sport=beachvolleyball] {
|
---|
[10808] | 4185 | icon-image: "presets/sport/beachvolleyball.svg";
|
---|
[7581] | 4186 | set icon_z17;
|
---|
| 4187 | }
|
---|
[8428] | 4188 | node[sport=billiards] {
|
---|
[10565] | 4189 | icon-image: "presets/sport/billiards.svg";
|
---|
[8428] | 4190 | set icon_z17;
|
---|
| 4191 | }
|
---|
[7581] | 4192 | node[sport=bowling] {
|
---|
[10808] | 4193 | icon-image: "presets/sport/9pin.svg";
|
---|
[7581] | 4194 | set icon_z17;
|
---|
| 4195 | }
|
---|
| 4196 | node[sport=handball] {
|
---|
[10706] | 4197 | icon-image: "presets/sport/handball.svg";
|
---|
[7581] | 4198 | set icon_z17;
|
---|
| 4199 | }
|
---|
| 4200 | node[sport=rowing] {
|
---|
[10706] | 4201 | icon-image: "presets/sport/rowing.svg";
|
---|
[7581] | 4202 | set icon_z17;
|
---|
| 4203 | }
|
---|
[9892] | 4204 | node[sport=sailing][!is_prop_set(icon-image)] {
|
---|
[10706] | 4205 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7581] | 4206 | set icon_z17;
|
---|
| 4207 | }
|
---|
[7630] | 4208 | node[sport=scuba_diving] {
|
---|
[10565] | 4209 | icon-image: "presets/sport/scuba_diving.svg";
|
---|
[7581] | 4210 | set icon_z17;
|
---|
| 4211 | }
|
---|
[9892] | 4212 | node[sport=badminton][!is_prop_set(icon-image)] {
|
---|
[10706] | 4213 | icon-image: "presets/misc/no_icon.svg";
|
---|
[7581] | 4214 | set icon_z17;
|
---|
| 4215 | }
|
---|
| 4216 | area[sport=archery],
|
---|
| 4217 | area[sport=fishing],
|
---|
| 4218 | area[sport=model_aerodrome],
|
---|
| 4219 | area[sport=rc_car] {
|
---|
| 4220 | fill-color: sport#bde3cb;
|
---|
| 4221 | }
|
---|
| 4222 | node[sport=archery] {
|
---|
[10706] | 4223 | icon-image: "presets/sport/archery.svg";
|
---|
[7581] | 4224 | set icon_z17;
|
---|
| 4225 | }
|
---|
| 4226 | node[sport=fishing] {
|
---|
[10808] | 4227 | icon-image: "presets/sport/fishing.svg";
|
---|
[7581] | 4228 | set icon_z17;
|
---|
| 4229 | }
|
---|
| 4230 | node[sport=model_aerodrome] {
|
---|
[10706] | 4231 | icon-image: "presets/transport/airport.svg";
|
---|
[7581] | 4232 | set icon_z17;
|
---|
| 4233 | }
|
---|
| 4234 | node[sport=rc_car] {
|
---|
[10706] | 4235 | icon-image: "presets/sport/rc_car.svg";
|
---|
[7581] | 4236 | set icon_z17;
|
---|
| 4237 | }
|
---|
| 4238 |
|
---|
[7041] | 4239 | /****************/
|
---|
| 4240 | /* natural tags */
|
---|
| 4241 | /****************/
|
---|
| 4242 |
|
---|
| 4243 | area[natural=spring] {
|
---|
| 4244 | fill-color: light_water#00005f;
|
---|
| 4245 | }
|
---|
| 4246 | node[natural=spring] {
|
---|
[10706] | 4247 | icon-image: "presets/landmark/spring.svg";
|
---|
[7454] | 4248 | set icon_z17;
|
---|
[7041] | 4249 | }
|
---|
| 4250 | node[natural=saddle] {
|
---|
[10706] | 4251 | icon-image: "presets/landmark/saddle.svg";
|
---|
[7470] | 4252 | set icon_z0;
|
---|
| 4253 | set text_z0;
|
---|
[7041] | 4254 | }
|
---|
| 4255 | node[natural=peak] {
|
---|
[10706] | 4256 | icon-image: "presets/landmark/peak.svg";
|
---|
[7470] | 4257 | set icon_z0;
|
---|
| 4258 | set text_z0;
|
---|
[7041] | 4259 | }
|
---|
[7460] | 4260 | node[natural=peak][tourism=viewpoint] {
|
---|
[10565] | 4261 | icon-image: "presets/sightseeing/peak_viewpoint.svg";
|
---|
[7470] | 4262 | set icon_z0;
|
---|
| 4263 | set text_z0;
|
---|
[7460] | 4264 | }
|
---|
[7041] | 4265 | area[natural=glacier] {
|
---|
| 4266 | fill-color: glacier#ffffff;
|
---|
| 4267 | }
|
---|
| 4268 | node[natural=volcano] {
|
---|
[10706] | 4269 | icon-image: "presets/landmark/volcano.svg";
|
---|
[7470] | 4270 | set icon_z0;
|
---|
| 4271 | set text_z0;
|
---|
[7041] | 4272 | }
|
---|
| 4273 | area[natural=cliff]:closed {
|
---|
| 4274 | fill-color: natural#002f00;
|
---|
| 4275 | }
|
---|
| 4276 | way[natural=cliff] {
|
---|
[10808] | 4277 | repeat-image: "presets/misc/cliff_pattern.svg";
|
---|
[7156] | 4278 | repeat-image-align: top;
|
---|
| 4279 | width: 1;
|
---|
[7454] | 4280 | color: #b2b2b2;
|
---|
[7041] | 4281 | }
|
---|
| 4282 | node[natural=cliff] {
|
---|
[10565] | 4283 | icon-image: "presets/misc/cliff.svg";
|
---|
[7454] | 4284 | set icon_z17;
|
---|
[7041] | 4285 | }
|
---|
[7735] | 4286 | way[natural=ridge] {
|
---|
| 4287 | width: 1;
|
---|
| 4288 | color: natural#002f00;
|
---|
| 4289 | }
|
---|
[8135] | 4290 | way[natural=valley] {
|
---|
| 4291 | width: 1;
|
---|
| 4292 | color: natural#002f00;
|
---|
| 4293 | }
|
---|
[7041] | 4294 | area[natural=scree] {
|
---|
[10996] | 4295 | fill-color: scree#c3c3c3;
|
---|
[7041] | 4296 | }
|
---|
[10996] | 4297 | area[natural=shingle] {
|
---|
| 4298 | fill-color: shingle#c3c3c3;
|
---|
| 4299 | }
|
---|
[7041] | 4300 | area[natural=scrub] {
|
---|
| 4301 | fill-color: scrub#007000;
|
---|
| 4302 | }
|
---|
| 4303 | area[natural=fell] {
|
---|
| 4304 | fill-color: natural#002f00;
|
---|
| 4305 | }
|
---|
| 4306 | area[natural=heath] {
|
---|
| 4307 | fill-color: heath#ffffc0;
|
---|
| 4308 | }
|
---|
| 4309 | way[natural=tree_row] {
|
---|
| 4310 | width: 2;
|
---|
| 4311 | color: woodarea#008000;
|
---|
| 4312 | }
|
---|
| 4313 | area[natural=wood] {
|
---|
| 4314 | fill-color: woodarea#008000;
|
---|
| 4315 | }
|
---|
| 4316 | area[natural=grassland] {
|
---|
| 4317 | fill-color: green#b1e0c2;
|
---|
| 4318 | }
|
---|
| 4319 | area[natural=wetland] {
|
---|
| 4320 | fill-color: marsh#4f4ff3;
|
---|
| 4321 | }
|
---|
| 4322 | area[natural=water] {
|
---|
| 4323 | fill-color: water#0000ff;
|
---|
| 4324 | }
|
---|
[10419] | 4325 | area[natural=water][intermittent=yes] {
|
---|
[10110] | 4326 | width: 2;
|
---|
| 4327 | dashes: 15, 5;
|
---|
| 4328 | }
|
---|
[7041] | 4329 | way[natural=coastline] {
|
---|
[8504] | 4330 | width: 2;
|
---|
[7041] | 4331 | color: water#0000ff;
|
---|
[8504] | 4332 | right-casing-color: water#0000ff;
|
---|
[13156] | 4333 | right-casing-width: 8;
|
---|
| 4334 | right-casing-opacity: 0.35;
|
---|
[7041] | 4335 | }
|
---|
| 4336 | area[natural=mud] {
|
---|
| 4337 | fill-color: mud#cba762;
|
---|
| 4338 | }
|
---|
| 4339 | area[natural=beach] {
|
---|
| 4340 | fill-color: beach#f8dba2;
|
---|
| 4341 | }
|
---|
| 4342 | area[natural=sand] {
|
---|
| 4343 | fill-color: sand#f8dba2;
|
---|
| 4344 | }
|
---|
[7735] | 4345 | area[natural=bare_rock] {
|
---|
| 4346 | fill-color: bare_rock#f8f8c7;
|
---|
| 4347 | }
|
---|
[8003] | 4348 | area[natural=rock] {
|
---|
| 4349 | fill-color: stone#f8f8c7;
|
---|
| 4350 | }
|
---|
| 4351 | node[natural=rock] {
|
---|
[10565] | 4352 | icon-image: "presets/misc/rock.svg";
|
---|
[8003] | 4353 | set icon_z17;
|
---|
| 4354 | }
|
---|
[7735] | 4355 | area[natural=stone] {
|
---|
| 4356 | fill-color: stone#f8f8c7;
|
---|
| 4357 | }
|
---|
| 4358 | node[natural=stone] {
|
---|
[10565] | 4359 | icon-image: "presets/misc/stone.svg";
|
---|
[7454] | 4360 | set icon_z17;
|
---|
[7041] | 4361 | }
|
---|
[15081] | 4362 | area[natural=bay]:closed {
|
---|
[7041] | 4363 | fill-color: natural#002f00;
|
---|
| 4364 | }
|
---|
[15081] | 4365 | way[natural=bay] {
|
---|
| 4366 | width: 2;
|
---|
| 4367 | color: natural#002f00;
|
---|
| 4368 | }
|
---|
[7041] | 4369 | node[natural=bay] {
|
---|
[10565] | 4370 | icon-image: "presets/nautical/bay.svg";
|
---|
[7454] | 4371 | set icon_z17;
|
---|
[7041] | 4372 | }
|
---|
[15093] | 4373 | area[natural=strait]:closed {
|
---|
| 4374 | fill-color: natural#002f00;
|
---|
| 4375 | }
|
---|
| 4376 | way[natural=strait] {
|
---|
| 4377 | width: 2;
|
---|
| 4378 | color: natural#002f00;
|
---|
| 4379 | }
|
---|
| 4380 | node[natural=strait] {
|
---|
| 4381 | icon-image: "presets/nautical/strait.svg";
|
---|
| 4382 | set icon_z17;
|
---|
| 4383 | }
|
---|
[15081] | 4384 | area[natural=cape],
|
---|
| 4385 | area[natural=cave_entrance] {
|
---|
| 4386 | fill-color: natural#002f00;
|
---|
| 4387 | }
|
---|
[13945] | 4388 | node[natural=cape] {
|
---|
| 4389 | icon-image: "presets/nautical/cape.svg";
|
---|
| 4390 | set icon_z17;
|
---|
| 4391 | }
|
---|
[15081] | 4392 | node[natural=cave_entrance] {
|
---|
| 4393 | icon-image: "presets/landmark/cave_entrance.svg";
|
---|
| 4394 | set icon_z17;
|
---|
| 4395 | }
|
---|
[10707] | 4396 | area[natural=reef] {
|
---|
| 4397 | fill-color: reef#80c9ff;
|
---|
| 4398 | }
|
---|
| 4399 | node[natural=reef] {
|
---|
[10709] | 4400 | icon-image: "presets/landmark/reef.svg";
|
---|
[10707] | 4401 | set icon_z17;
|
---|
| 4402 | }
|
---|
[7041] | 4403 | node[natural=tree] {
|
---|
[10706] | 4404 | icon-image: "presets/landmark/trees.svg";
|
---|
[7454] | 4405 | set icon_z17;
|
---|
[7041] | 4406 | }
|
---|
[7235] | 4407 | node[natural=tree][type=conifer],
|
---|
| 4408 | node[natural=tree][leaf_type=needleleaved] {
|
---|
[10706] | 4409 | icon-image: "presets/landmark/trees_conifer.svg";
|
---|
[7454] | 4410 | set icon_z17;
|
---|
[7041] | 4411 | }
|
---|
[7235] | 4412 | node[natural=tree][type=broad_leaved],
|
---|
| 4413 | node[natural=tree][leaf_type=broadleaved] {
|
---|
[10706] | 4414 | icon-image: "presets/landmark/trees_broad_leaved.svg";
|
---|
[7454] | 4415 | set icon_z17;
|
---|
[7041] | 4416 | }
|
---|
[9022] | 4417 | node[natural=glacier],
|
---|
[7735] | 4418 | node[natural=scree],
|
---|
[10996] | 4419 | node[natural=shingle],
|
---|
[7735] | 4420 | node[natural=scrub],
|
---|
| 4421 | node[natural=fell],
|
---|
| 4422 | node[natural=heath],
|
---|
| 4423 | node[natural=tree_row],
|
---|
| 4424 | node[natural=wood],
|
---|
| 4425 | node[natural=grassland],
|
---|
| 4426 | node[natural=wetland],
|
---|
| 4427 | node[natural=water],
|
---|
| 4428 | node[natural=coastline],
|
---|
| 4429 | node[natural=mud],
|
---|
| 4430 | node[natural=beach],
|
---|
| 4431 | node[natural=sand],
|
---|
| 4432 | node[natural=land],
|
---|
| 4433 | node[natural=bare_rock],
|
---|
[8135] | 4434 | node[natural=ridge],
|
---|
| 4435 | node[natural=valley] {
|
---|
[10706] | 4436 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7735] | 4437 | set icon_z17;
|
---|
| 4438 | }
|
---|
[7041] | 4439 | /*****************/
|
---|
| 4440 | /* waterway tags */
|
---|
| 4441 | /*****************/
|
---|
| 4442 |
|
---|
| 4443 | way[waterway=river] {
|
---|
| 4444 | width: 2;
|
---|
| 4445 | color: water#0000ff;
|
---|
| 4446 | }
|
---|
| 4447 | area[waterway=riverbank] {
|
---|
| 4448 | fill-color: riverbank#0000cf;
|
---|
| 4449 | width: 1;
|
---|
| 4450 | color: riverbank#0000cf;
|
---|
| 4451 | }
|
---|
[13972] | 4452 | way[waterway=pressurised],
|
---|
[8135] | 4453 | way[waterway=canal] {
|
---|
[7041] | 4454 | width: 2;
|
---|
| 4455 | color: water#0000ff;
|
---|
| 4456 | }
|
---|
[11281] | 4457 | way[waterway=river][lock=yes],
|
---|
| 4458 | way[waterway=canal][lock=yes] {
|
---|
| 4459 | casing-width: 2;
|
---|
| 4460 | casing-color: lock#303030;
|
---|
| 4461 | casing-dashes: 5,20;
|
---|
| 4462 | }
|
---|
[13972] | 4463 | way[waterway=pressurised][tunnel] {
|
---|
| 4464 | casing-width: 1;
|
---|
| 4465 | casing-color: tunnel#964B00;
|
---|
| 4466 | }
|
---|
| 4467 | way[waterway=pressurised][man_made=pipeline] {
|
---|
| 4468 | casing-width: 1;
|
---|
| 4469 | casing-color: pipeline#660000;
|
---|
| 4470 | }
|
---|
[7041] | 4471 | way[waterway=stream] {
|
---|
| 4472 | width: 1;
|
---|
| 4473 | color: stream#6600cc;
|
---|
| 4474 | }
|
---|
[10110] | 4475 | way[waterway=ditch],
|
---|
| 4476 | way[waterway=drain] {
|
---|
[7041] | 4477 | width: 1;
|
---|
| 4478 | color: water#0000ff;
|
---|
| 4479 | }
|
---|
[10110] | 4480 | way[waterway=river][intermittent=yes],
|
---|
[10419] | 4481 | area[waterway=riverbank][intermittent=yes],
|
---|
[10110] | 4482 | way[waterway=canal][intermittent=yes],
|
---|
| 4483 | way[waterway=stream][intermittent=yes],
|
---|
| 4484 | way[waterway=ditch][intermittent=yes],
|
---|
| 4485 | way[waterway=drain][intermittent=yes] {
|
---|
| 4486 | dashes: 15, 5;
|
---|
| 4487 | }
|
---|
[7041] | 4488 | area[waterway=dock] {
|
---|
| 4489 | fill-color: dock#0000cf;
|
---|
| 4490 | }
|
---|
| 4491 | node[waterway=dock] {
|
---|
[10808] | 4492 | icon-image: "presets/nautical/boatyard.svg";
|
---|
[7454] | 4493 | set icon_z17;
|
---|
[7041] | 4494 | }
|
---|
[11281] | 4495 | way[waterway=lock_gate] {
|
---|
| 4496 | width: 3;
|
---|
| 4497 | color: lock_gate#303030;
|
---|
| 4498 | }
|
---|
[7041] | 4499 | node[waterway=lock_gate] {
|
---|
[10706] | 4500 | icon-image: "presets/nautical/lock_gate.svg";
|
---|
[7454] | 4501 | set icon_z17;
|
---|
[7041] | 4502 | }
|
---|
| 4503 | node[waterway=turning_point] {
|
---|
[10706] | 4504 | icon-image: "presets/nautical/turning.svg";
|
---|
[7454] | 4505 | set icon_z17;
|
---|
[7041] | 4506 | }
|
---|
| 4507 | area[waterway=boatyard] {
|
---|
| 4508 | fill-color: manmade#d8d8d8;
|
---|
| 4509 | }
|
---|
| 4510 | node[waterway=boatyard] {
|
---|
[10808] | 4511 | icon-image: "presets/nautical/boatyard.svg";
|
---|
[7454] | 4512 | set icon_z17;
|
---|
[7041] | 4513 | }
|
---|
[7737] | 4514 | node[waterway=water_point],
|
---|
| 4515 | node[waterway=waste_disposal],
|
---|
| 4516 | node[waterway=mooring] {
|
---|
[10706] | 4517 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 4518 | set icon_z17;
|
---|
[7041] | 4519 | }
|
---|
[7737] | 4520 | node[mooring] {
|
---|
[10808] | 4521 | icon-image: "presets/nautical/marina.svg";
|
---|
[7454] | 4522 | set icon_z17;
|
---|
[7041] | 4523 | }
|
---|
[8402] | 4524 | area[waterway=fuel] {
|
---|
| 4525 | fill-color: amenity_traffic#f7efb7;
|
---|
| 4526 | }
|
---|
| 4527 | node[waterway=fuel] {
|
---|
[10808] | 4528 | icon-image: "presets/nautical/marine_fuel.svg";
|
---|
[8402] | 4529 | set icon_z17;
|
---|
| 4530 | }
|
---|
[7041] | 4531 | way[waterway=weir] {
|
---|
| 4532 | width: 2;
|
---|
| 4533 | color: manmade#d8d8d8;
|
---|
| 4534 | }
|
---|
| 4535 | node[waterway=weir] {
|
---|
[10565] | 4536 | icon-image: "presets/nautical/weir.svg";
|
---|
[7454] | 4537 | set icon_z17;
|
---|
[7041] | 4538 | }
|
---|
| 4539 | area[waterway=dam]:closed {
|
---|
| 4540 | fill-color: manmade#d8d8d8;
|
---|
| 4541 | }
|
---|
| 4542 | way[waterway=dam] {
|
---|
| 4543 | width: 2;
|
---|
| 4544 | color: manmade#d8d8d8;
|
---|
| 4545 | }
|
---|
| 4546 | node[waterway=dam] {
|
---|
[10565] | 4547 | icon-image: "presets/nautical/dam.svg";
|
---|
[7454] | 4548 | set icon_z17;
|
---|
[7041] | 4549 | }
|
---|
| 4550 | /* it's not possible to have both line and area, line seems more likely */
|
---|
| 4551 | way[waterway=waterfall] {
|
---|
| 4552 | width: 2;
|
---|
| 4553 | color: manmade#d8d8d8;
|
---|
| 4554 | }
|
---|
| 4555 | node[waterway=waterfall] {
|
---|
[10565] | 4556 | icon-image: "presets/nautical/waterfall.svg";
|
---|
[7454] | 4557 | set icon_z17;
|
---|
[7041] | 4558 | }
|
---|
| 4559 | node[waterway=river], node[waterway=riverbank],
|
---|
| 4560 | node[waterway=canal], node[waterway=wadi],
|
---|
| 4561 | node[waterway=stream],
|
---|
| 4562 | node[waterway=ditch], node[waterway=drain] {
|
---|
[10706] | 4563 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 4564 | set icon_z17;
|
---|
[7041] | 4565 | }
|
---|
| 4566 |
|
---|
| 4567 | /**************/
|
---|
| 4568 | /* route tags */
|
---|
| 4569 | /**************/
|
---|
| 4570 |
|
---|
[7645] | 4571 | way[route=ferry] {
|
---|
[7041] | 4572 | width: 1;
|
---|
[7645] | 4573 | color: ferry#809bc0;
|
---|
[7041] | 4574 | dashes: 9,9;
|
---|
| 4575 | }
|
---|
| 4576 | node[route=bus],
|
---|
| 4577 | node[route=ferry],
|
---|
| 4578 | node[route=flight],
|
---|
| 4579 | node[route=ncn],
|
---|
| 4580 | node[route=subsea],
|
---|
| 4581 | node[route=ski],
|
---|
| 4582 | node[route=tour],
|
---|
| 4583 | node[route=pub_crawl] {
|
---|
[10706] | 4584 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 4585 | set icon_z17;
|
---|
[7041] | 4586 | }
|
---|
| 4587 |
|
---|
| 4588 | /*******************/
|
---|
| 4589 | /* properties tags */
|
---|
| 4590 | /*******************/
|
---|
| 4591 |
|
---|
| 4592 | node[mountain_pass?] {
|
---|
[10706] | 4593 | icon-image: "presets/landmark/mountain_pass.svg";
|
---|
[7470] | 4594 | set icon_z0;
|
---|
| 4595 | set text_z0;
|
---|
[7041] | 4596 | }
|
---|
| 4597 |
|
---|
| 4598 | /*****************/
|
---|
| 4599 | /* boundary tags */
|
---|
| 4600 | /*****************/
|
---|
| 4601 |
|
---|
[14806] | 4602 | relation[boundary=protected_area] > way::core_boundary,
|
---|
| 4603 | relation[boundary=administrative] > way::core_boundary,
|
---|
| 4604 | relation[boundary=postal_code] > way::core_boundary,
|
---|
| 4605 | relation[boundary=political] > way::core_boundary,
|
---|
| 4606 | relation[boundary=maritime] > way::core_boundary,
|
---|
| 4607 | relation[boundary=national_park] > way::core_boundary,
|
---|
[8009] | 4608 | way[boundary=protected_area]::core_boundary,
|
---|
[7041] | 4609 | way[boundary=administrative]::core_boundary,
|
---|
| 4610 | way[boundary=postal_code]::core_boundary,
|
---|
| 4611 | way[boundary=political]::core_boundary,
|
---|
[8010] | 4612 | way[boundary=maritime]::core_boundary,
|
---|
[7041] | 4613 | way[boundary=national_park]::core_boundary {
|
---|
| 4614 | z-index: 2;
|
---|
| 4615 | modifier: false;
|
---|
| 4616 | width: 1;
|
---|
| 4617 | color: boundary#FF6600;
|
---|
| 4618 | dashes: 9,9;
|
---|
| 4619 | }
|
---|
[13084] | 4620 | /* admin_level >=9 use the default width of 1 defined above */
|
---|
[13083] | 4621 | way[boundary=administrative][admin_level=7]::core_boundary,
|
---|
| 4622 | relation[boundary=administrative][admin_level=7] > way::core_boundary,
|
---|
| 4623 | way[boundary=administrative][admin_level=8]::core_boundary,
|
---|
| 4624 | relation[boundary=administrative][admin_level=8] > way::core_boundary {
|
---|
[7041] | 4625 | width: 2;
|
---|
| 4626 | }
|
---|
[13083] | 4627 | way[boundary=administrative][admin_level=5]::core_boundary,
|
---|
| 4628 | relation[boundary=administrative][admin_level=5] > way::core_boundary,
|
---|
| 4629 | way[boundary=administrative][admin_level=6]::core_boundary,
|
---|
| 4630 | relation[boundary=administrative][admin_level=6] > way::core_boundary {
|
---|
[7041] | 4631 | width: 3;
|
---|
| 4632 | }
|
---|
[13083] | 4633 | way[boundary=administrative][admin_level=3]::core_boundary,
|
---|
| 4634 | relation[boundary=administrative][admin_level=3] > way::core_boundary,
|
---|
| 4635 | way[boundary=administrative][admin_level=4]::core_boundary,
|
---|
| 4636 | relation[boundary=administrative][admin_level=4] > way::core_boundary {
|
---|
[7041] | 4637 | width: 4;
|
---|
| 4638 | }
|
---|
[13083] | 4639 | way[boundary=administrative][admin_level=1]::core_boundary,
|
---|
| 4640 | relation[boundary=administrative][admin_level=1] > way::core_boundary,
|
---|
| 4641 | way[boundary=administrative][admin_level=2]::core_boundary,
|
---|
| 4642 | relation[boundary=administrative][admin_level=2] > way::core_boundary {
|
---|
[7041] | 4643 | width: 5;
|
---|
| 4644 | }
|
---|
| 4645 | node[boundary=national],
|
---|
| 4646 | node[boundary=administrative],
|
---|
| 4647 | node[boundary=postal_code],
|
---|
| 4648 | node[boundary=political],
|
---|
| 4649 | node[boundary=national_park] {
|
---|
[10706] | 4650 | icon-image: "presets/misc/deprecated.svg";
|
---|
[7454] | 4651 | set icon_z17;
|
---|
[7041] | 4652 | }
|
---|
[7377] | 4653 |
|
---|
[7383] | 4654 | /******************/
|
---|
| 4655 | /* maxspeed nodes */
|
---|
| 4656 | /******************/
|
---|
[8012] | 4657 | node[traffic_sign][maxspeed=none][!is_prop_set(icon-image)] {
|
---|
[10565] | 4658 | icon-image: "presets/vehicle/restriction/maxspeed_none.svg";
|
---|
[7454] | 4659 | set icon_z17;
|
---|
[7383] | 4660 | }
|
---|
[8012] | 4661 | node[traffic_sign][maxspeed=~/^[0-9]+$/][!is_prop_set(icon-image)] {
|
---|
[7383] | 4662 | maxspeedprop: tag(maxspeed);
|
---|
| 4663 | set maxspeedclass;
|
---|
| 4664 | }
|
---|
[8012] | 4665 | node[traffic_sign][maxspeed=signals][!is_prop_set(icon-image)] {
|
---|
[7383] | 4666 | maxspeedprop: " ?";
|
---|
| 4667 | set maxspeedclass;
|
---|
| 4668 | }
|
---|
[8012] | 4669 | node[traffic_sign][maxspeed=~/^[0-9]+ mph/][!is_prop_set(icon-image)] {
|
---|
[7383] | 4670 | maxspeedprop: get(split(" mph",tag(maxspeed)),0);
|
---|
| 4671 | set maxspeedclass;
|
---|
| 4672 | }
|
---|
[8012] | 4673 | node[traffic_sign][maxspeed=~/[0-9]+ km\/h/][!is_prop_set(icon-image)] {
|
---|
[7383] | 4674 | maxspeedprop: get(split(" km/h",tag(maxspeed)),0);
|
---|
| 4675 | set maxspeedclass;
|
---|
| 4676 | }
|
---|
[8012] | 4677 | node[traffic_sign][maxspeed=~/[0-9]+ knots/][!is_prop_set(icon-image)] {
|
---|
[7383] | 4678 | maxspeedprop: get(split(" knots",tag(maxspeed)),0);
|
---|
| 4679 | set maxspeedclass;
|
---|
| 4680 | }
|
---|
[7454] | 4681 | node[prop(maxspeedclass, default)][!is_prop_set(icon-image, default)]::core_maxnodebg {
|
---|
[7383] | 4682 | /* background (white) */
|
---|
| 4683 | symbol-shape: circle;
|
---|
| 4684 | symbol-size: 17;
|
---|
| 4685 | symbol-fill-color: white;
|
---|
| 4686 | major-z-index: 4.2;
|
---|
| 4687 | }
|
---|
[8012] | 4688 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodebg,
|
---|
| 4689 | node[traffic_sign][maxspeed=signals]::core_maxnodebg {
|
---|
[7383] | 4690 | /* background (black) */
|
---|
| 4691 | symbol-fill-color: black;
|
---|
| 4692 | }
|
---|
[7454] | 4693 | node[prop(maxspeedclass, default)]::core_maxnodefg {
|
---|
[7383] | 4694 | /* foreground (black text and red circle) */
|
---|
| 4695 | symbol-shape: circle;
|
---|
| 4696 | symbol-size: 15;
|
---|
| 4697 | symbol-stroke-color: crimson;
|
---|
| 4698 | symbol-stroke-width: 2;
|
---|
| 4699 | text: prop(maxspeedprop, default);
|
---|
| 4700 | font-size: 8;
|
---|
| 4701 | font-weight: bold;
|
---|
| 4702 | text-color: black;
|
---|
| 4703 | text-anchor-horizontal: center;
|
---|
| 4704 | text-anchor-vertical: center;
|
---|
| 4705 | text-offset-x: 0;
|
---|
| 4706 | text-offset-y: -1;
|
---|
| 4707 | major-z-index: 4.2;
|
---|
| 4708 | }
|
---|
[8012] | 4709 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodefg,
|
---|
| 4710 | node[traffic_sign][maxspeed=signals]::core_maxnodefg {
|
---|
[7383] | 4711 | /* foreground (white text) */
|
---|
| 4712 | text-color: white;
|
---|
| 4713 | }
|
---|
[7454] | 4714 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodebg {
|
---|
| 4715 | symbol-shape: none;
|
---|
| 4716 | }
|
---|
| 4717 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodefg {
|
---|
| 4718 | text: none;
|
---|
| 4719 | symbol-shape: none;
|
---|
| 4720 | }
|
---|
[7383] | 4721 |
|
---|
[7454] | 4722 | /**************/
|
---|
| 4723 | /* place tags */
|
---|
| 4724 | /**************/
|
---|
[7377] | 4725 |
|
---|
[8986] | 4726 | area[setting("place_fill_colour")][place=continent],
|
---|
| 4727 | area[setting("place_fill_colour")][place=country],
|
---|
| 4728 | area[setting("place_fill_colour")][place=state],
|
---|
| 4729 | area[setting("place_fill_colour")][place=region],
|
---|
| 4730 | area[setting("place_fill_colour")][place=county],
|
---|
| 4731 | area[setting("place_fill_colour")][place=city],
|
---|
| 4732 | area[setting("place_fill_colour")][place=town],
|
---|
| 4733 | area[setting("place_fill_colour")][place=village],
|
---|
| 4734 | area[setting("place_fill_colour")][place=hamlet],
|
---|
| 4735 | area[setting("place_fill_colour")][place=farm],
|
---|
| 4736 | area[setting("place_fill_colour")][place=isolated_dwelling],
|
---|
| 4737 | area[setting("place_fill_colour")][place=neighbourhood],
|
---|
| 4738 | area[setting("place_fill_colour")][place=suburb],
|
---|
| 4739 | area[setting("place_fill_colour")][place=locality],
|
---|
[13394] | 4740 | area[place=island],
|
---|
| 4741 | area[place=islet] {
|
---|
[7454] | 4742 | fill-color: place#8de3cb;
|
---|
[10351] | 4743 | set place;
|
---|
[7454] | 4744 | }
|
---|
| 4745 | node[place=continent],
|
---|
| 4746 | node[place=country],
|
---|
| 4747 | node[place=state],
|
---|
| 4748 | node[place=region],
|
---|
[10018] | 4749 | node[place=county],
|
---|
| 4750 | node[place=city],
|
---|
| 4751 | node[place=town],
|
---|
| 4752 | node[place=suburb],
|
---|
| 4753 | node[place=village],
|
---|
[12998] | 4754 | node[place=quarter],
|
---|
[10018] | 4755 | node[place=neighbourhood],
|
---|
| 4756 | node[place=hamlet],
|
---|
| 4757 | node[place=isolated_dwelling],
|
---|
| 4758 | node[place=farm],
|
---|
| 4759 | node[place=island],
|
---|
| 4760 | node[place=islet] {
|
---|
[7470] | 4761 | set icon_z0;
|
---|
| 4762 | set text_z0;
|
---|
[7454] | 4763 | font-weight: bold;
|
---|
| 4764 | text-color:black;
|
---|
| 4765 | text-halo-color: white;
|
---|
| 4766 | text-halo-radius: 1;
|
---|
[10351] | 4767 | set place;
|
---|
[10018] | 4768 | }
|
---|
| 4769 |
|
---|
| 4770 | node[place=continent],
|
---|
| 4771 | node[place=country],
|
---|
| 4772 | node[place=state],
|
---|
| 4773 | node[place=region],
|
---|
| 4774 | node[place=county] {
|
---|
[10808] | 4775 | icon-image: "presets/place/capital.svg";
|
---|
[7984] | 4776 | z-index: 2.9;
|
---|
[7454] | 4777 | }
|
---|
| 4778 | node[place=city] {
|
---|
[10808] | 4779 | icon-image: "presets/place/city.svg";
|
---|
[7984] | 4780 | z-index: 2.8;
|
---|
[7454] | 4781 | }
|
---|
[7976] | 4782 | node[place=town] {
|
---|
[10808] | 4783 | icon-image: "presets/place/town.svg";
|
---|
[7984] | 4784 | z-index: 2.7;
|
---|
[7976] | 4785 | }
|
---|
| 4786 | node[place=suburb] {
|
---|
[10808] | 4787 | icon-image: "presets/place/suburb.svg";
|
---|
[7984] | 4788 | z-index: 2.6;
|
---|
[7976] | 4789 | }
|
---|
| 4790 | node[place=village] {
|
---|
[10808] | 4791 | icon-image: "presets/place/village.svg";
|
---|
[7984] | 4792 | z-index: 2.5;
|
---|
[7976] | 4793 | }
|
---|
[12998] | 4794 | node[place=quarter] {
|
---|
| 4795 | icon-image: "presets/place/quarter.svg";
|
---|
| 4796 | z-index: 2.5;
|
---|
| 4797 | }
|
---|
[7976] | 4798 | node[place=neighbourhood] {
|
---|
[10808] | 4799 | icon-image: "presets/place/neighbourhood.svg";
|
---|
[7984] | 4800 | z-index: 2.4;
|
---|
| 4801 | }
|
---|
| 4802 | node[place=hamlet] {
|
---|
[10808] | 4803 | icon-image: "presets/place/hamlet.svg";
|
---|
[7984] | 4804 | z-index: 2.3;
|
---|
| 4805 | }
|
---|
| 4806 | node[place=isolated_dwelling] {
|
---|
[10808] | 4807 | icon-image: "presets/place/isolated_dwelling.svg";
|
---|
[7984] | 4808 | z-index: 2.2;
|
---|
| 4809 | }
|
---|
| 4810 | node[place=farm] {
|
---|
[10808] | 4811 | icon-image: "presets/place/farm.svg";
|
---|
[7976] | 4812 | z-index: 2.1;
|
---|
[7454] | 4813 | }
|
---|
[9013] | 4814 | node|z15-[place=locality],
|
---|
| 4815 | node|z-14[place=locality][!setting("hide_icons")] {
|
---|
[10706] | 4816 | icon-image: "presets/place/locality.svg";
|
---|
[7454] | 4817 | font-weight: bold;
|
---|
[13382] | 4818 | text-color: black;
|
---|
[7454] | 4819 | text-halo-color: white;
|
---|
| 4820 | text-halo-radius: 1;
|
---|
| 4821 | }
|
---|
| 4822 | node[place=island] {
|
---|
[10706] | 4823 | icon-image: "presets/place/island.svg";
|
---|
[7454] | 4824 | }
|
---|
| 4825 | node[place=islet] {
|
---|
[10706] | 4826 | icon-image: "presets/place/islet.svg";
|
---|
[7454] | 4827 | }
|
---|
| 4828 |
|
---|
[13382] | 4829 | area[place=square] {
|
---|
| 4830 | fill-color: place#8de3cb;
|
---|
| 4831 | }
|
---|
| 4832 | node[place=square] {
|
---|
| 4833 | icon-image: "presets/place/square.svg";
|
---|
| 4834 | set icon_z17;
|
---|
| 4835 | }
|
---|
| 4836 |
|
---|
[7454] | 4837 | /***************************/
|
---|
| 4838 | /* "work in progress" tags */
|
---|
| 4839 | /***************************/
|
---|
| 4840 |
|
---|
[9097] | 4841 | node|z16-[fixme]::core_note_fixme,
|
---|
| 4842 | node|z-15[fixme][!setting("hide_icons")]::core_note_fixme,
|
---|
| 4843 | node|z16-[FIXME]::core_note_fixme,
|
---|
| 4844 | node|z-15[FIXME][!setting("hide_icons")]::core_note_fixme {
|
---|
| 4845 | object-z-index: 10;
|
---|
[10808] | 4846 | icon-image: "presets/misc/fixme_annotation.svg";
|
---|
[7454] | 4847 | }
|
---|
[9097] | 4848 | node|z16-[note]::core_note_fixme,
|
---|
| 4849 | node|z-15[note][!setting("hide_icons")]::core_note_fixme {
|
---|
[7454] | 4850 | object-z-index: 10;
|
---|
[10808] | 4851 | icon-image: "presets/misc/note_annotation.svg";
|
---|
[7454] | 4852 | }
|
---|
[9097] | 4853 | node|z16-[note][fixme]::core_note_fixme,
|
---|
| 4854 | node|z-15[note][fixme][!setting("hide_icons")]::core_note_fixme,
|
---|
| 4855 | node|z16-[note][FIXME]::core_note_fixme,
|
---|
| 4856 | node|z-15[note][FIXME][!setting("hide_icons")]::core_note_fixme {
|
---|
[10808] | 4857 | icon-image: "presets/misc/note_fixme_annotation.svg";
|
---|
[9097] | 4858 | }
|
---|
[7454] | 4859 |
|
---|
| 4860 | /****************************************/
|
---|
| 4861 | /* zoom levels and general node display */
|
---|
| 4862 | /****************************************/
|
---|
| 4863 |
|
---|
| 4864 | /*
|
---|
| 4865 | Summary of different zoom levels:
|
---|
[13382] | 4866 | (any zoom) place=* (except locality and square) and a few natural icons with their text is shown
|
---|
[13321] | 4867 | |z-14 tagged way nodes are hidden completely
|
---|
[7470] | 4868 | |z-15 untagged way nodes are hidden completely
|
---|
[9013] | 4869 | |z15 place=locality icon
|
---|
| 4870 | |z16- fixme=* and note=* symbols; place=locality text
|
---|
[7470] | 4871 | |z17- normal POI icons (without text),
|
---|
| 4872 | street name along highway=* ways
|
---|
| 4873 | |z18- text for normal POI icons is shown
|
---|
[7454] | 4874 |
|
---|
[13382] | 4875 | * text size and node size is adapted according to zoom level (see style source below), place labels (except locality and square) don't get smaller
|
---|
[13321] | 4876 | * all these zoom features are modifiable via style settings
|
---|
[7454] | 4877 | * maxspeed icons should not be distinguishable from POIs with "icon-image" property
|
---|
| 4878 |
|
---|
| 4879 | */
|
---|
| 4880 |
|
---|
| 4881 | node|z-16[setting("hide_icons")],
|
---|
[7458] | 4882 | node|z17-[!is_prop_set("icon-image")][setting("hide_icons")]!.maxspeedclass,
|
---|
| 4883 | node[!is_prop_set("icon-image")][!setting("hide_icons")]!.maxspeedclass {
|
---|
[7456] | 4884 | symbol-size: 2;
|
---|
[7377] | 4885 | symbol-shape: square;
|
---|
| 4886 | symbol-stroke-color: node_standard#ffff00;
|
---|
[7386] | 4887 | major-z-index: 4.95; /* put node squares above line text */
|
---|
[7377] | 4888 | }
|
---|
[7454] | 4889 | way > node|z-15[setting("shrink_nodes")]!:tagged {
|
---|
[7428] | 4890 | symbol-shape: none;
|
---|
| 4891 | }
|
---|
[7454] | 4892 | node:connection {
|
---|
[7377] | 4893 | symbol-stroke-color: node_connection#ffff00;
|
---|
| 4894 | }
|
---|
[7428] | 4895 | node:tagged {
|
---|
[7378] | 4896 | symbol-stroke-color: none;
|
---|
| 4897 | symbol-fill-color: node_tagged#00ffff;
|
---|
[7377] | 4898 | }
|
---|
[15017] | 4899 | node:tagged[!is_prop_set("icon-image")]!.maxspeedclass {
|
---|
| 4900 | symbol-fill-color: node_tagged_without_icon#00ffff; /* by default same color as above but user configurable */
|
---|
| 4901 | }
|
---|
[13321] | 4902 | way > node|z-14[setting("shrink_nodes")][setting("hide_tagged_waynodes")]:tagged { /* todo: check which is faster: `way > node {...}` or `node!:unconnected {...}`, also at other occurrences in this file */
|
---|
| 4903 | symbol-shape: none;
|
---|
| 4904 | }
|
---|
[7377] | 4905 |
|
---|
[7456] | 4906 | way > node|z16[setting("shrink_nodes")]!:tagged { symbol-size: 1; }
|
---|
[7377] | 4907 |
|
---|
[7456] | 4908 | node|z17[setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4909 | way > node|z17[setting("shrink_nodes")] { symbol-size: 2; }
|
---|
| 4910 | node|z17[setting("shrink_nodes")]:connection { symbol-size: 4; }
|
---|
[7377] | 4911 |
|
---|
[7456] | 4912 | node|z18[setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4913 | way > node|z18[setting("shrink_nodes")] { symbol-size: 3; }
|
---|
| 4914 | node|z18[setting("shrink_nodes")]:connection { symbol-size: 5; }
|
---|
[7377] | 4915 |
|
---|
[7456] | 4916 | node|z19-[setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4917 | way > node|z19-[setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4918 | node|z19-[setting("shrink_nodes")]:connection { symbol-size: 6; }
|
---|
[7377] | 4919 |
|
---|
[7456] | 4920 | node[!setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4921 | way > node[!setting("shrink_nodes")] { symbol-size: 4; }
|
---|
| 4922 | node[!setting("shrink_nodes")]:connection { symbol-size: 6; }
|
---|
[7454] | 4923 |
|
---|
[9451] | 4924 | node:selected {
|
---|
| 4925 | symbol-shape: square;
|
---|
| 4926 | symbol-size: 6;
|
---|
| 4927 | symbol-fill-color: node_selected#ff0000;
|
---|
| 4928 | symbol-stroke-color: node_selected#ff0000;
|
---|
| 4929 | }
|
---|
| 4930 |
|
---|
[7470] | 4931 | node|z-16[setting("hide_icons")].icon_z17!.icon_z0,
|
---|
[7454] | 4932 | relation|z-16[type=restriction][setting("hide_icons")] {
|
---|
| 4933 | icon-image: none;
|
---|
| 4934 | }
|
---|
[7470] | 4935 | node|z-17[setting("hide_icons")]!.text_z0 {
|
---|
[7377] | 4936 | text: none;
|
---|
| 4937 | }
|
---|
[9013] | 4938 | node|z16-17[setting("hide_icons")][place=locality] {
|
---|
| 4939 | text: auto;
|
---|
| 4940 | }
|
---|
[7377] | 4941 |
|
---|
[10177] | 4942 | node|z-18,area|z-18 { font-size: 8; }
|
---|
[7383] | 4943 | node|z19,area|z19 { font-size: 9; }
|
---|
[10177] | 4944 | node|z20-,area|z20- { font-size: 11; }
|
---|
[7377] | 4945 |
|
---|
[10351] | 4946 | node.place, way.place, area.place { font-size: 11; }
|
---|
| 4947 |
|
---|
| 4948 |
|
---|
[7386] | 4949 | /*******************/
|
---|
| 4950 | /* way text labels */
|
---|
| 4951 | /*******************/
|
---|
| 4952 |
|
---|
[13875] | 4953 | way|z18-[highway=motorway][setting("highway_labels")],
|
---|
| 4954 | way|z18-[highway=motorway_link][setting("highway_labels")],
|
---|
| 4955 | way|z18-[highway=trunk][setting("highway_labels")],
|
---|
| 4956 | way|z18-[highway=trunk_link][setting("highway_labels")],
|
---|
| 4957 | way|z18-[highway=primary][setting("highway_labels")],
|
---|
| 4958 | way|z18-[highway=primary_link][setting("highway_labels")],
|
---|
| 4959 | way|z18-[highway=secondary][setting("highway_labels")],
|
---|
| 4960 | way|z18-[highway=secondary_link][setting("highway_labels")],
|
---|
| 4961 | way|z18-[highway=tertiary][setting("highway_labels")],
|
---|
| 4962 | way|z18-[highway=tertiary_link][setting("highway_labels")],
|
---|
| 4963 | way|z18-[highway=unclassified][setting("highway_labels")],
|
---|
| 4964 | way|z18-[highway=residential][setting("highway_labels")],
|
---|
| 4965 | way|z18-[highway=living_street][setting("highway_labels")],
|
---|
| 4966 | way|z18-[highway=escape][setting("highway_labels")],
|
---|
| 4967 | way|z18-[highway=pedestrian][!area?][setting("highway_labels")],
|
---|
| 4968 | way|z18-[highway=steps][setting("highway_labels")],
|
---|
| 4969 | way|z18-[highway=footway][setting("highway_labels")],
|
---|
| 4970 | way|z18-[highway=path][setting("highway_labels")],
|
---|
| 4971 | way|z18-[highway=service][setting("highway_labels")],
|
---|
| 4972 | way|z18-[highway=track][setting("highway_labels")],
|
---|
| 4973 | way|z18-[highway=cycleway][setting("highway_labels")],
|
---|
| 4974 | way|z18-[highway=bridleway][setting("highway_labels")],
|
---|
| 4975 | way|z18-[highway=bus_guideway][setting("highway_labels")],
|
---|
| 4976 | way|z18-[highway=raceway][setting("highway_labels")],
|
---|
| 4977 | way|z18-[highway=construction][setting("highway_labels")],
|
---|
| 4978 | way|z18-[highway=road][setting("highway_labels")] {
|
---|
[7386] | 4979 | text: auto;
|
---|
| 4980 | text-color: black;
|
---|
[13875] | 4981 | font-size: 10;
|
---|
[7386] | 4982 | text-position: line;
|
---|
| 4983 | text-halo-opacity: 1;
|
---|
| 4984 | text-halo-radius: 1.5;
|
---|
| 4985 | }
|
---|
[13875] | 4986 | way|z18-[highway=motorway][setting("highway_labels")],
|
---|
| 4987 | way|z18-[highway=motorway_link][setting("highway_labels")] {
|
---|
[7439] | 4988 | text-halo-color: motorway#809bc0;
|
---|
| 4989 | }
|
---|
[13875] | 4990 | way|z18-[highway=trunk][setting("highway_labels")],
|
---|
| 4991 | way|z18-[highway=trunk_link][setting("highway_labels")] {
|
---|
[7439] | 4992 | text-halo-color: trunk#7fc97f;
|
---|
| 4993 | }
|
---|
[13875] | 4994 | way|z18-[highway=primary][setting("highway_labels")],
|
---|
| 4995 | way|z18-[highway=primary_link][setting("highway_labels")] {
|
---|
[7439] | 4996 | text-halo-color: primary#fb805f;
|
---|
| 4997 | }
|
---|
[13875] | 4998 | way|z18-[highway=secondary][setting("highway_labels")],
|
---|
| 4999 | way|z18-[highway=secondary_link][setting("highway_labels")] {
|
---|
[7439] | 5000 | text-halo-color: secondary#fdbf6f;
|
---|
| 5001 | }
|
---|
[13875] | 5002 | way|z18-[highway=tertiary][setting("highway_labels")],
|
---|
| 5003 | way|z18-[highway=tertiary_link][setting("highway_labels")] {
|
---|
[7439] | 5004 | text-halo-color: tertiary#f7f496;
|
---|
| 5005 | }
|
---|
[13875] | 5006 | way|z18-[highway=unclassified][setting("highway_labels")],
|
---|
| 5007 | way|z18-[highway=residential][setting("highway_labels")],
|
---|
| 5008 | way|z18-[highway=living_street][setting("highway_labels")],
|
---|
| 5009 | way|z18-[highway=escape][setting("highway_labels")] {
|
---|
[7439] | 5010 | text-halo-color: street#c0c0c0;
|
---|
| 5011 | }
|
---|
[13875] | 5012 | way|z18-[highway=pedestrian][!area?][setting("highway_labels")],
|
---|
| 5013 | way|z18-[highway=steps][setting("highway_labels")],
|
---|
| 5014 | way|z18-[highway=footway][setting("highway_labels")],
|
---|
| 5015 | way|z18-[highway=path][setting("highway_labels")] {
|
---|
[7457] | 5016 | text-halo-color: foot#00ff00;
|
---|
| 5017 | }
|
---|
[13875] | 5018 | way|z18-[highway=service][setting("highway_labels")] {
|
---|
[7439] | 5019 | text-halo-color: service#809bc0;
|
---|
| 5020 | }
|
---|
[13875] | 5021 | way|z18-[highway=track][setting("highway_labels")] {
|
---|
[7904] | 5022 | text-halo-color: highway_track#6e541c;
|
---|
[7439] | 5023 | }
|
---|
[13875] | 5024 | way|z18-[highway=cycleway][setting("highway_labels")],
|
---|
| 5025 | way|z18-[highway=path][setting("highway_labels")].cyclecolor {
|
---|
[8999] | 5026 | text-halo-color: bicycle#b100ff;
|
---|
| 5027 | }
|
---|
[13875] | 5028 | way|z18-[highway=bridleway][setting("highway_labels")] {
|
---|
[8999] | 5029 | text-halo-color: horse#a18559;
|
---|
| 5030 | }
|
---|
[13875] | 5031 | way|z18-[highway=bus_guideway][setting("highway_labels")] {
|
---|
[8999] | 5032 | text-halo-color: rail#404040;
|
---|
| 5033 | }
|
---|
[13875] | 5034 | way|z18-[highway=raceway][setting("highway_labels")] {
|
---|
[8999] | 5035 | text-halo-color: raceway#ff80ff;
|
---|
| 5036 | }
|
---|
[13875] | 5037 | way|z18-[highway=construction][setting("highway_labels")] {
|
---|
[8999] | 5038 | text-halo-color: construction#ffff00;
|
---|
| 5039 | }
|
---|
[13875] | 5040 | way|z18-[highway=road][setting("highway_labels")] {
|
---|
[8999] | 5041 | text-halo-color: highway_road#770000;
|
---|
| 5042 | }
|
---|
[13875] | 5043 | way|z18-[highway][railway=platform][setting("highway_labels")] {
|
---|
[9000] | 5044 | text-halo-color: rail#404040;
|
---|
| 5045 | }
|
---|
[13875] | 5046 | way|z18-[highway][public_transport=platform][setting("highway_labels")] {
|
---|
[9000] | 5047 | text-halo-color: service#809bc0;
|
---|
| 5048 | }
|
---|
[7520] | 5049 | way|z19[highway][setting("highway_labels")] {
|
---|
[7386] | 5050 | font-size: 11;
|
---|
| 5051 | }
|
---|
[7520] | 5052 | way|z20-[highway][setting("highway_labels")] {
|
---|
[7386] | 5053 | font-size: 12;
|
---|
| 5054 | }
|
---|
| 5055 |
|
---|
[9009] | 5056 | /*************/
|
---|
| 5057 | /* Area fill */
|
---|
| 5058 | /*************/
|
---|
| 5059 |
|
---|
[9099] | 5060 | /* small extent for unclosed area (see below for closed) */
|
---|
[9009] | 5061 | area[setting("partial_fill")] {
|
---|
[9099] | 5062 | fill-extent: 15;
|
---|
| 5063 | }
|
---|
| 5064 |
|
---|
[9302] | 5065 | /* Turn partial fill off and use plain fill, when the partial fill covers about
|
---|
[9099] | 5066 | 100% of the area. This reduces artifacts (typically for incomplete multipolygons).
|
---|
| 5067 | Switching between full and partial fill while drawing an area might be irritating,
|
---|
| 5068 | so only do this at low zoom. */
|
---|
| 5069 | area|z-13[setting("partial_fill")] {
|
---|
[9114] | 5070 | fill-extent-threshold: 1.0;
|
---|
[9099] | 5071 | }
|
---|
| 5072 |
|
---|
| 5073 | /* Larger extent for closed areas.
|
---|
[9302] | 5074 | Turn partial fill off, when it covers more than about 50% of the area. This avoids
|
---|
[9099] | 5075 | areas with small unfilled patches in the center. */
|
---|
| 5076 | area[setting("partial_fill")]:closed2 {
|
---|
[9009] | 5077 | fill-extent: 25;
|
---|
[9114] | 5078 | fill-extent-threshold: JOSM_pref("draw.area.extent_threshold", 0.5);
|
---|
[9099] | 5079 | }
|
---|
| 5080 |
|
---|