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