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