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