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