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