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