| 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 |
|
|---|
| 12 | meta {
|
|---|
| 13 | icon: "dialogs/mappaint/josm_small.png";
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | canvas {
|
|---|
| 17 | default-points: false;
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | /***************************/
|
|---|
| 21 | /* "work in progress" tags */
|
|---|
| 22 | /***************************/
|
|---|
| 23 |
|
|---|
| 24 | node|z16-[fixme]::core_fixme,
|
|---|
| 25 | node|z16-[FIXME]::core_fixme {
|
|---|
| 26 | object-z-index: 20;
|
|---|
| 27 | icon-image: "misc/fixme-annotation.png";
|
|---|
| 28 | }
|
|---|
| 29 | node|z16-[note]::core_note {
|
|---|
| 30 | object-z-index: 10;
|
|---|
| 31 | icon-image: "misc/note-annotation.png";
|
|---|
| 32 | }
|
|---|
| 33 |
|
|---|
| 34 | /* special display of unreviewed tiger data (USA) */
|
|---|
| 35 | way["tiger:reviewed"=no]::core_tiger {
|
|---|
| 36 | major-z-index: -10;
|
|---|
| 37 | width: 11;
|
|---|
| 38 | color: tiger_data#808000;
|
|---|
| 39 | opacity: 0.6;
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | /*********************/
|
|---|
| 43 | /* turn restrictions */
|
|---|
| 44 | /*********************/
|
|---|
| 45 |
|
|---|
| 46 | relation[restriction=no_left_turn],
|
|---|
| 47 | node[restriction=no_left_turn] {
|
|---|
| 48 | icon-image: "vehicle/restriction/turn_restrictions/no_left_turn.png";
|
|---|
| 49 | text: auto;
|
|---|
| 50 | }
|
|---|
| 51 | relation[restriction=no_right_turn],
|
|---|
| 52 | node[restriction=no_right_turn] {
|
|---|
| 53 | icon-image: "vehicle/restriction/turn_restrictions/no_right_turn.png";
|
|---|
| 54 | text: auto;
|
|---|
| 55 | }
|
|---|
| 56 | relation[restriction=no_straight_on],
|
|---|
| 57 | node[restriction=no_straight_on] {
|
|---|
| 58 | icon-image: "vehicle/restriction/turn_restrictions/no_straight_on.png";
|
|---|
| 59 | text: auto;
|
|---|
| 60 | }
|
|---|
| 61 | relation[restriction=no_u_turn],
|
|---|
| 62 | node[restriction=no_u_turn] {
|
|---|
| 63 | icon-image: "vehicle/restriction/turn_restrictions/no_u_turn.png";
|
|---|
| 64 | text: auto;
|
|---|
| 65 | }
|
|---|
| 66 | relation[restriction=only_left_turn],
|
|---|
| 67 | node[restriction=only_left_turn] {
|
|---|
| 68 | icon-image: "vehicle/restriction/turn_restrictions/only_left_turn.png";
|
|---|
| 69 | text: auto;
|
|---|
| 70 | }
|
|---|
| 71 | relation[restriction=only_right_turn],
|
|---|
| 72 | node[restriction=only_right_turn] {
|
|---|
| 73 | icon-image: "vehicle/restriction/turn_restrictions/only_right_turn.png";
|
|---|
| 74 | text: auto;
|
|---|
| 75 | }
|
|---|
| 76 | relation[restriction=only_straight_on],
|
|---|
| 77 | node[restriction=only_straight_on] {
|
|---|
| 78 | icon-image: "vehicle/restriction/turn_restrictions/only_straight_on.png";
|
|---|
| 79 | text: auto;
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | /******************/
|
|---|
| 83 | /* bridge, tunnel */
|
|---|
| 84 | /******************/
|
|---|
| 85 |
|
|---|
| 86 | way[bridge?]::core_bridge,
|
|---|
| 87 | way[bridge=viaduct]::core_bridge,
|
|---|
| 88 | way[bridge=swing]::core_bridge,
|
|---|
| 89 | way[bridge=movable]::core_bridge,
|
|---|
| 90 | way[bridge=cantilever]::core_bridge,
|
|---|
| 91 | way[bridge=covered]::core_bridge,
|
|---|
| 92 | way[bridge=low_water_crossing]::core_bridge,
|
|---|
| 93 | way[bridge=trestle]::core_bridge,
|
|---|
| 94 | way[bridge=aqueduct]::core_bridge {
|
|---|
| 95 | major-z-index: 2.1;
|
|---|
| 96 | object-z-index: -1;
|
|---|
| 97 | width: +4;
|
|---|
| 98 | color: bridge#0000FF;
|
|---|
| 99 | opacity: 0.9;
|
|---|
| 100 | }
|
|---|
| 101 | way[tunnel?]::core_tunnel,
|
|---|
| 102 | way[tunnel=culvert]::core_tunnel,
|
|---|
| 103 | way[tunnel=building_passage]::core_tunnel,
|
|---|
| 104 | way[tunnel=avalanche_protector]::core_tunnel {
|
|---|
| 105 | major-z-index: 2.1;
|
|---|
| 106 | object-z-index: -1;
|
|---|
| 107 | width: +5;
|
|---|
| 108 | color: tunnel#964B00;
|
|---|
| 109 | opacity: 0.9;
|
|---|
| 110 | }
|
|---|
| 111 | node[oneway],
|
|---|
| 112 | node[bridge],
|
|---|
| 113 | node[tunnel?],
|
|---|
| 114 | node[tunnel?!],
|
|---|
| 115 | node[cutting?!],
|
|---|
| 116 | node[embankment?!] {
|
|---|
| 117 | icon-image: "misc/deprecated.png";
|
|---|
| 118 | text: auto;
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | /*****************************/
|
|---|
| 122 | /* building/entrance/address */
|
|---|
| 123 | /*****************************/
|
|---|
| 124 |
|
|---|
| 125 | node["addr:housenumber"],
|
|---|
| 126 | node["addr:postcode"] {
|
|---|
| 127 | icon-image: "misc/housenumber.png";
|
|---|
| 128 | text: auto;
|
|---|
| 129 | }
|
|---|
| 130 | way["addr:interpolation"=odd] {
|
|---|
| 131 | width: 1;
|
|---|
| 132 | color: address#1C86EE;
|
|---|
| 133 | dashes: 15,4;
|
|---|
| 134 | }
|
|---|
| 135 | way["addr:interpolation"=even] {
|
|---|
| 136 | width: 1;
|
|---|
| 137 | color: address#1C86EE;
|
|---|
| 138 | dashes: 4,4;
|
|---|
| 139 | }
|
|---|
| 140 | way["addr:interpolation"=all],
|
|---|
| 141 | way["addr:interpolation"=alphabetic] {
|
|---|
| 142 | width: 1;
|
|---|
| 143 | color: address#1C86EE;
|
|---|
| 144 | dashes: 2,2;
|
|---|
| 145 | }
|
|---|
| 146 | area[building][!building?!] {
|
|---|
| 147 | fill-color: building#cb9999;
|
|---|
| 148 | }
|
|---|
| 149 | node[building][!building?!] {
|
|---|
| 150 | icon-image: "misc/landmark/building.png";
|
|---|
| 151 | text: auto;
|
|---|
| 152 | }
|
|---|
| 153 | node[building=garage] {
|
|---|
| 154 | icon-image: "misc/landuse/garages.png";
|
|---|
| 155 | text: auto;
|
|---|
| 156 | }
|
|---|
| 157 | node[building=garages] {
|
|---|
| 158 | icon-image: "misc/landuse/garages.png";
|
|---|
| 159 | text: auto;
|
|---|
| 160 | }
|
|---|
| 161 | node[building=entrance] {
|
|---|
| 162 | icon-image: "misc/entrance-yes.png";
|
|---|
| 163 | text: auto;
|
|---|
| 164 | }
|
|---|
| 165 | node[entrance=yes] {
|
|---|
| 166 | icon-image: "misc/entrance-yes.png";
|
|---|
| 167 | text: auto;
|
|---|
| 168 | }
|
|---|
| 169 | node[entrance=main] {
|
|---|
| 170 | icon-image: "misc/entrance-main.png";
|
|---|
| 171 | text: auto;
|
|---|
| 172 | }
|
|---|
| 173 | node[entrance=service] {
|
|---|
| 174 | icon-image: "misc/entrance-service.png";
|
|---|
| 175 | text: auto;
|
|---|
| 176 | }
|
|---|
| 177 | node[entrance=exit] {
|
|---|
| 178 | icon-image: "misc/entrance-exit.png";
|
|---|
| 179 | text: auto;
|
|---|
| 180 | }
|
|---|
| 181 | node[entrance=emergency] {
|
|---|
| 182 | icon-image: "misc/entrance-emergency.png";
|
|---|
| 183 | text: auto;
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | /****************************/
|
|---|
| 187 | /* access restrictions tags */
|
|---|
| 188 | /****************************/
|
|---|
| 189 |
|
|---|
| 190 | way[access?!]::core_access {
|
|---|
| 191 | z-index: -1;
|
|---|
| 192 | width: +2;
|
|---|
| 193 | color: no#ff8080;
|
|---|
| 194 | dashes: 2,2;
|
|---|
| 195 | }
|
|---|
| 196 | way[access=permissive]::core_access {
|
|---|
| 197 | z-index: -1;
|
|---|
| 198 | width: +2;
|
|---|
| 199 | color: permissive#80ff80;
|
|---|
| 200 | dashes: 2,2;
|
|---|
| 201 | }
|
|---|
| 202 | way[access=private]::core_access {
|
|---|
| 203 | z-index: -1;
|
|---|
| 204 | width: +2;
|
|---|
| 205 | color: private#ff8080;
|
|---|
| 206 | dashes: 2,2;
|
|---|
| 207 | }
|
|---|
| 208 | way[access=destination]::core_access {
|
|---|
| 209 | z-index: -1;
|
|---|
| 210 | width: +2;
|
|---|
| 211 | color: destination#8080ff;
|
|---|
| 212 | dashes: 2,2;
|
|---|
| 213 | }
|
|---|
| 214 | node[access?!] {
|
|---|
| 215 | icon-image: "vehicle/restriction/access.png";
|
|---|
| 216 | }
|
|---|
| 217 | node[access=permissive],
|
|---|
| 218 | node[access=private],
|
|---|
| 219 | node[access=destination] {
|
|---|
| 220 | icon-image: "misc/no_icon.png";
|
|---|
| 221 | text: auto;
|
|---|
| 222 | }
|
|---|
| 223 | node[bicycle?!] {
|
|---|
| 224 | icon-image: "vehicle/restriction/bicycle.png";
|
|---|
| 225 | }
|
|---|
| 226 | node[bicycle=designated] {
|
|---|
| 227 | icon-image: "vehicle/restriction/bicycle-designated.png";
|
|---|
| 228 | text: auto;
|
|---|
| 229 | }
|
|---|
| 230 | node[foot?!] {
|
|---|
| 231 | icon-image: "vehicle/restriction/foot.png";
|
|---|
| 232 | }
|
|---|
| 233 | node[foot=designated] {
|
|---|
| 234 | icon-image: "vehicle/restriction/foot-designated.png";
|
|---|
| 235 | text: auto;
|
|---|
| 236 | }
|
|---|
| 237 | node[goods?!],
|
|---|
| 238 | node[hgv?!] {
|
|---|
| 239 | icon-image: "vehicle/restriction/goods.png";
|
|---|
| 240 | }
|
|---|
| 241 | node[horse?!] {
|
|---|
| 242 | icon-image: "vehicle/restriction/horse.png";
|
|---|
| 243 | }
|
|---|
| 244 | node[horse=designated] {
|
|---|
| 245 | icon-image: "vehicle/restriction/horse-designated.png";
|
|---|
| 246 | }
|
|---|
| 247 | node[motorcycle?!] {
|
|---|
| 248 | icon-image: "vehicle/restriction/motorbike.png";
|
|---|
| 249 | }
|
|---|
| 250 | node[motorcar?!] {
|
|---|
| 251 | icon-image: "vehicle/restriction/motorcar.png";
|
|---|
| 252 | }
|
|---|
| 253 | node[psv?!] {
|
|---|
| 254 | icon-image: "vehicle/restriction/psv.png";
|
|---|
| 255 | }
|
|---|
| 256 | node[motorboat?!],
|
|---|
| 257 | node[boat?!] {
|
|---|
| 258 | icon-image: "misc/no_icon.png";
|
|---|
| 259 | }
|
|---|
| 260 | node[noexit?] {
|
|---|
| 261 | icon-image: "vehicle/restriction/dead_end.png";
|
|---|
| 262 | }
|
|---|
| 263 | node[maxweight] {
|
|---|
| 264 | icon-image: "vehicle/restriction/maxweight.png";
|
|---|
| 265 | }
|
|---|
| 266 | node[maxheight] {
|
|---|
| 267 | icon-image: "vehicle/restriction/maxheight.png";
|
|---|
| 268 | }
|
|---|
| 269 | node[maxwidth] {
|
|---|
| 270 | icon-image: "vehicle/restriction/maxwidth.png";
|
|---|
| 271 | }
|
|---|
| 272 | node[maxlength] {
|
|---|
| 273 | icon-image: "vehicle/restriction/maxlength.png";
|
|---|
| 274 | }
|
|---|
| 275 | node[maxspeed] {
|
|---|
| 276 | icon-image: "vehicle/restriction/speed.png";
|
|---|
| 277 | }
|
|---|
| 278 | node[minspeed] {
|
|---|
| 279 | icon-image: "vehicle/restriction/minspeed.png";
|
|---|
| 280 | }
|
|---|
| 281 | node[maxstay],
|
|---|
| 282 | node[toll] {
|
|---|
| 283 | icon-image: "misc/no_icon.png";
|
|---|
| 284 | }
|
|---|
| 285 |
|
|---|
| 286 | /****************/
|
|---|
| 287 | /* barrier tags */
|
|---|
| 288 | /****************/
|
|---|
| 289 |
|
|---|
| 290 | node[barrier] {
|
|---|
| 291 | icon-image: "vehicle/restriction/barrier.png";
|
|---|
| 292 | text: auto;
|
|---|
| 293 | }
|
|---|
| 294 | way[barrier=bollard] {
|
|---|
| 295 | width: 3;
|
|---|
| 296 | color: barrier#F0F050;
|
|---|
| 297 | dashes: 3,9;
|
|---|
| 298 | }
|
|---|
| 299 | node[barrier=bollard] {
|
|---|
| 300 | icon-image: "vehicle/restriction/bollard.png";
|
|---|
| 301 | text: auto;
|
|---|
| 302 | }
|
|---|
| 303 | node[barrier=gate] {
|
|---|
| 304 | icon-image: "vehicle/gate.png";
|
|---|
| 305 | text: auto;
|
|---|
| 306 | }
|
|---|
| 307 | way[barrier=hedge],
|
|---|
| 308 | way[barrier=fence],
|
|---|
| 309 | way[barrier=wall],
|
|---|
| 310 | way[barrier=guard_rail],
|
|---|
| 311 | way[barrier=city_wall],
|
|---|
| 312 | way[barrier=retaining_wall],
|
|---|
| 313 | way[barrier=block],
|
|---|
| 314 | way[barrier=chain] {
|
|---|
| 315 | width: 3;
|
|---|
| 316 | color: barrier#F0F050;
|
|---|
| 317 | }
|
|---|
| 318 | node[barrier=hedge],
|
|---|
| 319 | node[barrier=wall],
|
|---|
| 320 | node[barrier=guard_rail],
|
|---|
| 321 | node[barrier=city_wall],
|
|---|
| 322 | node[barrier=retaining_wall] {
|
|---|
| 323 | icon-image: "misc/deprecated.png";
|
|---|
| 324 | text: auto;
|
|---|
| 325 | }
|
|---|
| 326 | node[barrier=block] {
|
|---|
| 327 | icon-image: "vehicle/block.svg";
|
|---|
| 328 | text: auto;
|
|---|
| 329 | }
|
|---|
| 330 | node[barrier=chain] {
|
|---|
| 331 | icon-image: "vehicle/chain.svg";
|
|---|
| 332 | text: auto;
|
|---|
| 333 | }
|
|---|
| 334 | node[barrier=stile] {
|
|---|
| 335 | icon-image: "vehicle/stile.png";
|
|---|
| 336 | text: auto;
|
|---|
| 337 | }
|
|---|
| 338 | node[barrier=turnstile] {
|
|---|
| 339 | icon-image: "vehicle/turnstile.png";
|
|---|
| 340 | text: auto;
|
|---|
| 341 | }
|
|---|
| 342 | node[barrier=cycle_barrier] {
|
|---|
| 343 | icon-image: "vehicle/cycle_barrier.png";
|
|---|
| 344 | text: auto;
|
|---|
| 345 | }
|
|---|
| 346 | node[barrier=lift_gate] {
|
|---|
| 347 | icon-image: "vehicle/lift_gate.png";
|
|---|
| 348 | text: auto;
|
|---|
| 349 | }
|
|---|
| 350 | node[barrier=swing_gate] {
|
|---|
| 351 | icon-image: "vehicle/swing_gate.png";
|
|---|
| 352 | text: auto;
|
|---|
| 353 | }
|
|---|
| 354 | area[barrier=toll_booth]:closed {
|
|---|
| 355 | fill-color: barrier#F0F050;
|
|---|
| 356 | }
|
|---|
| 357 | node[barrier=toll_booth] {
|
|---|
| 358 | icon-image: "vehicle/toll_booth.png";
|
|---|
| 359 | text: auto;
|
|---|
| 360 | }
|
|---|
| 361 | node[barrier=entrance] {
|
|---|
| 362 | icon-image: "vehicle/entrance.png";
|
|---|
| 363 | text: auto;
|
|---|
| 364 | }
|
|---|
| 365 | node[barrier=cattle_grid] {
|
|---|
| 366 | icon-image: "vehicle/cattle_grid.png";
|
|---|
| 367 | text: auto;
|
|---|
| 368 | }
|
|---|
| 369 | node[barrier=border_control] {
|
|---|
| 370 | icon-image: "vehicle/border_control.png";
|
|---|
| 371 | text: auto;
|
|---|
| 372 | }
|
|---|
| 373 | node[barrier=sally_port] {
|
|---|
| 374 | icon-image: "vehicle/sally_port.png";
|
|---|
| 375 | text: auto;
|
|---|
| 376 | }
|
|---|
| 377 | node[barrier=fence],
|
|---|
| 378 | node[barrier=kissing_gate],
|
|---|
| 379 | node[barrier=bump_gate],
|
|---|
| 380 | node[barrier=portcullis],
|
|---|
| 381 | node[barrier=spikes],
|
|---|
| 382 | node[barrier=bus_trap],
|
|---|
| 383 | node[barrier=drawbridge],
|
|---|
| 384 | node[barrier=hampshire_gate] {
|
|---|
| 385 | icon-image: "misc/no_icon.png";
|
|---|
| 386 | text: auto;
|
|---|
| 387 | }
|
|---|
| 388 |
|
|---|
| 389 | /****************/
|
|---|
| 390 | /* highway tags */
|
|---|
| 391 | /****************/
|
|---|
| 392 |
|
|---|
| 393 | way[motorroad?]::core_motorroad {
|
|---|
| 394 | major-z-index: 2.1;
|
|---|
| 395 | z-index: -1;
|
|---|
| 396 | width: +4;
|
|---|
| 397 | color: motorroad#3377ff;
|
|---|
| 398 | }
|
|---|
| 399 | way[highway=motorway] {
|
|---|
| 400 | width: 3;
|
|---|
| 401 | color: motorway#809bc0;
|
|---|
| 402 | }
|
|---|
| 403 | way[highway=motorway_link] {
|
|---|
| 404 | width: 3;
|
|---|
| 405 | color: motorway#809bc0;
|
|---|
| 406 | }
|
|---|
| 407 | way[highway=trunk] {
|
|---|
| 408 | width: 3;
|
|---|
| 409 | color: trunk#7fc97f;
|
|---|
| 410 | }
|
|---|
| 411 | way[highway=trunk_link] {
|
|---|
| 412 | width: 3;
|
|---|
| 413 | color: trunk#7fc97f;
|
|---|
| 414 | }
|
|---|
| 415 | way[highway=primary] {
|
|---|
| 416 | width: 3;
|
|---|
| 417 | color: primary#fb805f;
|
|---|
| 418 | }
|
|---|
| 419 | way[highway=primary_link] {
|
|---|
| 420 | width: 3;
|
|---|
| 421 | color: primary#fb805f;
|
|---|
| 422 | }
|
|---|
| 423 | way[highway=secondary] {
|
|---|
| 424 | width: 3;
|
|---|
| 425 | color: secondary#fdbf6f;
|
|---|
| 426 | }
|
|---|
| 427 | way[highway=secondary_link] {
|
|---|
| 428 | width: 3;
|
|---|
| 429 | color: secondary#fdbf6f;
|
|---|
| 430 | }
|
|---|
| 431 | way[highway=tertiary] {
|
|---|
| 432 | width: 2;
|
|---|
| 433 | color: tertiary#f7f496;
|
|---|
| 434 | }
|
|---|
| 435 | way[highway=tertiary_link] {
|
|---|
| 436 | width: 2;
|
|---|
| 437 | color: tertiary#f7f496;
|
|---|
| 438 | }
|
|---|
| 439 | way[highway=unclassified] {
|
|---|
| 440 | width: 2;
|
|---|
| 441 | color: street#c0c0c0;
|
|---|
| 442 | }
|
|---|
| 443 | way[highway=road] {
|
|---|
| 444 | width: 2;
|
|---|
| 445 | casing-width: 0.5;
|
|---|
| 446 | casing-color: #ff9696;
|
|---|
| 447 | color: #770000;
|
|---|
| 448 | }
|
|---|
| 449 | way[highway=unsurfaced] {
|
|---|
| 450 | width: 1;
|
|---|
| 451 | color: street#c0c0c0;
|
|---|
| 452 | }
|
|---|
| 453 | way[highway=track][area?], relation[type=multipolygon][highway=track] {
|
|---|
| 454 | fill-color: highway_track#006600;
|
|---|
| 455 | }
|
|---|
| 456 | way[highway=track] {
|
|---|
| 457 | width: 1;
|
|---|
| 458 | color: highway_track#006600;
|
|---|
| 459 | }
|
|---|
| 460 | way[highway=residential] {
|
|---|
| 461 | width: 2;
|
|---|
| 462 | color: street#c0c0c0;
|
|---|
| 463 | }
|
|---|
| 464 | way[highway=living_street] {
|
|---|
| 465 | width: 2;
|
|---|
| 466 | dashes: 9,9;
|
|---|
| 467 | dashes-background-color: livingdashed#00ff00;
|
|---|
| 468 | color: street#c0c0c0;
|
|---|
| 469 | }
|
|---|
| 470 | way[highway=service][area?], relation[type=multipolygon][highway=service] {
|
|---|
| 471 | fill-color: service#809bc0;
|
|---|
| 472 | }
|
|---|
| 473 | way[highway=service][!area?] {
|
|---|
| 474 | width: 1;
|
|---|
| 475 | color: service#809bc0;
|
|---|
| 476 | }
|
|---|
| 477 | way[highway=bridleway] {
|
|---|
| 478 | width: 1;
|
|---|
| 479 | color: horse#c08000;
|
|---|
| 480 | }
|
|---|
| 481 | way[highway=cycleway] {
|
|---|
| 482 | width: 1;
|
|---|
| 483 | color: bicycle#b100ff;
|
|---|
| 484 | }
|
|---|
| 485 | way[highway=footway][area?], relation[type=multipolygon][highway=footway] {
|
|---|
| 486 | fill-color: foot#00ff00;
|
|---|
| 487 | }
|
|---|
| 488 | way[highway=footway][!area?] {
|
|---|
| 489 | width: 1;
|
|---|
| 490 | color: foot#00ff00;
|
|---|
| 491 | }
|
|---|
| 492 | way[highway=path][bicycle!=designated][bicycle!=official][foot!=designated][foot!=official] {
|
|---|
| 493 | width: 1;
|
|---|
| 494 | dashes: 9,9;
|
|---|
| 495 | color: foot#00ff00;
|
|---|
| 496 | }
|
|---|
| 497 | /* display path with bicycle/foot=designated/official as if it was cycleway/footway */
|
|---|
| 498 | way[highway=path][bicycle=designated],
|
|---|
| 499 | way[highway=path][bicycle=official] {
|
|---|
| 500 | width: 1;
|
|---|
| 501 | color: bicycle#b100ff;
|
|---|
| 502 | }
|
|---|
| 503 | way[highway=path][foot=designated],
|
|---|
| 504 | way[highway=path][foot=official] {
|
|---|
| 505 | width: 1;
|
|---|
| 506 | color: foot#00ff00;
|
|---|
| 507 | }
|
|---|
| 508 | way[highway=path][bicycle=designated][foot=designated],
|
|---|
| 509 | way[highway=path][bicycle=official][foot=official] {
|
|---|
| 510 | width: 1;
|
|---|
| 511 | color: bicycle#b100ff;
|
|---|
| 512 | dashes: 14,14;
|
|---|
| 513 | dashes-background-color: foot#00ff00;
|
|---|
| 514 | }
|
|---|
| 515 | way[highway=cycleway][foot=yes],
|
|---|
| 516 | way[highway=path][bicycle=designated][foot=yes],
|
|---|
| 517 | way[highway=path][bicycle=official][foot=yes] {
|
|---|
| 518 | width: 1;
|
|---|
| 519 | color: bicycle#b100ff;
|
|---|
| 520 | dashes: 21,7;
|
|---|
| 521 | dashes-background-color: foot#00ff00;
|
|---|
| 522 | }
|
|---|
| 523 | way[highway=footway][bicycle=yes],
|
|---|
| 524 | way[highway=path][bicycle=yes][foot=designated],
|
|---|
| 525 | way[highway=path][bicycle=yes][foot=official] {
|
|---|
| 526 | width: 1;
|
|---|
| 527 | color: foot#00ff00;
|
|---|
| 528 | dashes: 21,7;
|
|---|
| 529 | dashes-background-color: bicycle#b100ff;
|
|---|
| 530 | }
|
|---|
| 531 | way[highway=pedestrian][area?], relation[type=multipolygon][highway=pedestrian] {
|
|---|
| 532 | width: 3;
|
|---|
| 533 | color: foot#00ff00;
|
|---|
| 534 | fill-color: foot#00ff00;
|
|---|
| 535 | }
|
|---|
| 536 | way[highway=pedestrian] {
|
|---|
| 537 | width: 3;
|
|---|
| 538 | color: foot#00ff00;
|
|---|
| 539 | }
|
|---|
| 540 | way[highway=steps] {
|
|---|
| 541 | width: 1;
|
|---|
| 542 | color: foot#00ff00;
|
|---|
| 543 | dashes: 2,2;
|
|---|
| 544 | }
|
|---|
| 545 | node[highway=steps] {
|
|---|
| 546 | icon-image: "transport/steps.png";
|
|---|
| 547 | text: auto;
|
|---|
| 548 | }
|
|---|
| 549 | way[highway=bus_guideway] {
|
|---|
| 550 | width: 1;
|
|---|
| 551 | color: rail#404040;
|
|---|
| 552 | dashes: 9,9;
|
|---|
| 553 | }
|
|---|
| 554 | way[highway=raceway] {
|
|---|
| 555 | width: 1;
|
|---|
| 556 | color: raceway#ff80ff;
|
|---|
| 557 | }
|
|---|
| 558 | node[direction=clockwise] {
|
|---|
| 559 | icon-image: "vehicle/restriction/roundabout_left.png";
|
|---|
| 560 | text: auto;
|
|---|
| 561 | }
|
|---|
| 562 | node[highway=mini_roundabout] {
|
|---|
| 563 | icon-image: "vehicle/restriction/roundabout_left.png";
|
|---|
| 564 | text: auto;
|
|---|
| 565 | }
|
|---|
| 566 | node:righthandtraffic[highway=mini_roundabout] {
|
|---|
| 567 | icon-image: "vehicle/restriction/roundabout_right.png";
|
|---|
| 568 | }
|
|---|
| 569 | node[highway=stop] {
|
|---|
| 570 | icon-image: "vehicle/restriction/stop.png";
|
|---|
| 571 | text: auto;
|
|---|
| 572 | }
|
|---|
| 573 | node[highway=give_way] {
|
|---|
| 574 | icon-image: "vehicle/restriction/right_of_way.png";
|
|---|
| 575 | text: auto;
|
|---|
| 576 | }
|
|---|
| 577 | node[highway=traffic_signals] {
|
|---|
| 578 | icon-image: "vehicle/restriction/traffic-light.png";
|
|---|
| 579 | text: auto;
|
|---|
| 580 | }
|
|---|
| 581 | node[highway=street_lamp] {
|
|---|
| 582 | icon-image: "misc/streetlamp.png";
|
|---|
| 583 | text: auto;
|
|---|
| 584 | }
|
|---|
| 585 | node[highway=speed_camera] {
|
|---|
| 586 | icon-image: "vehicle/restriction/speed_trap.png";
|
|---|
| 587 | text: auto;
|
|---|
| 588 | }
|
|---|
| 589 | node[traffic_sign=city_limit] {
|
|---|
| 590 | icon-image: "vehicle/restriction/citylimit.png";
|
|---|
| 591 | text: auto;
|
|---|
| 592 | }
|
|---|
| 593 | node[highway=crossing] {
|
|---|
| 594 | icon-image: "vehicle/zebra_crossing.png";
|
|---|
| 595 | text: auto;
|
|---|
| 596 | }
|
|---|
| 597 | node[highway=incline], node[highway=incline_steep] {
|
|---|
| 598 | icon-image: "vehicle/restriction/incline.png";
|
|---|
| 599 | text: auto;
|
|---|
| 600 | }
|
|---|
| 601 | node[highway=motorway_junction] {
|
|---|
| 602 | icon-image: "vehicle/exit.png";
|
|---|
| 603 | text: auto;
|
|---|
| 604 | }
|
|---|
| 605 | area[highway=services] {
|
|---|
| 606 | fill-color: services#c0c0c0;
|
|---|
| 607 | }
|
|---|
| 608 | node[highway=services] {
|
|---|
| 609 | icon-image: "vehicle/services.png";
|
|---|
| 610 | text: auto;
|
|---|
| 611 | }
|
|---|
| 612 | area[highway=rest_area] {
|
|---|
| 613 | fill-color: services#c0c0c0;
|
|---|
| 614 | }
|
|---|
| 615 | node[highway=rest_area] {
|
|---|
| 616 | icon-image: "vehicle/parking.png";
|
|---|
| 617 | text: auto;
|
|---|
| 618 | }
|
|---|
| 619 | node[highway=ford], node[ford?] {
|
|---|
| 620 | icon-image: "vehicle/ford.png";
|
|---|
| 621 | text: auto;
|
|---|
| 622 | }
|
|---|
| 623 | way[ford?]::core_ford {
|
|---|
| 624 | z-index: 1;
|
|---|
| 625 | width: 2;
|
|---|
| 626 | color: water#0000ff;
|
|---|
| 627 | dashes: 9,9;
|
|---|
| 628 | }
|
|---|
| 629 | area[highway=platform]:closed {
|
|---|
| 630 | fill-color: highway_platform#c0c0c0;
|
|---|
| 631 | }
|
|---|
| 632 | way[highway=platform] {
|
|---|
| 633 | width: 2;
|
|---|
| 634 | color: highway_platform#c0c0c0;
|
|---|
| 635 | }
|
|---|
| 636 | node[highway=turning_circle] {
|
|---|
| 637 | icon-image: "vehicle/turning_circle.png";
|
|---|
| 638 | text: auto;
|
|---|
| 639 | }
|
|---|
| 640 | node[highway=turning_loop] {
|
|---|
| 641 | icon-image: "vehicle/turning_loop.png";
|
|---|
| 642 | text: auto;
|
|---|
| 643 | }
|
|---|
| 644 | node[highway=passing_place] {
|
|---|
| 645 | icon-image: "vehicle/passing_place.png";
|
|---|
| 646 | text: auto;
|
|---|
| 647 | }
|
|---|
| 648 | node[highway=elevator] {
|
|---|
| 649 | icon-image: "service/elevator.png";
|
|---|
| 650 | text: auto;
|
|---|
| 651 | }
|
|---|
| 652 | way[highway=construction] {
|
|---|
| 653 | width: 2;
|
|---|
| 654 | color: construction#ffff00;
|
|---|
| 655 | dashes: 9,9;
|
|---|
| 656 | }
|
|---|
| 657 | node[highway=construction] {
|
|---|
| 658 | icon-image: "misc/construction.png";
|
|---|
| 659 | text: auto;
|
|---|
| 660 | }
|
|---|
| 661 | area[highway=emergency_access_point] {
|
|---|
| 662 | fill-color: emergency_access_point#c0c0c0;
|
|---|
| 663 | }
|
|---|
| 664 | node[highway=emergency_access_point] {
|
|---|
| 665 | icon-image: "service/emergency_access_point.png";
|
|---|
| 666 | text: auto;
|
|---|
| 667 | }
|
|---|
| 668 | node[highway=motorway], node[highway=motorway_link],
|
|---|
| 669 | node[highway=trunk], node[highway=trunk_link],
|
|---|
| 670 | node[highway=primary], node[highway=primary_link],
|
|---|
| 671 | node[highway=secondary], node[highway=secondary_link],
|
|---|
| 672 | node[highway=tertiary], node[highway=tertiary_link],
|
|---|
| 673 | node[highway=unclassified],
|
|---|
| 674 | node[highway=road],
|
|---|
| 675 | node[highway=unsurfaced],
|
|---|
| 676 | node[highway=track],
|
|---|
| 677 | node[highway=residential],
|
|---|
| 678 | node[highway=living_street],
|
|---|
| 679 | node[highway=service],
|
|---|
| 680 | node[highway=bridleway],
|
|---|
| 681 | node[highway=cycleway],
|
|---|
| 682 | node[highway=footway],
|
|---|
| 683 | node[highway=path],
|
|---|
| 684 | node[highway=pedestrian],
|
|---|
| 685 | node[highway=bus_guideway],
|
|---|
| 686 | node[highway=platform] {
|
|---|
| 687 | icon-image: "misc/deprecated.png";
|
|---|
| 688 | text: auto;
|
|---|
| 689 | }
|
|---|
| 690 |
|
|---|
| 691 | /************************/
|
|---|
| 692 | /* traffic_calming tags */
|
|---|
| 693 | /************************/
|
|---|
| 694 |
|
|---|
| 695 | node[traffic_calming] {
|
|---|
| 696 | icon-image: "vehicle/traffic_calming.png";
|
|---|
| 697 | text: auto;
|
|---|
| 698 | }
|
|---|
| 699 | node[traffic_calming=chicane] {
|
|---|
| 700 | icon-image: "vehicle/chicane.png";
|
|---|
| 701 | text: auto;
|
|---|
| 702 | }
|
|---|
| 703 | node[traffic_calming=choker],
|
|---|
| 704 | node[traffic_calming=cushion] {
|
|---|
| 705 | icon-image: "vehicle/passing_place.png";
|
|---|
| 706 | text: auto;
|
|---|
| 707 | }
|
|---|
| 708 |
|
|---|
| 709 | /****************/
|
|---|
| 710 | /* junction tag */
|
|---|
| 711 | /****************/
|
|---|
| 712 |
|
|---|
| 713 | node[junction=roundabout] {
|
|---|
| 714 | icon-image: "vehicle/restriction/roundabout_left.png";
|
|---|
| 715 | text: auto;
|
|---|
| 716 | }
|
|---|
| 717 | node:righthandtraffic[junction=roundabout] {
|
|---|
| 718 | icon-image: "vehicle/restriction/roundabout_right.png";
|
|---|
| 719 | }
|
|---|
| 720 |
|
|---|
| 721 | /*****************/
|
|---|
| 722 | /* cycleway tags */
|
|---|
| 723 | /*****************/
|
|---|
| 724 |
|
|---|
| 725 | way[oneway?][cycleway=lane]:righthandtraffic::core_cycleway,
|
|---|
| 726 | way[oneway=-1][cycleway=opposite_lane]:righthandtraffic::core_cycleway {
|
|---|
| 727 | set lR;
|
|---|
| 728 | set righthandtr;
|
|---|
| 729 | }
|
|---|
| 730 | way[oneway?][cycleway=opposite_lane]:righthandtraffic::core_cycleway,
|
|---|
| 731 | way[oneway=-1][cycleway=lane]:righthandtraffic::core_cycleway {
|
|---|
| 732 | set lL;
|
|---|
| 733 | set righthandtr;
|
|---|
| 734 | }
|
|---|
| 735 | way[oneway?][cycleway=lane]!.righthandtr::core_cycleway,
|
|---|
| 736 | way[oneway=-1][cycleway=opposite_lane]!.righthandtr::core_cycleway {
|
|---|
| 737 | set lL;
|
|---|
| 738 | }
|
|---|
| 739 | way[oneway?][cycleway=opposite_lane]!.righthandtr::core_cycleway,
|
|---|
| 740 | way[oneway=-1][cycleway=lane]!.righthandtr::core_cycleway {
|
|---|
| 741 | set lR;
|
|---|
| 742 | }
|
|---|
| 743 | way[cycleway:left=lane]::core_cycleway {
|
|---|
| 744 | set lL;
|
|---|
| 745 | }
|
|---|
| 746 | way[cycleway:right=lane]::core_cycleway {
|
|---|
| 747 | set lR;
|
|---|
| 748 | }
|
|---|
| 749 | way[!oneway][cycleway=lane]::core_cycleway {
|
|---|
| 750 | set lL;
|
|---|
| 751 | set lR;
|
|---|
| 752 | }
|
|---|
| 753 |
|
|---|
| 754 | way[oneway?][cycleway=track]:righthandtraffic::core_cycleway,
|
|---|
| 755 | way[oneway=-1][cycleway=opposite_track]:righthandtraffic::core_cycleway {
|
|---|
| 756 | set tR;
|
|---|
| 757 | set righthandtr;
|
|---|
| 758 | }
|
|---|
| 759 | way[oneway?][cycleway=opposite_track]:righthandtraffic::core_cycleway,
|
|---|
| 760 | way[oneway=-1][cycleway=track]:righthandtraffic::core_cycleway {
|
|---|
| 761 | set tL;
|
|---|
| 762 | set righthandtr;
|
|---|
| 763 | }
|
|---|
| 764 | way[oneway?][cycleway=track]!.righthandtr::core_cycleway,
|
|---|
| 765 | way[oneway=-1][cycleway=opposite_track]!.righthandtr::core_cycleway {
|
|---|
| 766 | set tL;
|
|---|
| 767 | }
|
|---|
| 768 | way[oneway?][cycleway=opposite_track]!.righthandtr::core_cycleway,
|
|---|
| 769 | way[oneway=-1][cycleway=track]!.righthandtr::core_cycleway {
|
|---|
| 770 | set tR;
|
|---|
| 771 | }
|
|---|
| 772 | way[cycleway:left=track]::core_cycleway {
|
|---|
| 773 | set tL;
|
|---|
| 774 | }
|
|---|
| 775 | way[cycleway:right=track]::core_cycleway {
|
|---|
| 776 | set tR;
|
|---|
| 777 | }
|
|---|
| 778 | way[!oneway][cycleway=track]::core_cycleway {
|
|---|
| 779 | set tL;
|
|---|
| 780 | set tR;
|
|---|
| 781 | }
|
|---|
| 782 |
|
|---|
| 783 | way.lR::core_cycleway {
|
|---|
| 784 | width: 2;
|
|---|
| 785 | color: bicycle#b100ff;
|
|---|
| 786 | dashes: 6, 10;
|
|---|
| 787 | offset: 0 - (prop("width", "default") / 2) - 2;
|
|---|
| 788 | major-z-index: 2.1;
|
|---|
| 789 | modifier: true;
|
|---|
| 790 | }
|
|---|
| 791 | way[prop("lL","core_cycleway")]::core_cycleway2 {
|
|---|
| 792 | width: 2;
|
|---|
| 793 | color: bicycle#b100ff;
|
|---|
| 794 | dashes: 6, 10;
|
|---|
| 795 | offset: (prop("width", "default") / 2) + 2;
|
|---|
| 796 | major-z-index: 2.1;
|
|---|
| 797 | modifier: true;
|
|---|
| 798 | }
|
|---|
| 799 | way.tR::core_cycleway {
|
|---|
| 800 | width: 2;
|
|---|
| 801 | color: bicycle#b100ff;
|
|---|
| 802 | dashes: 25, 8;
|
|---|
| 803 | offset: 0 - (prop("width", "default") / 2) - 2;
|
|---|
| 804 | major-z-index: 2.1;
|
|---|
| 805 | modifier: true;
|
|---|
| 806 | }
|
|---|
| 807 | way[prop("tL","core_cycleway")]::core_cycleway2 {
|
|---|
| 808 | width: 2;
|
|---|
| 809 | color: bicycle#b100ff;
|
|---|
| 810 | dashes: 25, 8;
|
|---|
| 811 | offset: (prop("width", "default") / 2) + 2;
|
|---|
| 812 | major-z-index: 2.1;
|
|---|
| 813 | modifier: true;
|
|---|
| 814 | }
|
|---|
| 815 |
|
|---|
| 816 | way[cycleway=opposite]::core_cycleway {
|
|---|
| 817 | object-z-index: 1;
|
|---|
| 818 | width: +0;
|
|---|
| 819 | color: bicycle#b100ff;
|
|---|
| 820 | dashes: 4,10;
|
|---|
| 821 | }
|
|---|
| 822 | node[cycleway=lane], node[cycleway=opposite_lane],
|
|---|
| 823 | node[cycleway=track], node[cycleway=opposite_track],
|
|---|
| 824 | node[cycleway=opposite] {
|
|---|
| 825 | icon-image: "misc/deprecated.png";
|
|---|
| 826 | text: auto;
|
|---|
| 827 | }
|
|---|
| 828 |
|
|---|
| 829 | /******************/
|
|---|
| 830 | /* tracktype tags */
|
|---|
| 831 | /******************/
|
|---|
| 832 |
|
|---|
| 833 | way[highway=track][tracktype=grade1] {
|
|---|
| 834 | width: 2;
|
|---|
| 835 | dashes: 2,2;
|
|---|
| 836 | }
|
|---|
| 837 | way[highway=track][tracktype=grade2] {
|
|---|
| 838 | dashes: 2,3;
|
|---|
| 839 | }
|
|---|
| 840 | way[highway=track][tracktype=grade3] {
|
|---|
| 841 | dashes: 2,4;
|
|---|
| 842 | }
|
|---|
| 843 | way[highway=track][tracktype=grade4] {
|
|---|
| 844 | dashes: 2,5;
|
|---|
| 845 | }
|
|---|
| 846 | way[highway=track][tracktype=grade5] {
|
|---|
| 847 | dashes: 1,5;
|
|---|
| 848 | }
|
|---|
| 849 |
|
|---|
| 850 | /**************/
|
|---|
| 851 | /* piste tags */
|
|---|
| 852 | /**************/
|
|---|
| 853 |
|
|---|
| 854 | area[piste:difficulty=easy]:closed::core_piste {
|
|---|
| 855 | fill-color: piste_easy#0000ff;
|
|---|
| 856 | }
|
|---|
| 857 | way[piste:difficulty=easy]::core_piste {
|
|---|
| 858 | z-index: -1; /* below line style from highway=* tag */
|
|---|
| 859 | modifier: false; /* suppress default line if there is no style on default layer */
|
|---|
| 860 | width: 6;
|
|---|
| 861 | color: piste_easy#0000ff;
|
|---|
| 862 | }
|
|---|
| 863 | area[piste:difficulty=intermediate]:closed::core_piste {
|
|---|
| 864 | fill-color: piste_intermediate#ff0000;
|
|---|
| 865 | }
|
|---|
| 866 | way[piste:difficulty=intermediate]::core_piste {
|
|---|
| 867 | z-index: -1;
|
|---|
| 868 | modifier: false;
|
|---|
| 869 | width: 6;
|
|---|
| 870 | color: piste_intermediate#ff0000;
|
|---|
| 871 | }
|
|---|
| 872 | area[piste:difficulty=advanced]:closed::core_piste {
|
|---|
| 873 | fill-color: piste_advanced#606060;
|
|---|
| 874 | }
|
|---|
| 875 | way[piste:difficulty=advanced]::core_piste {
|
|---|
| 876 | z-index: -1;
|
|---|
| 877 | modifier: false;
|
|---|
| 878 | width: 6;
|
|---|
| 879 | color: piste_advanced#606060;
|
|---|
| 880 | }
|
|---|
| 881 | area[piste:difficulty=expert]:closed::core_piste {
|
|---|
| 882 | fill-color: piste_expert#606060;
|
|---|
| 883 | }
|
|---|
| 884 | way[piste:difficulty=expert]::core_piste {
|
|---|
| 885 | z-index: -1;
|
|---|
| 886 | modifier: false;
|
|---|
| 887 | width: 6;
|
|---|
| 888 | color: piste_expert#606060;
|
|---|
| 889 | }
|
|---|
| 890 | area[piste:difficulty=freeride]:closed::core_piste {
|
|---|
| 891 | fill-color: piste_freeride#ffff00;
|
|---|
| 892 | }
|
|---|
| 893 | way[piste:difficulty=freeride]::core_piste {
|
|---|
| 894 | z-index: -1;
|
|---|
| 895 | modifier: false;
|
|---|
| 896 | width: 6;
|
|---|
| 897 | color: piste_freeride#ffff00;
|
|---|
| 898 | }
|
|---|
| 899 | area[piste:difficulty=novice]:closed::core_piste {
|
|---|
| 900 | fill-color: piste_novice#00ff00;
|
|---|
| 901 | }
|
|---|
| 902 | way[piste:difficulty=novice]::core_piste {
|
|---|
| 903 | z-index: -1;
|
|---|
| 904 | modifier: false;
|
|---|
| 905 | width: 6;
|
|---|
| 906 | color: piste_novice#00ff00;
|
|---|
| 907 | }
|
|---|
| 908 | node[piste:difficulty=easy],
|
|---|
| 909 | node[piste:difficulty=intermediate],
|
|---|
| 910 | node[piste:difficulty=advanced],
|
|---|
| 911 | node[piste:difficulty=expert],
|
|---|
| 912 | node[piste:difficulty=freeride],
|
|---|
| 913 | node[piste:difficulty=novice] {
|
|---|
| 914 | icon-image: "sport/skiing.png";
|
|---|
| 915 | }
|
|---|
| 916 |
|
|---|
| 917 | /**************/
|
|---|
| 918 | /* power tags */
|
|---|
| 919 | /**************/
|
|---|
| 920 |
|
|---|
| 921 | area[power=tower] {
|
|---|
| 922 | fill-color: power#eeeeee;
|
|---|
| 923 | }
|
|---|
| 924 | node[power=tower] {
|
|---|
| 925 | icon-image: "misc/landmark/power/tower_small.png";
|
|---|
| 926 | text: auto;
|
|---|
| 927 | }
|
|---|
| 928 | node[power=pole] {
|
|---|
| 929 | icon-image: "misc/landmark/power/pole.png";
|
|---|
| 930 | text: auto;
|
|---|
| 931 | }
|
|---|
| 932 | way[power=line],
|
|---|
| 933 | way[power=minor_line] {
|
|---|
| 934 | width: 1;
|
|---|
| 935 | color: power#eeeeee;
|
|---|
| 936 | }
|
|---|
| 937 | node[power=line],
|
|---|
| 938 | node[power=minor_line] {
|
|---|
| 939 | icon-image: "misc/deprecated.png";
|
|---|
| 940 | text: auto;
|
|---|
| 941 | }
|
|---|
| 942 | area[power=plant],
|
|---|
| 943 | area[power=sub_station],
|
|---|
| 944 | area[power=substation],
|
|---|
| 945 | area[power=transformer] {
|
|---|
| 946 | fill-color: power#eeeeee;
|
|---|
| 947 | }
|
|---|
| 948 | node[power=plant],
|
|---|
| 949 | node[power=sub_station],
|
|---|
| 950 | node[power=substation],
|
|---|
| 951 | node[power=cable_distribution_cabinet] {
|
|---|
| 952 | icon-image: "misc/landmark/power.png";
|
|---|
| 953 | text: auto;
|
|---|
| 954 | }
|
|---|
| 955 | node[power=transformer] {
|
|---|
| 956 | icon-image: "misc/landmark/power/transformer.png";
|
|---|
| 957 | text: auto;
|
|---|
| 958 | }
|
|---|
| 959 | /* power_source is deprecated by the wiki, but still in use */
|
|---|
| 960 | /* generator:source replaces power_source */
|
|---|
| 961 | area[power_source=wind], area[generator:source=wind],
|
|---|
| 962 | area[power_source=hydro], area[generator:source=hydro],
|
|---|
| 963 | area[power_source=fossil],
|
|---|
| 964 | area[power_source=coal], area[generator:source=coal],
|
|---|
| 965 | area[power_source=gas], area[generator:source=gas],
|
|---|
| 966 | area[power_source=photovoltaic],
|
|---|
| 967 | area[power_source=nuclear], area[generator:source=nuclear],
|
|---|
| 968 | area[power=generator] {
|
|---|
| 969 | fill-color: power#eeeeee;
|
|---|
| 970 | }
|
|---|
| 971 | node[power_source=wind], node[generator:source=wind] {
|
|---|
| 972 | icon-image: "misc/landmark/power/wind.png";
|
|---|
| 973 | text: auto;
|
|---|
| 974 | }
|
|---|
| 975 | node[power_source=hydro], node[generator:source=hydro] {
|
|---|
| 976 | icon-image: "misc/landmark/power/hydro.png";
|
|---|
| 977 | text: auto;
|
|---|
| 978 | }
|
|---|
| 979 | node[power_source=fossil],
|
|---|
| 980 | node[power_source=coal], node[generator:source=coal],
|
|---|
| 981 | node[power_source=gas], node[generator:source=gas] {
|
|---|
| 982 | icon-image: "misc/landmark/power/fossil.png";
|
|---|
| 983 | text: auto;
|
|---|
| 984 | }
|
|---|
| 985 | node[power_source=photovoltaic] {
|
|---|
| 986 | /* FIXME photovoltaic NOT fossil*/
|
|---|
| 987 | icon-image: "misc/landmark/power/fossil.png";
|
|---|
| 988 | text: auto;
|
|---|
| 989 | }
|
|---|
| 990 | node[power_source=nuclear], node[generator:source=nuclear] {
|
|---|
| 991 | icon-image: "misc/landmark/power/nuclear.png";
|
|---|
| 992 | text: auto;
|
|---|
| 993 | }
|
|---|
| 994 | node[power=generator] {
|
|---|
| 995 | icon-image: "misc/landmark/power.png";
|
|---|
| 996 | text: auto;
|
|---|
| 997 | }
|
|---|
| 998 |
|
|---|
| 999 | /*****************/
|
|---|
| 1000 | /* man_made tags */
|
|---|
| 1001 | /*****************/
|
|---|
| 1002 |
|
|---|
| 1003 | area[man_made=beacon],
|
|---|
| 1004 | area[man_made=chimney],
|
|---|
| 1005 | area[man_made=crane],
|
|---|
| 1006 | area[man_made=flagpole],
|
|---|
| 1007 | area[man_made=gasometer],
|
|---|
| 1008 | area[man_made=groyne],
|
|---|
| 1009 | area[man_made=lighthouse],
|
|---|
| 1010 | area[man_made=monitoring_station],
|
|---|
| 1011 | area[man_made=mineshaft],
|
|---|
| 1012 | area[man_made=adit] {
|
|---|
| 1013 | fill-color: manmade#d8d8d8;
|
|---|
| 1014 | }
|
|---|
| 1015 | node[man_made=beacon] {
|
|---|
| 1016 | icon-image: "misc/landmark/beacon.png";
|
|---|
| 1017 | text: auto;
|
|---|
| 1018 | }
|
|---|
| 1019 | node[man_made=chimney] {
|
|---|
| 1020 | icon-image: "misc/landmark/chimney.png";
|
|---|
| 1021 | text: auto;
|
|---|
| 1022 | }
|
|---|
| 1023 | node[man_made=crane] {
|
|---|
| 1024 | icon-image: "misc/landmark/crane.png";
|
|---|
| 1025 | text: auto;
|
|---|
| 1026 | }
|
|---|
| 1027 | node[man_made=flagpole] {
|
|---|
| 1028 | icon-image: "misc/flag.png";
|
|---|
| 1029 | text: auto;
|
|---|
| 1030 | }
|
|---|
| 1031 | node[man_made=gasometer] {
|
|---|
| 1032 | icon-image: "misc/landmark/gasometer.png";
|
|---|
| 1033 | text: auto;
|
|---|
| 1034 | }
|
|---|
| 1035 | node[man_made=groyne] {
|
|---|
| 1036 | icon-image: "nautical/groyne.png";
|
|---|
| 1037 | text: auto;
|
|---|
| 1038 | }
|
|---|
| 1039 | node[man_made=lighthouse] {
|
|---|
| 1040 | icon-image: "misc/landmark/lighthouse.png";
|
|---|
| 1041 | text: auto;
|
|---|
| 1042 | }
|
|---|
| 1043 | node[man_made=monitoring_station] {
|
|---|
| 1044 | icon-image: "misc/landmark/measurement_station.png";
|
|---|
| 1045 | text: auto;
|
|---|
| 1046 | }
|
|---|
| 1047 | node[man_made=mineshaft] {
|
|---|
| 1048 | icon-image: "misc/landmark/mine.png";
|
|---|
| 1049 | text: auto;
|
|---|
| 1050 | }
|
|---|
| 1051 | node[man_made=adit] {
|
|---|
| 1052 | icon-image: "misc/landmark/adit.png";
|
|---|
| 1053 | text: auto;
|
|---|
| 1054 | }
|
|---|
| 1055 | area[man_made=pier]:closed {
|
|---|
| 1056 | fill-color: pier#660000;
|
|---|
| 1057 | }
|
|---|
| 1058 | way[man_made=pier] {
|
|---|
| 1059 | width: 2;
|
|---|
| 1060 | color: pier#660000;
|
|---|
| 1061 | }
|
|---|
| 1062 | node[man_made=pier] {
|
|---|
| 1063 | icon-image: "nautical/pier.png";
|
|---|
| 1064 | text: auto;
|
|---|
| 1065 | }
|
|---|
| 1066 | way[embankment?][!highway][!railway][!waterway],
|
|---|
| 1067 | way[man_made=embankment][!highway][!railway][!waterway] {
|
|---|
| 1068 | repeat-image: "misc/embankment-pattern.png";
|
|---|
| 1069 | repeat-image-align: top;
|
|---|
| 1070 | width: 1;
|
|---|
| 1071 | color: embankment#c14d00;
|
|---|
| 1072 | }
|
|---|
| 1073 | way[embankment?][highway],
|
|---|
| 1074 | way[embankment?][railway],
|
|---|
| 1075 | way[embankment?][waterway],
|
|---|
| 1076 | way[man_made=embankment][highway],
|
|---|
| 1077 | way[man_made=embankment][railway],
|
|---|
| 1078 | way[man_made=embankment][waterway] {
|
|---|
| 1079 | repeat-image: "misc/embankment-pattern-centered.png";
|
|---|
| 1080 | }
|
|---|
| 1081 | way[man_made=pipeline] {
|
|---|
| 1082 | width: 2;
|
|---|
| 1083 | color: pipeline#660000;
|
|---|
| 1084 | }
|
|---|
| 1085 | node[man_made=pipeline] {
|
|---|
| 1086 | icon-image: "misc/deprecated.png";
|
|---|
| 1087 | text: auto;
|
|---|
| 1088 | }
|
|---|
| 1089 | node[man_made=petroleum_well] {
|
|---|
| 1090 | icon-image: "misc/no_icon.png";
|
|---|
| 1091 | text: auto;
|
|---|
| 1092 | }
|
|---|
| 1093 | area[man_made=reservoir_covered],
|
|---|
| 1094 | area[man_made=surveillance],
|
|---|
| 1095 | area[man_made=survey_point],
|
|---|
| 1096 | area[man_made=tower],
|
|---|
| 1097 | area[man_made=wastewater_plant],
|
|---|
| 1098 | area[man_made=watermill],
|
|---|
| 1099 | area[man_made=water_tower],
|
|---|
| 1100 | area[man_made=water_well],
|
|---|
| 1101 | area[man_made=windmill],
|
|---|
| 1102 | area[man_made=works],
|
|---|
| 1103 | area[man_made=water_works] {
|
|---|
| 1104 | fill-color: manmade#d8d8d8;
|
|---|
| 1105 | }
|
|---|
| 1106 | node[man_made=reservoir_covered] {
|
|---|
| 1107 | icon-image: "misc/landmark/reservoir_covered.png";
|
|---|
| 1108 | text: auto;
|
|---|
| 1109 | }
|
|---|
| 1110 | node[man_made=surveillance] {
|
|---|
| 1111 | icon-image: "misc/surveillance.png";
|
|---|
| 1112 | text: auto;
|
|---|
| 1113 | }
|
|---|
| 1114 | node[man_made=survey_point] {
|
|---|
| 1115 | icon-image: "misc/landmark/survey_point.png";
|
|---|
| 1116 | text: auto;
|
|---|
| 1117 | }
|
|---|
| 1118 | node[man_made=tower] {
|
|---|
| 1119 | icon-image: "misc/landmark/tower.png";
|
|---|
| 1120 | text: auto;
|
|---|
| 1121 | }
|
|---|
| 1122 | node[man_made=wastewater_plant] {
|
|---|
| 1123 | icon-image: "misc/landmark/wastewater_plant.png";
|
|---|
| 1124 | text: auto;
|
|---|
| 1125 | }
|
|---|
| 1126 | node[man_made=watermill] {
|
|---|
| 1127 | icon-image: "misc/landmark/watermill.png";
|
|---|
| 1128 | text: auto;
|
|---|
| 1129 | }
|
|---|
| 1130 | node[man_made=water_tower] {
|
|---|
| 1131 | icon-image: "misc/landmark/water_tower.png";
|
|---|
| 1132 | text: auto;
|
|---|
| 1133 | }
|
|---|
| 1134 | node[man_made=water_well] {
|
|---|
| 1135 | icon-image: "misc/landmark/water_well.png";
|
|---|
| 1136 | text: auto;
|
|---|
| 1137 | }
|
|---|
| 1138 | node[man_made=windmill] {
|
|---|
| 1139 | icon-image: "misc/landmark/windmill.png";
|
|---|
| 1140 | text: auto;
|
|---|
| 1141 | }
|
|---|
| 1142 | node[man_made=works] {
|
|---|
| 1143 | icon-image: "misc/landmark/works.png";
|
|---|
| 1144 | text: auto;
|
|---|
| 1145 | }
|
|---|
| 1146 | node[man_made=water_works] {
|
|---|
| 1147 | icon-image: "misc/landmark/water_works.png";
|
|---|
| 1148 | text: auto;
|
|---|
| 1149 | }
|
|---|
| 1150 |
|
|---|
| 1151 | /***************/
|
|---|
| 1152 | /* office tags */
|
|---|
| 1153 | /***************/
|
|---|
| 1154 |
|
|---|
| 1155 | area[office=company],
|
|---|
| 1156 | area[office=government] {
|
|---|
| 1157 | fill-color: office#de5696;
|
|---|
| 1158 | }
|
|---|
| 1159 | node[office=company] {
|
|---|
| 1160 | icon-image: "icons/office_blue.png";
|
|---|
| 1161 | text: auto;
|
|---|
| 1162 | }
|
|---|
| 1163 | node[office=government] {
|
|---|
| 1164 | icon-image: "icons/office_pink.png";
|
|---|
| 1165 | text: auto;
|
|---|
| 1166 | }
|
|---|
| 1167 |
|
|---|
| 1168 | /****************/
|
|---|
| 1169 | /* leisure tags */
|
|---|
| 1170 | /****************/
|
|---|
| 1171 |
|
|---|
| 1172 | area[leisure=sports_centre],
|
|---|
| 1173 | area[leisure=golf_course],
|
|---|
| 1174 | area[leisure=stadium],
|
|---|
| 1175 | area[leisure=track][!area?!]:closed,
|
|---|
| 1176 | area[leisure=pitch],
|
|---|
| 1177 | area[leisure=water_park] {
|
|---|
| 1178 | fill-color: leisure#c7f1a3;
|
|---|
| 1179 | }
|
|---|
| 1180 | node[leisure=sports_centre] {
|
|---|
| 1181 | icon-image: "sport/centre.png";
|
|---|
| 1182 | text: auto;
|
|---|
| 1183 | }
|
|---|
| 1184 | node[leisure=golf_course] {
|
|---|
| 1185 | icon-image: "sport/golf.png";
|
|---|
| 1186 | text: auto;
|
|---|
| 1187 | }
|
|---|
| 1188 | node[leisure=stadium] {
|
|---|
| 1189 | icon-image: "sport/stadium.png";
|
|---|
| 1190 | text: auto;
|
|---|
| 1191 | }
|
|---|
| 1192 | way[leisure=track] {
|
|---|
| 1193 | width: 2;
|
|---|
| 1194 | color: leisure#c7f1a3;
|
|---|
| 1195 | }
|
|---|
| 1196 | node[leisure=track] {
|
|---|
| 1197 | icon-image: "sport/track.png";
|
|---|
| 1198 | text: auto;
|
|---|
| 1199 | }
|
|---|
| 1200 | node[leisure=pitch] {
|
|---|
| 1201 | icon-image: "sport/pitch.png";
|
|---|
| 1202 | text: auto;
|
|---|
| 1203 | }
|
|---|
| 1204 | node[leisure=water_park] {
|
|---|
| 1205 | icon-image: "leisure/water_park.png";
|
|---|
| 1206 | text: auto;
|
|---|
| 1207 | }
|
|---|
| 1208 | area[leisure=marina] {
|
|---|
| 1209 | fill-color: marina#0070cf;
|
|---|
| 1210 | }
|
|---|
| 1211 | node[leisure=marina] {
|
|---|
| 1212 | icon-image: "nautical/marina.png";
|
|---|
| 1213 | text: auto;
|
|---|
| 1214 | }
|
|---|
| 1215 | area[leisure=slipway],
|
|---|
| 1216 | area[leisure=fishing],
|
|---|
| 1217 | area[leisure=nature_reserve],
|
|---|
| 1218 | area[leisure=park],
|
|---|
| 1219 | area[leisure=playground],
|
|---|
| 1220 | area[leisure=garden],
|
|---|
| 1221 | area[leisure=common] {
|
|---|
| 1222 | fill-color: leisure#c7f1a3;
|
|---|
| 1223 | }
|
|---|
| 1224 | node[leisure=slipway] {
|
|---|
| 1225 | icon-image: "nautical/slipway.png";
|
|---|
| 1226 | text: auto;
|
|---|
| 1227 | }
|
|---|
| 1228 | node[leisure=fishing] {
|
|---|
| 1229 | icon-image: "sport/fishing.png";
|
|---|
| 1230 | text: auto;
|
|---|
| 1231 | }
|
|---|
| 1232 | node[leisure=nature_reserve] {
|
|---|
| 1233 | icon-image: "leisure/nature_reserve.png";
|
|---|
| 1234 | text: auto;
|
|---|
| 1235 | }
|
|---|
| 1236 | node[leisure=park] {
|
|---|
| 1237 | icon-image: "leisure/park.png";
|
|---|
| 1238 | text: auto;
|
|---|
| 1239 | }
|
|---|
| 1240 | node[leisure=playground] {
|
|---|
| 1241 | icon-image: "leisure/playground.png";
|
|---|
| 1242 | text: auto;
|
|---|
| 1243 | }
|
|---|
| 1244 | node[leisure=garden] {
|
|---|
| 1245 | icon-image: "leisure/garden.png";
|
|---|
| 1246 | text: auto;
|
|---|
| 1247 | }
|
|---|
| 1248 | node[leisure=common] {
|
|---|
| 1249 | icon-image: "leisure/common.png";
|
|---|
| 1250 | text: auto;
|
|---|
| 1251 | }
|
|---|
| 1252 | area[leisure=swimming_pool] {
|
|---|
| 1253 | fill-color: swimming_pool#51c4ef;
|
|---|
| 1254 | }
|
|---|
| 1255 | node[leisure=swimming_pool] {
|
|---|
| 1256 | icon-image: "sport/pool.png";
|
|---|
| 1257 | text: auto;
|
|---|
| 1258 | }
|
|---|
| 1259 | area[leisure=miniature_golf],
|
|---|
| 1260 | area[leisure=dog_park],
|
|---|
| 1261 | area[leisure=ice_rink],
|
|---|
| 1262 | area[leisure=sauna] {
|
|---|
| 1263 | fill-color: leisure#c7f1a3;
|
|---|
| 1264 | }
|
|---|
| 1265 | node[leisure=miniature_golf] {
|
|---|
| 1266 | icon-image: "sport/golf.png";
|
|---|
| 1267 | text: auto;
|
|---|
| 1268 | }
|
|---|
| 1269 | node[leisure=dog_park] {
|
|---|
| 1270 | icon-image: "leisure/dog.png";
|
|---|
| 1271 | text: auto;
|
|---|
| 1272 | }
|
|---|
| 1273 | node[leisure=ice_rink] {
|
|---|
| 1274 | icon-image: "sport/hockey.png";
|
|---|
| 1275 | text: auto;
|
|---|
| 1276 | }
|
|---|
| 1277 | node[leisure=sauna] {
|
|---|
| 1278 | icon-image: "leisure/sauna.png";
|
|---|
| 1279 | text: auto;
|
|---|
| 1280 | }
|
|---|
| 1281 |
|
|---|
| 1282 | /*************/
|
|---|
| 1283 | /* shop tags */
|
|---|
| 1284 | /*************/
|
|---|
| 1285 |
|
|---|
| 1286 | area[shop=supermarket],
|
|---|
| 1287 | area[shop=convenience],
|
|---|
| 1288 | area[shop=bakery],
|
|---|
| 1289 | area[shop=butcher],
|
|---|
| 1290 | area[shop=bicycle],
|
|---|
| 1291 | area[shop=doityourself],
|
|---|
| 1292 | area[shop=dry_cleaning],
|
|---|
| 1293 | area[shop=laundry],
|
|---|
| 1294 | area[shop=outdoor],
|
|---|
| 1295 | area[shop=kiosk],
|
|---|
| 1296 | area[shop=alcohol],
|
|---|
| 1297 | area[shop=beverages],
|
|---|
| 1298 | area[shop=books],
|
|---|
| 1299 | area[shop=boutique],
|
|---|
| 1300 | area[shop=car],
|
|---|
| 1301 | area[shop=car_dealer],
|
|---|
| 1302 | area[shop=car_repair],
|
|---|
| 1303 | area[shop=tyres],
|
|---|
| 1304 | area[shop=chemist],
|
|---|
| 1305 | area[shop=clothes],
|
|---|
| 1306 | area[shop=computer],
|
|---|
| 1307 | area[shop=confectionery],
|
|---|
| 1308 | area[shop=copyshop],
|
|---|
| 1309 | area[shop=curtain],
|
|---|
| 1310 | area[shop=cycle_repair],
|
|---|
| 1311 | area[shop=department_store],
|
|---|
| 1312 | area[shop=deli],
|
|---|
| 1313 | area[shop=electronics],
|
|---|
| 1314 | area[shop=erotic],
|
|---|
| 1315 | area[shop=furniture],
|
|---|
| 1316 | area[shop=fabric],
|
|---|
| 1317 | area[shop=florist],
|
|---|
| 1318 | area[shop=frame],
|
|---|
| 1319 | area[shop=gift],
|
|---|
| 1320 | area[shop=greengrocer],
|
|---|
| 1321 | area[shop=garden_centre],
|
|---|
| 1322 | area[shop=hairdresser],
|
|---|
| 1323 | area[shop=hardware],
|
|---|
| 1324 | area[shop=hearing_aids],
|
|---|
| 1325 | area[shop=hifi],
|
|---|
| 1326 | area[shop=jewelry],
|
|---|
| 1327 | area[shop=kitchen],
|
|---|
| 1328 | area[shop=mall],
|
|---|
| 1329 | area[shop=mobile_phone],
|
|---|
| 1330 | area[shop=motorcycle],
|
|---|
| 1331 | area[shop=musical_instrument],
|
|---|
| 1332 | area[shop=newsagent],
|
|---|
| 1333 | area[shop=optician],
|
|---|
| 1334 | area[shop=paint],
|
|---|
| 1335 | area[shop=pawnbroker],
|
|---|
| 1336 | area[shop=seafood],
|
|---|
| 1337 | area[shop=shoes],
|
|---|
| 1338 | area[shop=sports],
|
|---|
| 1339 | area[shop=stationery],
|
|---|
| 1340 | area[shop=tailor],
|
|---|
| 1341 | area[shop=travel_agency],
|
|---|
| 1342 | area[shop=toys],
|
|---|
| 1343 | area[shop=vacuum_cleaner],
|
|---|
| 1344 | area[shop=variety_store],
|
|---|
| 1345 | area[shop=video],
|
|---|
| 1346 | area[shop=bookmaker],
|
|---|
| 1347 | area[shop=lottery],
|
|---|
| 1348 | area[shop=shopping_centre],
|
|---|
| 1349 | area[shop=pet],
|
|---|
| 1350 | area[shop=ticket],
|
|---|
| 1351 | area[shop=interior_decoration],
|
|---|
| 1352 | area[shop=car_parts],
|
|---|
| 1353 | area[shop=video_games],
|
|---|
| 1354 | area[shop=bed],
|
|---|
| 1355 | area[shop=beauty],
|
|---|
| 1356 | area[shop=tea],
|
|---|
| 1357 | area[shop=coffee],
|
|---|
| 1358 | area[shop=bag] {
|
|---|
| 1359 | fill-color: shop#00005f;
|
|---|
| 1360 | }
|
|---|
| 1361 | node[shop=supermarket] {
|
|---|
| 1362 | icon-image: "shop/supermarket.png";
|
|---|
| 1363 | text: auto;
|
|---|
| 1364 | }
|
|---|
| 1365 | node[shop=convenience] {
|
|---|
| 1366 | icon-image: "shop/convenience.png";
|
|---|
| 1367 | text: auto;
|
|---|
| 1368 | }
|
|---|
| 1369 | node[shop=bakery] {
|
|---|
| 1370 | icon-image: "shop/groceries/bakery.png";
|
|---|
| 1371 | text: auto;
|
|---|
| 1372 | }
|
|---|
| 1373 | node[shop=butcher] {
|
|---|
| 1374 | icon-image: "shop/groceries/butcher.png";
|
|---|
| 1375 | text: auto;
|
|---|
| 1376 | }
|
|---|
| 1377 | node[shop=bicycle] {
|
|---|
| 1378 | icon-image: "sport/bicycle.png";
|
|---|
| 1379 | text: auto;
|
|---|
| 1380 | }
|
|---|
| 1381 | node[shop=doityourself] {
|
|---|
| 1382 | icon-image: "shop/diy_store.png";
|
|---|
| 1383 | text: auto;
|
|---|
| 1384 | }
|
|---|
| 1385 | node[shop=dry_cleaning],
|
|---|
| 1386 | node[shop=laundry] {
|
|---|
| 1387 | icon-image: "shop/laundry.png";
|
|---|
| 1388 | text: auto;
|
|---|
| 1389 | }
|
|---|
| 1390 | node[shop=outdoor] {
|
|---|
| 1391 | icon-image: "shop/sports/outdoor.png";
|
|---|
| 1392 | text: auto;
|
|---|
| 1393 | }
|
|---|
| 1394 | node[shop=kiosk] {
|
|---|
| 1395 | icon-image: "shop/kiosk.png";
|
|---|
| 1396 | text: auto;
|
|---|
| 1397 | }
|
|---|
| 1398 | node[shop=alcohol],
|
|---|
| 1399 | node[shop=beverages] {
|
|---|
| 1400 | icon-image: "shop/beverages.png";
|
|---|
| 1401 | text: auto;
|
|---|
| 1402 | }
|
|---|
| 1403 | node[shop=books] {
|
|---|
| 1404 | icon-image: "shop/rental/library.png";
|
|---|
| 1405 | text: auto;
|
|---|
| 1406 | }
|
|---|
| 1407 | node[shop=boutique] {
|
|---|
| 1408 | icon-image: "shop/boutique.png";
|
|---|
| 1409 | text: auto;
|
|---|
| 1410 | }
|
|---|
| 1411 | node[shop=car],
|
|---|
| 1412 | node[shop=car_dealer] {
|
|---|
| 1413 | icon-image: "transport/car.png";
|
|---|
| 1414 | text: auto;
|
|---|
| 1415 | }
|
|---|
| 1416 | node[shop=car_repair] {
|
|---|
| 1417 | icon-image: "vehicle/repair_shop.png";
|
|---|
| 1418 | text: auto;
|
|---|
| 1419 | }
|
|---|
| 1420 | node[shop=tyres] {
|
|---|
| 1421 | icon-image: "vehicle/tyres.png";
|
|---|
| 1422 | text: auto;
|
|---|
| 1423 | }
|
|---|
| 1424 | node[shop=chemist] {
|
|---|
| 1425 | icon-image: "shop/chemist.png";
|
|---|
| 1426 | text: auto;
|
|---|
| 1427 | }
|
|---|
| 1428 | node[shop=clothes] {
|
|---|
| 1429 | icon-image: "shop/clothes.png";
|
|---|
| 1430 | text: auto;
|
|---|
| 1431 | }
|
|---|
| 1432 | node[shop=computer] {
|
|---|
| 1433 | icon-image: "shop/computer.png";
|
|---|
| 1434 | text: auto;
|
|---|
| 1435 | }
|
|---|
| 1436 | node[shop=confectionery] {
|
|---|
| 1437 | icon-image: "shop/groceries/confectionery.png";
|
|---|
| 1438 | text: auto;
|
|---|
| 1439 | }
|
|---|
| 1440 | node[shop=copyshop] {
|
|---|
| 1441 | icon-image: "shop/copyshop.png";
|
|---|
| 1442 | text: auto;
|
|---|
| 1443 | }
|
|---|
| 1444 | node[shop=curtain] {
|
|---|
| 1445 | icon-image: "shop/curtain.png";
|
|---|
| 1446 | text: auto;
|
|---|
| 1447 | }
|
|---|
| 1448 | node[shop=cycle_repair] {
|
|---|
| 1449 | icon-image: "sport/bicycle.png";
|
|---|
| 1450 | text: auto;
|
|---|
| 1451 | }
|
|---|
| 1452 | node[shop=department_store] {
|
|---|
| 1453 | icon-image: "shop/mall.png";
|
|---|
| 1454 | text: auto;
|
|---|
| 1455 | }
|
|---|
| 1456 | node[shop=deli] {
|
|---|
| 1457 | icon-image: "shop/groceries/deli.png";
|
|---|
| 1458 | text: auto;
|
|---|
| 1459 | }
|
|---|
| 1460 | node[shop=electronics] {
|
|---|
| 1461 | icon-image: "shop/electronics.png";
|
|---|
| 1462 | text: auto;
|
|---|
| 1463 | }
|
|---|
| 1464 | node[shop=erotic] {
|
|---|
| 1465 | icon-image:"shop/erotic.png";
|
|---|
| 1466 | text: auto;
|
|---|
| 1467 | }
|
|---|
| 1468 | node[shop=furniture] {
|
|---|
| 1469 | icon-image: "shop/furniture.png";
|
|---|
| 1470 | text: auto;
|
|---|
| 1471 | }
|
|---|
| 1472 | node[shop=fabric] {
|
|---|
| 1473 | icon-image: "shop/fabric.png";
|
|---|
| 1474 | text: auto;
|
|---|
| 1475 | }
|
|---|
| 1476 | node[shop=florist] {
|
|---|
| 1477 | icon-image: "shop/florist.png";
|
|---|
| 1478 | text: auto;
|
|---|
| 1479 | }
|
|---|
| 1480 | node[shop=frame] {
|
|---|
| 1481 | icon-image: "shop/frame.png";
|
|---|
| 1482 | text: auto;
|
|---|
| 1483 | }
|
|---|
| 1484 | node[shop=gift] {
|
|---|
| 1485 | icon-image: "presets/present.svg";
|
|---|
| 1486 | text: auto;
|
|---|
| 1487 | }
|
|---|
| 1488 | node[shop=greengrocer] {
|
|---|
| 1489 | icon-image: "shop/groceries/greengrocer.png";
|
|---|
| 1490 | text: auto;
|
|---|
| 1491 | }
|
|---|
| 1492 | node[shop=garden_centre] {
|
|---|
| 1493 | icon-image: "shop/garden_centre.png";
|
|---|
| 1494 | text: auto;
|
|---|
| 1495 | }
|
|---|
| 1496 | node[shop=hairdresser] {
|
|---|
| 1497 | icon-image: "shop/hairdresser.png";
|
|---|
| 1498 | text: auto;
|
|---|
| 1499 | }
|
|---|
| 1500 | node[shop=hardware] {
|
|---|
| 1501 | icon-image: "shop/hardware.png";
|
|---|
| 1502 | text: auto;
|
|---|
| 1503 | }
|
|---|
| 1504 | node[shop=hearing_aids] {
|
|---|
| 1505 | icon-image: "shop/hearing_aids.png";
|
|---|
| 1506 | text: auto;
|
|---|
| 1507 | }
|
|---|
| 1508 | node[shop=hifi] {
|
|---|
| 1509 | icon-image: "shop/hifi.png";
|
|---|
| 1510 | text: auto;
|
|---|
| 1511 | }
|
|---|
| 1512 | node[shop=jewelry] {
|
|---|
| 1513 | icon-image: "shop/jewelry.png";
|
|---|
| 1514 | text: auto;
|
|---|
| 1515 | }
|
|---|
| 1516 | node[shop=kitchen] {
|
|---|
| 1517 | icon-image: "shop/kitchen.png";
|
|---|
| 1518 | text: auto;
|
|---|
| 1519 | }
|
|---|
| 1520 | node[shop=mall] {
|
|---|
| 1521 | icon-image: "shop/mall.png";
|
|---|
| 1522 | text: auto;
|
|---|
| 1523 | }
|
|---|
| 1524 | node[shop=mobile_phone] {
|
|---|
| 1525 | icon-image: "shop/mobile_phone.png";
|
|---|
| 1526 | text: auto;
|
|---|
| 1527 | }
|
|---|
| 1528 | node[shop=motorcycle] {
|
|---|
| 1529 | icon-image: "vehicle/motorbike.png";
|
|---|
| 1530 | text: auto;
|
|---|
| 1531 | }
|
|---|
| 1532 | node[shop=musical_instrument] {
|
|---|
| 1533 | icon-image: "shop/musical_instrument.png";
|
|---|
| 1534 | text: auto;
|
|---|
| 1535 | }
|
|---|
| 1536 | node[shop=newsagent] {
|
|---|
| 1537 | icon-image: "shop/kiosk.png";
|
|---|
| 1538 | text: auto;
|
|---|
| 1539 | }
|
|---|
| 1540 | node[shop=optician] {
|
|---|
| 1541 | icon-image: "shop/optician.png";
|
|---|
| 1542 | text: auto;
|
|---|
| 1543 | }
|
|---|
| 1544 | node[shop=paint] {
|
|---|
| 1545 | icon-image: "shop/paint.png";
|
|---|
| 1546 | text: auto;
|
|---|
| 1547 | }
|
|---|
| 1548 | node[shop=pawnbroker] {
|
|---|
| 1549 | icon-image: "presets/pawnbroker.svg";
|
|---|
| 1550 | text: auto;
|
|---|
| 1551 | }
|
|---|
| 1552 | node[shop=seafood] {
|
|---|
| 1553 | icon-image: "shop/groceries/seafood.png";
|
|---|
| 1554 | text: auto;
|
|---|
| 1555 | }
|
|---|
| 1556 | node[shop=shoes] {
|
|---|
| 1557 | icon-image: "shop/shoes.png";
|
|---|
| 1558 | text: auto;
|
|---|
| 1559 | }
|
|---|
| 1560 | node[shop=sports] {
|
|---|
| 1561 | icon-image: "sport/multi.png";
|
|---|
| 1562 | text: auto;
|
|---|
| 1563 | }
|
|---|
| 1564 | node[shop=stationery] {
|
|---|
| 1565 | icon-image: "shop/stationery.png";
|
|---|
| 1566 | text: auto;
|
|---|
| 1567 | }
|
|---|
| 1568 | node[shop=tailor] {
|
|---|
| 1569 | icon-image: "shop/tailor.png";
|
|---|
| 1570 | text: auto;
|
|---|
| 1571 | }
|
|---|
| 1572 | node[shop=travel_agency] {
|
|---|
| 1573 | icon-image: "place/island.png";
|
|---|
| 1574 | text: auto;
|
|---|
| 1575 | }
|
|---|
| 1576 | node[shop=toys] {
|
|---|
| 1577 | icon-image: "shop/toys.png";
|
|---|
| 1578 | text: auto;
|
|---|
| 1579 | }
|
|---|
| 1580 | node[shop=vacuum_cleaner] {
|
|---|
| 1581 | icon-image: "shop/vacuum_cleaner.png";
|
|---|
| 1582 | text: auto;
|
|---|
| 1583 | }
|
|---|
| 1584 | node[shop=variety_store] {
|
|---|
| 1585 | icon-image: "shop/variety_store.png";
|
|---|
| 1586 | text: auto;
|
|---|
| 1587 | }
|
|---|
| 1588 | node[shop=video] {
|
|---|
| 1589 | icon-image: "shop/video.png";
|
|---|
| 1590 | text: auto;
|
|---|
| 1591 | }
|
|---|
| 1592 | node[shop=bookmaker] {
|
|---|
| 1593 | icon-image: "presets/lottery.svg";
|
|---|
| 1594 | text: auto;
|
|---|
| 1595 | }
|
|---|
| 1596 | node[shop=lottery] {
|
|---|
| 1597 | icon-image: "presets/lottery.svg";
|
|---|
| 1598 | text: auto;
|
|---|
| 1599 | }
|
|---|
| 1600 | /* duplicate of shopping_centre? */
|
|---|
| 1601 | node[shop=shopping_centre] {
|
|---|
| 1602 | icon-image: "shop/mall.png";
|
|---|
| 1603 | text: auto;
|
|---|
| 1604 | }
|
|---|
| 1605 | node[shop=pet] {
|
|---|
| 1606 | icon-image: "shop/pet.svg";
|
|---|
| 1607 | text: auto;
|
|---|
| 1608 | }
|
|---|
| 1609 | node[shop=ticket] {
|
|---|
| 1610 | icon-image: "shop/ticket.svg";
|
|---|
| 1611 | text: auto;
|
|---|
| 1612 | }
|
|---|
| 1613 | node[shop=interior_decoration] {
|
|---|
| 1614 | icon-image: "shop/interior_decoration.svg";
|
|---|
| 1615 | text: auto;
|
|---|
| 1616 | }
|
|---|
| 1617 | node[shop=car_parts] {
|
|---|
| 1618 | icon-image: "vehicle/car_parts.svg";
|
|---|
| 1619 | text: auto;
|
|---|
| 1620 | }
|
|---|
| 1621 | node[shop=video_games] {
|
|---|
| 1622 | icon-image: "shop/video_games.png";
|
|---|
| 1623 | text: auto;
|
|---|
| 1624 | }
|
|---|
| 1625 | node[shop=bed] {
|
|---|
| 1626 | icon-image: "shop/bed.svg";
|
|---|
| 1627 | text: auto;
|
|---|
| 1628 | }
|
|---|
| 1629 | node[shop=beauty] {
|
|---|
| 1630 | icon-image: "shop/beauty.svg";
|
|---|
| 1631 | text: auto;
|
|---|
| 1632 | }
|
|---|
| 1633 | node[shop=tea] {
|
|---|
| 1634 | icon-image: "shop/groceries/tea.svg";
|
|---|
| 1635 | text: auto;
|
|---|
| 1636 | }
|
|---|
| 1637 | node[shop=coffee] {
|
|---|
| 1638 | icon-image: "shop/groceries/coffee.svg";
|
|---|
| 1639 | text: auto;
|
|---|
| 1640 | }
|
|---|
| 1641 | node[shop=bag] {
|
|---|
| 1642 | icon-image: "shop/bag.svg";
|
|---|
| 1643 | text: auto;
|
|---|
| 1644 | }
|
|---|
| 1645 |
|
|---|
| 1646 | /****************/
|
|---|
| 1647 | /* amenity tags */
|
|---|
| 1648 | /****************/
|
|---|
| 1649 |
|
|---|
| 1650 | area[amenity=pub],
|
|---|
| 1651 | area[amenity=biergarten],
|
|---|
| 1652 | area[amenity=nightclub],
|
|---|
| 1653 | area[amenity=stripclub],
|
|---|
| 1654 | area[amenity=brothel],
|
|---|
| 1655 | area[amenity=cafe],
|
|---|
| 1656 | area[amenity=restaurant],
|
|---|
| 1657 | area[amenity=food_court],
|
|---|
| 1658 | area[amenity=fast_food],
|
|---|
| 1659 | area[amenity=bar],
|
|---|
| 1660 | area[amenity=ice_cream] {
|
|---|
| 1661 | fill-color: amenity#ecba52;
|
|---|
| 1662 | }
|
|---|
| 1663 | node[amenity=pub] {
|
|---|
| 1664 | icon-image: "food/pub.png";
|
|---|
| 1665 | text: auto;
|
|---|
| 1666 | }
|
|---|
| 1667 | node[amenity=biergarten] {
|
|---|
| 1668 | icon-image: "food/biergarten.png";
|
|---|
| 1669 | text: auto;
|
|---|
| 1670 | }
|
|---|
| 1671 | node[amenity=nightclub] {
|
|---|
| 1672 | icon-image: "leisure/nightclub.png";
|
|---|
| 1673 | text: auto;
|
|---|
| 1674 | }
|
|---|
| 1675 | node[amenity=stripclub] {
|
|---|
| 1676 | icon-image: "leisure/stripclub.png";
|
|---|
| 1677 | text: auto;
|
|---|
| 1678 | }
|
|---|
| 1679 | node[amenity=brothel] {
|
|---|
| 1680 | icon-image: "leisure/stripclub.png";
|
|---|
| 1681 | text: auto;
|
|---|
| 1682 | }
|
|---|
| 1683 | node[amenity=cafe] {
|
|---|
| 1684 | icon-image: "food/cafe.png";
|
|---|
| 1685 | text: auto;
|
|---|
| 1686 | }
|
|---|
| 1687 | node[amenity=restaurant],
|
|---|
| 1688 | node[amenity=food_court] {
|
|---|
| 1689 | icon-image: "food/restaurant.png";
|
|---|
| 1690 | text: auto;
|
|---|
| 1691 | }
|
|---|
| 1692 | node[amenity=fast_food] {
|
|---|
| 1693 | icon-image: "food/fastfood.png";
|
|---|
| 1694 | text: auto;
|
|---|
| 1695 | }
|
|---|
| 1696 | node[amenity=bar] {
|
|---|
| 1697 | icon-image: "food/bar.png";
|
|---|
| 1698 | text: auto;
|
|---|
| 1699 | }
|
|---|
| 1700 | node[amenity=ice_cream] {
|
|---|
| 1701 | icon-image: "food/icecream.png";
|
|---|
| 1702 | text: auto;
|
|---|
| 1703 | }
|
|---|
| 1704 | area[amenity=parking_space],
|
|---|
| 1705 | area[amenity=parking],
|
|---|
| 1706 | area[parking=multi-storey],
|
|---|
| 1707 | area[amenity=motorcycle_parking],
|
|---|
| 1708 | area[amenity=bicycle_parking],
|
|---|
| 1709 | area[parking=park_and_ride],
|
|---|
| 1710 | area[parking=underground],
|
|---|
| 1711 | area[parking=surface],
|
|---|
| 1712 | area[amenity=bicycle_rental],
|
|---|
| 1713 | area[amenity=car_rental],
|
|---|
| 1714 | area[amenity=car_sharing],
|
|---|
| 1715 | area[amenity=car_wash],
|
|---|
| 1716 | area[amenity=taxi],
|
|---|
| 1717 | area[amenity=fuel],
|
|---|
| 1718 | area[amenity=charging_station] {
|
|---|
| 1719 | fill-color: amenity_traffic#f7efb7;
|
|---|
| 1720 | }
|
|---|
| 1721 | node[amenity=parking_space] {
|
|---|
| 1722 | icon-image: "vehicle/parking.png";
|
|---|
| 1723 | text: auto;
|
|---|
| 1724 | }node[amenity=parking] {
|
|---|
| 1725 | icon-image: vehicle/parking.png;
|
|---|
| 1726 | text: auto;
|
|---|
| 1727 | }
|
|---|
| 1728 | node[parking=multi-storey] {
|
|---|
| 1729 | icon-image: "vehicle/parking/multi-storey.png";
|
|---|
| 1730 | text: auto;
|
|---|
| 1731 | }
|
|---|
| 1732 | node[amenity=motorcycle_parking] {
|
|---|
| 1733 | icon-image: "vehicle/parking/motorbike.png";
|
|---|
| 1734 | text: auto;
|
|---|
| 1735 | }
|
|---|
| 1736 | node[amenity=bicycle_parking] {
|
|---|
| 1737 | icon-image: "vehicle/parking/bicycle.png";
|
|---|
| 1738 | text: auto;
|
|---|
| 1739 | }
|
|---|
| 1740 | node[parking=park_and_ride] {
|
|---|
| 1741 | icon-image: "vehicle/parking/park_ride.png";
|
|---|
| 1742 | text: auto;
|
|---|
| 1743 | }
|
|---|
| 1744 | node[parking=underground] {
|
|---|
| 1745 | icon-image: "vehicle/parking/underground.png";
|
|---|
| 1746 | text: auto;
|
|---|
| 1747 | }
|
|---|
| 1748 | node[parking=surface] {
|
|---|
| 1749 | icon-image: "vehicle/parking.png";
|
|---|
| 1750 | text: auto;
|
|---|
| 1751 | }
|
|---|
| 1752 | node[amenity=parking_space][wheelchair?] {
|
|---|
| 1753 | icon-image: "vehicle/parking/handicapped.png";
|
|---|
| 1754 | text: auto;
|
|---|
| 1755 | }
|
|---|
| 1756 | node[amenity=bicycle_rental] {
|
|---|
| 1757 | icon-image: "vehicle/rental/bicycle.png";
|
|---|
| 1758 | text: auto;
|
|---|
| 1759 | }
|
|---|
| 1760 | node[amenity=car_rental] {
|
|---|
| 1761 | icon-image: "vehicle/rental/car.png";
|
|---|
| 1762 | text: auto;
|
|---|
| 1763 | }
|
|---|
| 1764 | node[amenity=car_sharing] {
|
|---|
| 1765 | icon-image: "vehicle/car_sharing.png";
|
|---|
| 1766 | text: auto;
|
|---|
| 1767 | }
|
|---|
| 1768 | node[amenity=car_wash] {
|
|---|
| 1769 | icon-image: "vehicle/car_wash.png";
|
|---|
| 1770 | text: auto;
|
|---|
| 1771 | }
|
|---|
| 1772 | node[amenity=taxi] {
|
|---|
| 1773 | icon-image: "transport/taxi.png";
|
|---|
| 1774 | text: auto;
|
|---|
| 1775 | }
|
|---|
| 1776 | node[amenity=fuel] {
|
|---|
| 1777 | icon-image: "vehicle/fuel.png";
|
|---|
| 1778 | text: auto;
|
|---|
| 1779 | }
|
|---|
| 1780 | node[amenity=charging_station] {
|
|---|
| 1781 | icon-image: "vehicle/fuel/charging_station.png";
|
|---|
| 1782 | text: auto;
|
|---|
| 1783 | }
|
|---|
| 1784 | node[amenity=grit_bin] {
|
|---|
| 1785 | icon-image: "misc/grit_bin.png";
|
|---|
| 1786 | text: auto;
|
|---|
| 1787 | }
|
|---|
| 1788 | area[amenity=telephone] {
|
|---|
| 1789 | fill-color: amenity_light#f7efb7;
|
|---|
| 1790 | }
|
|---|
| 1791 | node[amenity=telephone] {
|
|---|
| 1792 | icon-image: "service/telephone.png";
|
|---|
| 1793 | text: auto;
|
|---|
| 1794 | }
|
|---|
| 1795 | node[amenity=clock] {
|
|---|
| 1796 | icon-image: "service/clock.png";
|
|---|
| 1797 | text: auto;
|
|---|
| 1798 | }
|
|---|
| 1799 | /* Rule to delete by end of 2013 if this deprecated tag has finally been replaced by emergency=phone below */
|
|---|
| 1800 | area[amenity=emergency_phone] {
|
|---|
| 1801 | fill-color: amenity_light#f7efb7;
|
|---|
| 1802 | }
|
|---|
| 1803 | node[amenity=emergency_phone] {
|
|---|
| 1804 | icon-image: "vehicle/emergency_phone.png";
|
|---|
| 1805 | text: auto;
|
|---|
| 1806 | }
|
|---|
| 1807 | area[emergency=phone],
|
|---|
| 1808 | area[emergency=aed],
|
|---|
| 1809 | area[emergency=defibrillator],
|
|---|
| 1810 | area[amenity=toilets],
|
|---|
| 1811 | area[amenity=recycling] {
|
|---|
| 1812 | fill-color: amenity_light#f7efb7;
|
|---|
| 1813 | }
|
|---|
| 1814 | node[emergency=phone] {
|
|---|
| 1815 | icon-image: "vehicle/emergency_phone.png";
|
|---|
| 1816 | text: auto;
|
|---|
| 1817 | }
|
|---|
| 1818 | node[emergency=aed] {
|
|---|
| 1819 | icon-image: "presets/aed.svg";
|
|---|
| 1820 | text: auto;
|
|---|
| 1821 | }
|
|---|
| 1822 | node[emergency=defibrillator] {
|
|---|
| 1823 | icon-image: "presets/aed.svg";
|
|---|
| 1824 | text: auto;
|
|---|
| 1825 | }
|
|---|
| 1826 | node[amenity=toilets] {
|
|---|
| 1827 | icon-image: "service/toilets.png";
|
|---|
| 1828 | text: auto;
|
|---|
| 1829 | }
|
|---|
| 1830 | node[amenity=recycling] {
|
|---|
| 1831 | icon-image: "service/recycling.png";
|
|---|
| 1832 | text: auto;
|
|---|
| 1833 | }
|
|---|
| 1834 | node[amenity=waste_basket] {
|
|---|
| 1835 | icon-image: "service/recycling/trash-bin.png";
|
|---|
| 1836 | text: auto;
|
|---|
| 1837 | }
|
|---|
| 1838 | node[amenity=waste_disposal] {
|
|---|
| 1839 | icon-image: "service/recycling/waste_disposal.png";
|
|---|
| 1840 | text: auto;
|
|---|
| 1841 | }
|
|---|
| 1842 | area[amenity=public_building],
|
|---|
| 1843 | area[amenity=townhall],
|
|---|
| 1844 | area[amenity=embassy],
|
|---|
| 1845 | area[amenity=community_centre] {
|
|---|
| 1846 | fill-color: amenity_light#f7efb7;
|
|---|
| 1847 | }
|
|---|
| 1848 | node[amenity=public_building],
|
|---|
| 1849 | node[amenity=townhall] {
|
|---|
| 1850 | icon-image: "service.png";
|
|---|
| 1851 | text: auto;
|
|---|
| 1852 | }
|
|---|
| 1853 | node[amenity=embassy] {
|
|---|
| 1854 | icon-image: "service/administration/embassy.png";
|
|---|
| 1855 | text: auto;
|
|---|
| 1856 | }
|
|---|
| 1857 | node[amenity=community_centre] {
|
|---|
| 1858 | icon-image: "service/community_centre.png";
|
|---|
| 1859 | text: auto;
|
|---|
| 1860 | }
|
|---|
| 1861 | area[amenity=drinking_water],
|
|---|
| 1862 | area[amenity=fountain] {
|
|---|
| 1863 | fill-color: light_water#00005f;
|
|---|
| 1864 | }
|
|---|
| 1865 | node[amenity=drinking_water] {
|
|---|
| 1866 | icon-image: "food/drinking_water.png";
|
|---|
| 1867 | text: auto;
|
|---|
| 1868 | }
|
|---|
| 1869 | node[amenity=fountain] {
|
|---|
| 1870 | icon-image: "misc/landmark/spring.png";
|
|---|
| 1871 | text: auto;
|
|---|
| 1872 | }
|
|---|
| 1873 | area[amenity=place_of_worship],
|
|---|
| 1874 | area[amenity=grave_yard],
|
|---|
| 1875 | area[amenity=crematorium],
|
|---|
| 1876 | area[amenity=post_office],
|
|---|
| 1877 | area[amenity=post_box],
|
|---|
| 1878 | area[amenity=studio],
|
|---|
| 1879 | area[amenity=school],
|
|---|
| 1880 | area[amenity=university],
|
|---|
| 1881 | area[amenity=college],
|
|---|
| 1882 | area[amenity=kindergarten],
|
|---|
| 1883 | area[amenity=driving_school] {
|
|---|
| 1884 | fill-color: amenity_light#f7efb7;
|
|---|
| 1885 | }
|
|---|
| 1886 | node[amenity=place_of_worship] {
|
|---|
| 1887 | icon-image: "religion.png";
|
|---|
| 1888 | text: auto;
|
|---|
| 1889 | }
|
|---|
| 1890 | node[amenity=place_of_worship][religion=bahai] {
|
|---|
| 1891 | icon-image: "religion/bahai.png";
|
|---|
| 1892 | text: auto;
|
|---|
| 1893 | }
|
|---|
| 1894 | node[amenity=place_of_worship][religion=buddhist] {
|
|---|
| 1895 | icon-image: "religion/buddhism.png";
|
|---|
| 1896 | text: auto;
|
|---|
| 1897 | }
|
|---|
| 1898 | node[amenity=place_of_worship][religion=christian] {
|
|---|
| 1899 | icon-image: "religion/church.png";
|
|---|
| 1900 | text: auto;
|
|---|
| 1901 | }
|
|---|
| 1902 | node[amenity=place_of_worship][religion=hindu] {
|
|---|
| 1903 | icon-image: "religion/hinduism.png";
|
|---|
| 1904 | text: auto;
|
|---|
| 1905 | }
|
|---|
| 1906 | node[amenity=place_of_worship][religion=jain] {
|
|---|
| 1907 | icon-image: "religion/jainism.png";
|
|---|
| 1908 | text: auto;
|
|---|
| 1909 | }
|
|---|
| 1910 | node[amenity=place_of_worship][religion=jewish] {
|
|---|
| 1911 | icon-image: "religion/jewish.png";
|
|---|
| 1912 | text: auto;
|
|---|
| 1913 | }
|
|---|
| 1914 | node[amenity=place_of_worship][religion=muslim] {
|
|---|
| 1915 | icon-image: "religion/muslim.png";
|
|---|
| 1916 | text: auto;
|
|---|
| 1917 | }
|
|---|
| 1918 | node[amenity=place_of_worship][religion=sikh] {
|
|---|
| 1919 | icon-image: "religion/sikhism.png";
|
|---|
| 1920 | text: auto;
|
|---|
| 1921 | }
|
|---|
| 1922 | node[amenity=place_of_worship][religion=shinto] {
|
|---|
| 1923 | icon-image: "religion/shinto.png";
|
|---|
| 1924 | text: auto;
|
|---|
| 1925 | }
|
|---|
| 1926 | node[amenity=place_of_worship][religion=spiritualist] {
|
|---|
| 1927 | icon-image: "misc/no_icon.png";
|
|---|
| 1928 | text: auto;
|
|---|
| 1929 | }
|
|---|
| 1930 | node[amenity=place_of_worship][religion=taoist] {
|
|---|
| 1931 | icon-image: "religion/taoism.png";
|
|---|
| 1932 | text: auto;
|
|---|
| 1933 | }
|
|---|
| 1934 | node[amenity=place_of_worship][religion=unitarian] {
|
|---|
| 1935 | icon-image: "misc/no_icon.png";
|
|---|
| 1936 | text: auto;
|
|---|
| 1937 | }
|
|---|
| 1938 | node[amenity=place_of_worship][religion=zoroastrian] {
|
|---|
| 1939 | icon-image: "misc/no_icon.png";
|
|---|
| 1940 | text: auto;
|
|---|
| 1941 | }
|
|---|
| 1942 | node[amenity=grave_yard] {
|
|---|
| 1943 | icon-image: "rendering/landuse/cemetery.png";
|
|---|
| 1944 | text: auto;
|
|---|
| 1945 | }
|
|---|
| 1946 | node[amenity=crematorium] {
|
|---|
| 1947 | icon-image: "misc/no_icon.png";
|
|---|
| 1948 | text: auto;
|
|---|
| 1949 | }
|
|---|
| 1950 | node[amenity=post_office] {
|
|---|
| 1951 | icon-image: "service/post_office.png";
|
|---|
| 1952 | text: auto;
|
|---|
| 1953 | }
|
|---|
| 1954 | node[amenity=post_box] {
|
|---|
| 1955 | icon-image: "service/post_box.png";
|
|---|
| 1956 | text: auto;
|
|---|
| 1957 | }
|
|---|
| 1958 | node[amenity=studio] {
|
|---|
| 1959 | icon-image: "service/studio.png";
|
|---|
| 1960 | text: auto;
|
|---|
| 1961 | }
|
|---|
| 1962 | node[amenity=school] {
|
|---|
| 1963 | icon-image: "education/school.png";
|
|---|
| 1964 | text: auto;
|
|---|
| 1965 | }
|
|---|
| 1966 | node[amenity=university] {
|
|---|
| 1967 | icon-image: "education/university.png";
|
|---|
| 1968 | text: auto;
|
|---|
| 1969 | }
|
|---|
| 1970 | node[amenity=college] {
|
|---|
| 1971 | icon-image: "education/college.png";
|
|---|
| 1972 | text: auto;
|
|---|
| 1973 | }
|
|---|
| 1974 | node[amenity=kindergarten] {
|
|---|
| 1975 | icon-image: "education/kindergarten.png";
|
|---|
| 1976 | text: auto;
|
|---|
| 1977 | }
|
|---|
| 1978 | node[amenity=driving_school] {
|
|---|
| 1979 | icon-image: "education/driving_school.png";
|
|---|
| 1980 | text: auto;
|
|---|
| 1981 | }
|
|---|
| 1982 | area[amenity=pharmacy],
|
|---|
| 1983 | area[amenity=hospital],
|
|---|
| 1984 | area[amenity=clinic],
|
|---|
| 1985 | area[amenity=nursery],
|
|---|
| 1986 | area[amenity=baby_hatch],
|
|---|
| 1987 | area[amenity=doctors],
|
|---|
| 1988 | area[amenity=dentist],
|
|---|
| 1989 | area[amenity=veterinary] {
|
|---|
| 1990 | fill-color: health#eeeeee;
|
|---|
| 1991 | }
|
|---|
| 1992 | node[amenity=pharmacy] {
|
|---|
| 1993 | icon-image: "health/pharmacy.png";
|
|---|
| 1994 | text: auto;
|
|---|
| 1995 | }
|
|---|
| 1996 | node[amenity=hospital],
|
|---|
| 1997 | node[amenity=clinic] {
|
|---|
| 1998 | icon-image: "health/hospital.png";
|
|---|
| 1999 | text: auto;
|
|---|
| 2000 | }
|
|---|
| 2001 | node[amenity=nursery] {
|
|---|
| 2002 | icon-image: "misc/no_icon.png";
|
|---|
| 2003 | text: auto;
|
|---|
| 2004 | }
|
|---|
| 2005 | node[amenity=baby_hatch] {
|
|---|
| 2006 | icon-image: "health/baby_hatch.png";
|
|---|
| 2007 | text: auto;
|
|---|
| 2008 | }
|
|---|
| 2009 | node[amenity=doctors] {
|
|---|
| 2010 | icon-image: "health/doctor.png";
|
|---|
| 2011 | text: auto;
|
|---|
| 2012 | }
|
|---|
| 2013 | node[amenity=dentist] {
|
|---|
| 2014 | icon-image: "health/dentist.png";
|
|---|
| 2015 | text: auto;
|
|---|
| 2016 | }
|
|---|
| 2017 | node[amenity=veterinary] {
|
|---|
| 2018 | icon-image: "health/veterinary.png";
|
|---|
| 2019 | text: auto;
|
|---|
| 2020 | }
|
|---|
| 2021 | area[amenity=library],
|
|---|
| 2022 | area[amenity=police],
|
|---|
| 2023 | area[amenity=fire_station],
|
|---|
| 2024 | area[amenity=bus_station],
|
|---|
| 2025 | area[amenity=ferry_terminal],
|
|---|
| 2026 | area[amenity=theatre],
|
|---|
| 2027 | area[amenity=cinema],
|
|---|
| 2028 | area[amenity=arts_centre],
|
|---|
| 2029 | area[amenity=courthouse],
|
|---|
| 2030 | area[amenity=prison],
|
|---|
| 2031 | area[amenity=bank],
|
|---|
| 2032 | area[amenity=bureau_de_change],
|
|---|
| 2033 | area[amenity=atm],
|
|---|
| 2034 | area[amenity=bbq] {
|
|---|
| 2035 | fill-color: amenity_light#f7efb7;
|
|---|
| 2036 | }
|
|---|
| 2037 | node[amenity=library] {
|
|---|
| 2038 | icon-image: "shop/rental/library.png";
|
|---|
| 2039 | text: auto;
|
|---|
| 2040 | }
|
|---|
| 2041 | node[amenity=police] {
|
|---|
| 2042 | icon-image: "service/police.png";
|
|---|
| 2043 | text: auto;
|
|---|
| 2044 | }
|
|---|
| 2045 | node[amenity=fire_station] {
|
|---|
| 2046 | icon-image: "service/firebrigade.png";
|
|---|
| 2047 | text: auto;
|
|---|
| 2048 | }
|
|---|
| 2049 | node[amenity=bus_station] {
|
|---|
| 2050 | icon-image: "transport/bus.png";
|
|---|
| 2051 | text: auto;
|
|---|
| 2052 | }
|
|---|
| 2053 | node[amenity=ferry_terminal] {
|
|---|
| 2054 | icon-image: "nautical/ferry.png";
|
|---|
| 2055 | text: auto;
|
|---|
| 2056 | }
|
|---|
| 2057 | node[amenity=theatre] {
|
|---|
| 2058 | icon-image: "leisure/theater.png";
|
|---|
| 2059 | text: auto;
|
|---|
| 2060 | }
|
|---|
| 2061 | node[amenity=cinema] {
|
|---|
| 2062 | icon-image: "leisure/cinema.png";
|
|---|
| 2063 | text: auto;
|
|---|
| 2064 | }
|
|---|
| 2065 | node[amenity=arts_centre] {
|
|---|
| 2066 | icon-image: "service/arts_centre.png";
|
|---|
| 2067 | text: auto;
|
|---|
| 2068 | }
|
|---|
| 2069 | node[amenity=courthouse] {
|
|---|
| 2070 | icon-image: "service/administration/court_of_law.png";
|
|---|
| 2071 | text: auto;
|
|---|
| 2072 | }
|
|---|
| 2073 | node[amenity=prison] {
|
|---|
| 2074 | icon-image: "service/administration/prison.png";
|
|---|
| 2075 | text: auto;
|
|---|
| 2076 | }
|
|---|
| 2077 | node[amenity=bank] {
|
|---|
| 2078 | icon-image: "money/bank.png";
|
|---|
| 2079 | text: auto;
|
|---|
| 2080 | }
|
|---|
| 2081 | node[amenity=bureau_de_change] {
|
|---|
| 2082 | icon-image: "money/exchange.png";
|
|---|
| 2083 | text: auto;
|
|---|
| 2084 | }
|
|---|
| 2085 | node[amenity=atm] {
|
|---|
| 2086 | icon-image: "money/atm.png";
|
|---|
| 2087 | text: auto;
|
|---|
| 2088 | }
|
|---|
| 2089 | way[amenity=bench] {
|
|---|
| 2090 | width: 2;
|
|---|
| 2091 | color: amenity_light#f7efb7;
|
|---|
| 2092 | }
|
|---|
| 2093 | node[amenity=bench] {
|
|---|
| 2094 | icon-image: "leisure/bench.png";
|
|---|
| 2095 | text: auto;
|
|---|
| 2096 | }
|
|---|
| 2097 | node[amenity=bbq] {
|
|---|
| 2098 | icon-image: "leisure/bbq.png";
|
|---|
| 2099 | text: auto;
|
|---|
| 2100 | }
|
|---|
| 2101 | node[emergency=fire_hydrant] {
|
|---|
| 2102 | icon-image: "service/fire_hydrant.png";
|
|---|
| 2103 | text: auto;
|
|---|
| 2104 | }
|
|---|
| 2105 | area[amenity=shelter],
|
|---|
| 2106 | area[amenity=hunting_stand],
|
|---|
| 2107 | area[amenity=marketplace],
|
|---|
| 2108 | area[amenity=wlan],
|
|---|
| 2109 | area[amenity=vending_machine] {
|
|---|
| 2110 | fill-color: amenity_light#f7efb7;
|
|---|
| 2111 | }
|
|---|
| 2112 | node[amenity=shelter] {
|
|---|
| 2113 | icon-image: "accommodation/shelter.png";
|
|---|
| 2114 | text: auto;
|
|---|
| 2115 | }
|
|---|
| 2116 | node[amenity=hunting_stand] {
|
|---|
| 2117 | icon-image: "hunting_stand.png";
|
|---|
| 2118 | text: auto;
|
|---|
| 2119 | }
|
|---|
| 2120 | node[amenity=marketplace] {
|
|---|
| 2121 | icon-image: "place/marketplace.png";
|
|---|
| 2122 | text: auto;
|
|---|
| 2123 | }
|
|---|
| 2124 | node[amenity=wlan] {
|
|---|
| 2125 | icon-image: "wlan.png";
|
|---|
| 2126 | text: auto;
|
|---|
| 2127 | }
|
|---|
| 2128 | node[amenity=vending_machine] {
|
|---|
| 2129 | icon-image: "transport/ticket-machine.png";
|
|---|
| 2130 | }
|
|---|
| 2131 | node[vending=excrement_bags] {
|
|---|
| 2132 | icon-image: "service/excrement_bags.png";
|
|---|
| 2133 | text: auto;
|
|---|
| 2134 | }
|
|---|
| 2135 |
|
|---|
| 2136 | /**************/
|
|---|
| 2137 | /* craft tags */
|
|---|
| 2138 | /**************/
|
|---|
| 2139 |
|
|---|
| 2140 | area[craft=painter],
|
|---|
| 2141 | area[craft=plumber],
|
|---|
| 2142 | area[craft=pottery],
|
|---|
| 2143 | area[craft=stonemason],
|
|---|
| 2144 | area[craft=tiler],
|
|---|
| 2145 | area[craft=window_construction] {
|
|---|
| 2146 | fill-color: craft#999900;
|
|---|
| 2147 | }
|
|---|
| 2148 | node[craft=painter] {
|
|---|
| 2149 | icon-image: "craft/painter.png";
|
|---|
| 2150 | text: auto;
|
|---|
| 2151 | }
|
|---|
| 2152 | node[craft=plumber] {
|
|---|
| 2153 | icon-image: "craft/plumber.png";
|
|---|
| 2154 | text: auto;
|
|---|
| 2155 | }
|
|---|
| 2156 | node[craft=pottery] {
|
|---|
| 2157 | icon-image: "craft/pottery.png";
|
|---|
| 2158 | text: auto;
|
|---|
| 2159 | }
|
|---|
| 2160 | node[craft=stonemason] {
|
|---|
| 2161 | icon-image: "craft/stonemason.png";
|
|---|
| 2162 | text: auto;
|
|---|
| 2163 | }
|
|---|
| 2164 | node[craft=tiler] {
|
|---|
| 2165 | icon-image: "craft/tiler.png";
|
|---|
| 2166 | text: auto;
|
|---|
| 2167 | }
|
|---|
| 2168 | node[craft=window_construction] {
|
|---|
| 2169 | icon-image: "craft/window_construction.png";
|
|---|
| 2170 | text: auto;
|
|---|
| 2171 | }
|
|---|
| 2172 |
|
|---|
| 2173 | /****************/
|
|---|
| 2174 | /* tourism tags */
|
|---|
| 2175 | /****************/
|
|---|
| 2176 |
|
|---|
| 2177 | area[tourism=hotel],
|
|---|
| 2178 | area[tourism=motel],
|
|---|
| 2179 | area[tourism=guest_house],
|
|---|
| 2180 | area[tourism=hostel],
|
|---|
| 2181 | area[tourism=chalet],
|
|---|
| 2182 | area[tourism=alpine_hut],
|
|---|
| 2183 | area[tourism=camp_site],
|
|---|
| 2184 | area[tourism=caravan_site] {
|
|---|
| 2185 | fill-color: hotel#e1a0a2;
|
|---|
| 2186 | }
|
|---|
| 2187 | node[tourism=hotel] {
|
|---|
| 2188 | icon-image: "accommodation.png";
|
|---|
| 2189 | text: auto;
|
|---|
| 2190 | }
|
|---|
| 2191 | node[tourism=motel] {
|
|---|
| 2192 | icon-image: "accommodation/motel.png";
|
|---|
| 2193 | text: auto;
|
|---|
| 2194 | }
|
|---|
| 2195 | node[tourism=guest_house] {
|
|---|
| 2196 | icon-image: "accommodation/guest_house.png";
|
|---|
| 2197 | text: auto;
|
|---|
| 2198 | }
|
|---|
| 2199 | node[tourism=hostel] {
|
|---|
| 2200 | icon-image: "accommodation/hostel.png";
|
|---|
| 2201 | text: auto;
|
|---|
| 2202 | }
|
|---|
| 2203 | node[tourism=chalet] {
|
|---|
| 2204 | icon-image: "accommodation/chalet.png";
|
|---|
| 2205 | text: auto;
|
|---|
| 2206 | }
|
|---|
| 2207 | node[tourism=alpine_hut] {
|
|---|
| 2208 | icon-image: "accommodation/alpine_hut.png";
|
|---|
| 2209 | text: auto;
|
|---|
| 2210 | }
|
|---|
| 2211 | node[tourism=camp_site] {
|
|---|
| 2212 | icon-image: "accommodation/camping.png";
|
|---|
| 2213 | text: auto;
|
|---|
| 2214 | }
|
|---|
| 2215 | node[tourism=caravan_site] {
|
|---|
| 2216 | icon-image: "accommodation/camping/caravan.png";
|
|---|
| 2217 | text: auto;
|
|---|
| 2218 | }
|
|---|
| 2219 | area[tourism=picnic_site],
|
|---|
| 2220 | area[tourism=viewpoint],
|
|---|
| 2221 | area[tourism=theme_park],
|
|---|
| 2222 | area[tourism=attraction],
|
|---|
| 2223 | area[tourism=zoo],
|
|---|
| 2224 | area[tourism=artwork],
|
|---|
| 2225 | area[tourism=museum] {
|
|---|
| 2226 | fill-color: tourism#e180a2;
|
|---|
| 2227 | }
|
|---|
| 2228 | node[tourism=picnic_site] {
|
|---|
| 2229 | icon-image: "leisure/picnic.png";
|
|---|
| 2230 | text: auto;
|
|---|
| 2231 | }
|
|---|
| 2232 | node[tourism=viewpoint] {
|
|---|
| 2233 | icon-image: "sightseeing/viewpoint.png";
|
|---|
| 2234 | text: auto;
|
|---|
| 2235 | }
|
|---|
| 2236 | node[tourism=theme_park] {
|
|---|
| 2237 | icon-image: "leisure/theme_park.png";
|
|---|
| 2238 | text: auto;
|
|---|
| 2239 | }
|
|---|
| 2240 | node[tourism=attraction] {
|
|---|
| 2241 | icon-image: "sightseeing.png";
|
|---|
| 2242 | text: auto;
|
|---|
| 2243 | }
|
|---|
| 2244 | node[tourism=zoo] {
|
|---|
| 2245 | icon-image: "leisure/zoo.png";
|
|---|
| 2246 | text: auto;
|
|---|
| 2247 | }
|
|---|
| 2248 | way[tourism=artwork] {
|
|---|
| 2249 | width: 2;
|
|---|
| 2250 | color: tourism#e180a2;
|
|---|
| 2251 | }
|
|---|
| 2252 | node[tourism=artwork] {
|
|---|
| 2253 | icon-image: "service/arts_centre.png";
|
|---|
| 2254 | text: auto;
|
|---|
| 2255 | }
|
|---|
| 2256 | node[tourism=museum] {
|
|---|
| 2257 | icon-image: "sightseeing/museum.png";
|
|---|
| 2258 | text: auto;
|
|---|
| 2259 | }
|
|---|
| 2260 |
|
|---|
| 2261 | /********************/
|
|---|
| 2262 | /* information tags */
|
|---|
| 2263 | /********************/
|
|---|
| 2264 |
|
|---|
| 2265 | area[tourism=information] {
|
|---|
| 2266 | fill-color: tourism#e180a2;
|
|---|
| 2267 | }
|
|---|
| 2268 | node[tourism=information] {
|
|---|
| 2269 | icon-image: "misc/information.png";
|
|---|
| 2270 | text: auto;
|
|---|
| 2271 | }
|
|---|
| 2272 | node[information=guidepost] {
|
|---|
| 2273 | icon-image: "misc/information/guidepost.png";
|
|---|
| 2274 | text: auto;
|
|---|
| 2275 | }
|
|---|
| 2276 | area[information=office] {
|
|---|
| 2277 | fill-color: tourism#e180a2;
|
|---|
| 2278 | }
|
|---|
| 2279 | node[information=office] {
|
|---|
| 2280 | icon-image: "misc/information/informationoffice.png";
|
|---|
| 2281 | text: auto;
|
|---|
| 2282 | }
|
|---|
| 2283 | node[information=map] {
|
|---|
| 2284 | icon-image: "misc/information/map.png";
|
|---|
| 2285 | text: auto;
|
|---|
| 2286 | }
|
|---|
| 2287 | node[information=board] {
|
|---|
| 2288 | icon-image: "misc/information/board.png";
|
|---|
| 2289 | text: auto;
|
|---|
| 2290 | }
|
|---|
| 2291 |
|
|---|
| 2292 | /*****************/
|
|---|
| 2293 | /* historic tags */
|
|---|
| 2294 | /*****************/
|
|---|
| 2295 |
|
|---|
| 2296 | area[historic=castle],
|
|---|
| 2297 | area[historic=monument],
|
|---|
| 2298 | area[historic=memorial],
|
|---|
| 2299 | area[historic=archaeological_site],
|
|---|
| 2300 | area[historic=ruins],
|
|---|
| 2301 | area[historic=battlefield],
|
|---|
| 2302 | area[historic=palaeontological_site],
|
|---|
| 2303 | area[historic=wayside_cross],
|
|---|
| 2304 | area[historic=wayside_shrine],
|
|---|
| 2305 | area[historic=boundary_stone] {
|
|---|
| 2306 | fill-color: historic#663300;
|
|---|
| 2307 | }
|
|---|
| 2308 | node[historic=castle] {
|
|---|
| 2309 | icon-image: "sightseeing/castle.png";
|
|---|
| 2310 | text: auto;
|
|---|
| 2311 | }
|
|---|
| 2312 | node[historic=monument] {
|
|---|
| 2313 | icon-image: "sightseeing/monument.png";
|
|---|
| 2314 | text: auto;
|
|---|
| 2315 | }
|
|---|
| 2316 | node[historic=memorial] {
|
|---|
| 2317 | icon-image: "sightseeing/memorial.png";
|
|---|
| 2318 | text: auto;
|
|---|
| 2319 | }
|
|---|
| 2320 | node[historic=archaeological_site] {
|
|---|
| 2321 | icon-image: "sightseeing/archaeological.png";
|
|---|
| 2322 | text: auto;
|
|---|
| 2323 | }
|
|---|
| 2324 | node[historic=ruins] {
|
|---|
| 2325 | icon-image: "sightseeing/ruins.png";
|
|---|
| 2326 | text: auto;
|
|---|
| 2327 | }
|
|---|
| 2328 | node[historic=battlefield] {
|
|---|
| 2329 | icon-image: "sightseeing/battlefield.png";
|
|---|
| 2330 | text: auto;
|
|---|
| 2331 | }
|
|---|
| 2332 | node[historic=palaeontological_site] {
|
|---|
| 2333 | icon-image: "historic/palaeontological_site.png";
|
|---|
| 2334 | text: auto;
|
|---|
| 2335 | }
|
|---|
| 2336 | node[historic=wayside_cross] {
|
|---|
| 2337 | icon-image: "religion/wayside_cross.png";
|
|---|
| 2338 | text: auto;
|
|---|
| 2339 | }
|
|---|
| 2340 | node[historic=wayside_shrine] {
|
|---|
| 2341 | icon-image: "religion/wayside_shrine.png";
|
|---|
| 2342 | text: auto;
|
|---|
| 2343 | }
|
|---|
| 2344 | node[historic=boundary_stone] {
|
|---|
| 2345 | icon-image: "historic/boundary_stone.png";
|
|---|
| 2346 | text: auto;
|
|---|
| 2347 | }
|
|---|
| 2348 |
|
|---|
| 2349 | /****************/
|
|---|
| 2350 | /* landuse tags */
|
|---|
| 2351 | /****************/
|
|---|
| 2352 |
|
|---|
| 2353 | area[landuse=farm],
|
|---|
| 2354 | area[landuse=farmland],
|
|---|
| 2355 | area[landuse=meadow],
|
|---|
| 2356 | area[landuse=vineyard],
|
|---|
| 2357 | area[landuse=orchard] {
|
|---|
| 2358 | fill-color: green#b1e0c2;
|
|---|
| 2359 | }
|
|---|
| 2360 | node[landuse=farm] {
|
|---|
| 2361 | icon-image: "misc/landmark/farm.png";
|
|---|
| 2362 | text: auto;
|
|---|
| 2363 | }
|
|---|
| 2364 | node[landuse=farmland] {
|
|---|
| 2365 | icon-image: "misc/no_icon.png";
|
|---|
| 2366 | text: auto;
|
|---|
| 2367 | }
|
|---|
| 2368 | node[landuse=meadow] {
|
|---|
| 2369 | icon-image: "misc/no_icon.png";
|
|---|
| 2370 | text: auto;
|
|---|
| 2371 | }
|
|---|
| 2372 | node[landuse=vineyard] {
|
|---|
| 2373 | icon-image: "shop/groceries/fruits.png";
|
|---|
| 2374 | text: auto;
|
|---|
| 2375 | }
|
|---|
| 2376 | area[landuse=quarry] {
|
|---|
| 2377 | fill-color: quarry#888888;
|
|---|
| 2378 | }
|
|---|
| 2379 | node[landuse=quarry] {
|
|---|
| 2380 | icon-image: "misc/landmark/mine.png";
|
|---|
| 2381 | text: auto;
|
|---|
| 2382 | }
|
|---|
| 2383 | area[landuse=landfill] {
|
|---|
| 2384 | fill-color: landfill#663300;
|
|---|
| 2385 | }
|
|---|
| 2386 | node[landuse=landfill] {
|
|---|
| 2387 | icon-image: "misc/no_icon.png";
|
|---|
| 2388 | text: auto;
|
|---|
| 2389 | }
|
|---|
| 2390 | area[landuse=basin],
|
|---|
| 2391 | area[landuse=reservoir] {
|
|---|
| 2392 | fill-color: basin#0000bf;
|
|---|
| 2393 | }
|
|---|
| 2394 | node[landuse=basin],
|
|---|
| 2395 | node[landuse=reservoir] {
|
|---|
| 2396 | icon-image: "misc/no_icon.png";
|
|---|
| 2397 | text: auto;
|
|---|
| 2398 | }
|
|---|
| 2399 | area[landuse=forest] {
|
|---|
| 2400 | fill-color: forest#b1efc8;
|
|---|
| 2401 | }
|
|---|
| 2402 | node[landuse=forest] {
|
|---|
| 2403 | icon-image: "misc/landmark/trees.png";
|
|---|
| 2404 | text: auto;
|
|---|
| 2405 | }
|
|---|
| 2406 | area[landuse=allotments],
|
|---|
| 2407 | area[landuse=greenhouse_horticulture],
|
|---|
| 2408 | area[landuse=plant_nursery],
|
|---|
| 2409 | area[landuse=grass] {
|
|---|
| 2410 | fill-color: green#b1e0c2;
|
|---|
| 2411 | }
|
|---|
| 2412 | node[landuse=allotments] {
|
|---|
| 2413 | icon-image: "misc/landmark/plant.png";
|
|---|
| 2414 | text: auto;
|
|---|
| 2415 | }
|
|---|
| 2416 | node[landuse=greenhouse_horticulture] {
|
|---|
| 2417 | icon-image: "misc/landuse/greenhouse_horticulture.png";
|
|---|
| 2418 | text: auto;
|
|---|
| 2419 | }
|
|---|
| 2420 | node[landuse=plant_nursery],
|
|---|
| 2421 | node[landuse=grass] {
|
|---|
| 2422 | icon-image: "misc/landmark/plant.png";
|
|---|
| 2423 | text: auto;
|
|---|
| 2424 | }
|
|---|
| 2425 | area[landuse=residential] {
|
|---|
| 2426 | fill-color: residential#f0f0f0;
|
|---|
| 2427 | }
|
|---|
| 2428 | node[landuse=residential] {
|
|---|
| 2429 | icon-image: "misc/landuse/residential.png";
|
|---|
| 2430 | text: auto;
|
|---|
| 2431 | }
|
|---|
| 2432 | area[landuse=garages] {
|
|---|
| 2433 | fill-color: garages#f0f0f0;
|
|---|
| 2434 | }
|
|---|
| 2435 | node[landuse=garages] {
|
|---|
| 2436 | icon-image: "misc/landuse/garages.png";
|
|---|
| 2437 | text: auto;
|
|---|
| 2438 | }
|
|---|
| 2439 | area[landuse=farmyard] {
|
|---|
| 2440 | fill-color: farmyard#f0f0f0;
|
|---|
| 2441 | }
|
|---|
| 2442 | node[landuse=farmyard] {
|
|---|
| 2443 | icon-image: "misc/no_icon.png";
|
|---|
| 2444 | text: auto;
|
|---|
| 2445 | }
|
|---|
| 2446 | area[landuse=retail],
|
|---|
| 2447 | area[landuse=commercial] {
|
|---|
| 2448 | fill-color: retail#ffc4ee;
|
|---|
| 2449 | }
|
|---|
| 2450 | node[landuse=retail] {
|
|---|
| 2451 | icon-image: "shop/mall.png";
|
|---|
| 2452 | text: auto;
|
|---|
| 2453 | }
|
|---|
| 2454 | node[landuse=commercial] {
|
|---|
| 2455 | icon-image: "misc/landuse/commercial.png";
|
|---|
| 2456 | text: auto;
|
|---|
| 2457 | }
|
|---|
| 2458 | area[landuse=industrial] {
|
|---|
| 2459 | fill-color: industrial#ecd8ff;
|
|---|
| 2460 | }
|
|---|
| 2461 | node[landuse=industrial] {
|
|---|
| 2462 | icon-image: "misc/landmark/works.png";
|
|---|
| 2463 | text: auto;
|
|---|
| 2464 | }
|
|---|
| 2465 | area[landuse=brownfield] {
|
|---|
| 2466 | fill-color: brownfield#ecba32;
|
|---|
| 2467 | }
|
|---|
| 2468 | node[landuse=brownfield] {
|
|---|
| 2469 | icon-image: "misc/no_icon.png";
|
|---|
| 2470 | text: auto;
|
|---|
| 2471 | }
|
|---|
| 2472 | area[landuse=greenfield] {
|
|---|
| 2473 | fill-color: greenfield#b1ec5c;
|
|---|
| 2474 | }
|
|---|
| 2475 | node[landuse=greenfield] {
|
|---|
| 2476 | icon-image: "misc/no_icon.png";
|
|---|
| 2477 | text: auto;
|
|---|
| 2478 | }
|
|---|
| 2479 | area[landuse=railway] {
|
|---|
| 2480 | fill-color: railland#888888;
|
|---|
| 2481 | }
|
|---|
| 2482 | node[landuse=railway] {
|
|---|
| 2483 | icon-image: "transport/railway_station.png";
|
|---|
| 2484 | text: auto;
|
|---|
| 2485 | }
|
|---|
| 2486 | area[landuse=construction] {
|
|---|
| 2487 | fill-color: construction#ffff00;
|
|---|
| 2488 | }
|
|---|
| 2489 | way[landuse=construction] {
|
|---|
| 2490 | width: 1;
|
|---|
| 2491 | color: construction#ffff00;
|
|---|
| 2492 | dashes: 9,9;
|
|---|
| 2493 | }
|
|---|
| 2494 | node[landuse=construction] {
|
|---|
| 2495 | icon-image: "misc/construction.png";
|
|---|
| 2496 | text: auto;
|
|---|
| 2497 | }
|
|---|
| 2498 | area[landuse=military] {
|
|---|
| 2499 | fill-color: military#b62c2c;
|
|---|
| 2500 | }
|
|---|
| 2501 | node[landuse=military] {
|
|---|
| 2502 | icon-image: "vehicle/tank.png";
|
|---|
| 2503 | text: auto;
|
|---|
| 2504 | }
|
|---|
| 2505 | area[landuse=religious] {
|
|---|
| 2506 | fill-color: religious#ffd454;
|
|---|
| 2507 | }
|
|---|
| 2508 | area[landuse=cemetery] {
|
|---|
| 2509 | fill-color: cemetery#b1efc8;
|
|---|
| 2510 | }
|
|---|
| 2511 | node[landuse=cemetery] {
|
|---|
| 2512 | icon-image: "rendering/landuse/cemetery.png";
|
|---|
| 2513 | text: auto;
|
|---|
| 2514 | }
|
|---|
| 2515 | area[landuse=village_green] {
|
|---|
| 2516 | fill-color: green#b1e0c2;
|
|---|
| 2517 | }
|
|---|
| 2518 | node[landuse=village_green] {
|
|---|
| 2519 | icon-image: "leisure/common.png";
|
|---|
| 2520 | text: auto;
|
|---|
| 2521 | }
|
|---|
| 2522 | area[landuse=recreation_ground] {
|
|---|
| 2523 | fill-color: green#b1e0c2;
|
|---|
| 2524 | }
|
|---|
| 2525 | node[landuse=recreation_ground] {
|
|---|
| 2526 | icon-image: "leisure/common.png";
|
|---|
| 2527 | text: auto;
|
|---|
| 2528 | }
|
|---|
| 2529 |
|
|---|
| 2530 | /*****************/
|
|---|
| 2531 | /* military tags */
|
|---|
| 2532 | /*****************/
|
|---|
| 2533 |
|
|---|
| 2534 | area[military=airfield],
|
|---|
| 2535 | area[military=bunker],
|
|---|
| 2536 | area[military=barracks],
|
|---|
| 2537 | area[military=danger_area],
|
|---|
| 2538 | area[military=range] {
|
|---|
| 2539 | fill-color: military#b62c2c;
|
|---|
| 2540 | }
|
|---|
| 2541 | node[military=airfield] {
|
|---|
| 2542 | icon-image: "transport/airport/airfield.png";
|
|---|
| 2543 | text: auto;
|
|---|
| 2544 | }
|
|---|
| 2545 | node[military=bunker] {
|
|---|
| 2546 | icon-image: "misc/landmark/bunker.png";
|
|---|
| 2547 | text: auto;
|
|---|
| 2548 | }
|
|---|
| 2549 | node[military=barracks] {
|
|---|
| 2550 | icon-image: "misc/no_icon.png";
|
|---|
| 2551 | text: auto;
|
|---|
| 2552 | }
|
|---|
| 2553 | node[military=danger_area] {
|
|---|
| 2554 | icon-image: "misc/danger.png";
|
|---|
| 2555 | text: auto;
|
|---|
| 2556 | }
|
|---|
| 2557 | node[military=range] {
|
|---|
| 2558 | icon-image: "misc/landmark/range.png";
|
|---|
| 2559 | text: auto;
|
|---|
| 2560 | }
|
|---|
| 2561 |
|
|---|
| 2562 | /*************************/
|
|---|
| 2563 | /* public_transport tags */
|
|---|
| 2564 | /*************************/
|
|---|
| 2565 |
|
|---|
| 2566 | node[public_transport=stop_position] {
|
|---|
| 2567 | icon-image: "transport/railway_small.png";
|
|---|
| 2568 | text: auto;
|
|---|
| 2569 | }
|
|---|
| 2570 | node[highway=bus_stop] {
|
|---|
| 2571 | icon-image: "transport/bus_small.png";
|
|---|
| 2572 | text: auto;
|
|---|
| 2573 | }
|
|---|
| 2574 | node[public_transport=stop_position][bus=yes] {
|
|---|
| 2575 | icon-image: "transport/bus_small.png";
|
|---|
| 2576 | text: auto;
|
|---|
| 2577 | }
|
|---|
| 2578 | node[public_transport=stop_position][aerial=yes] {
|
|---|
| 2579 | icon-image: "transport/aerialway.png";
|
|---|
| 2580 | text: auto;
|
|---|
| 2581 | }
|
|---|
| 2582 | node[public_transport=stop_position][ferry=yes] {
|
|---|
| 2583 | icon-image: "transport/ferry.png";
|
|---|
| 2584 | text: auto;
|
|---|
| 2585 | }
|
|---|
| 2586 | node[public_transport=stop_position][tram=yes] {
|
|---|
| 2587 | icon-image: "transport/tram.png";
|
|---|
| 2588 | text: auto;
|
|---|
| 2589 | }
|
|---|
| 2590 | node[public_transport=stop_position][train=yes] {
|
|---|
| 2591 | icon-image: "transport/railway_small.png";
|
|---|
| 2592 | text: auto;
|
|---|
| 2593 | }
|
|---|
| 2594 | area[public_transport=platform]:closed {
|
|---|
| 2595 | fill-color: service#809bc0;
|
|---|
| 2596 | }
|
|---|
| 2597 | way[public_transport=platform]!:closed {
|
|---|
| 2598 | width: 3;
|
|---|
| 2599 | color: service#809bc0;
|
|---|
| 2600 | dashes: 12,3;
|
|---|
| 2601 | }
|
|---|
| 2602 | node[public_transport=platform] {
|
|---|
| 2603 | icon-image: "transport/bus_small.png";
|
|---|
| 2604 | text: auto;
|
|---|
| 2605 | }
|
|---|
| 2606 | node[public_transport=platform][bus=yes] {
|
|---|
| 2607 | icon-image: "transport/bus_small.png";
|
|---|
| 2608 | text: auto;
|
|---|
| 2609 | }
|
|---|
| 2610 | node[public_transport=platform][aerial=yes] {
|
|---|
| 2611 | icon-image: "transport/aerialway/station.png";
|
|---|
| 2612 | text: auto;
|
|---|
| 2613 | }
|
|---|
| 2614 | node[public_transport=platform][ferry=yes] {
|
|---|
| 2615 | icon-image: "transport/ferry.png";
|
|---|
| 2616 | text: auto;
|
|---|
| 2617 | }
|
|---|
| 2618 | node[public_transport=platform][tram=yes],
|
|---|
| 2619 | node[public_transport=platform][train=yes] {
|
|---|
| 2620 | icon-image: "transport/railway_station.png";
|
|---|
| 2621 | text: auto;
|
|---|
| 2622 | }
|
|---|
| 2623 |
|
|---|
| 2624 | /****************/
|
|---|
| 2625 | /* railway tags */
|
|---|
| 2626 | /****************/
|
|---|
| 2627 |
|
|---|
| 2628 | area[railway=station], area[railway=tram_station],
|
|---|
| 2629 | area[railway=subway_entrance],
|
|---|
| 2630 | area[railway=crossing], area[railway=level_crossing] {
|
|---|
| 2631 | fill-color: railwaypoint#f7efb7;
|
|---|
| 2632 | }
|
|---|
| 2633 | node[railway=station], node[railway=tram_station] {
|
|---|
| 2634 | icon-image: "transport/railway_station.png";
|
|---|
| 2635 | text: auto;
|
|---|
| 2636 | }
|
|---|
| 2637 | node[railway=halt] {
|
|---|
| 2638 | icon-image: "transport/railway_small.png";
|
|---|
| 2639 | text: auto;
|
|---|
| 2640 | }
|
|---|
| 2641 | node[railway=tram_stop] {
|
|---|
| 2642 | icon-image: "transport/tram.png";
|
|---|
| 2643 | text: auto;
|
|---|
| 2644 | }
|
|---|
| 2645 | node[railway=subway_entrance] {
|
|---|
| 2646 | icon-image: "transport/underground.png";
|
|---|
| 2647 | text: auto;
|
|---|
| 2648 | }
|
|---|
| 2649 | node[railway=crossing] {
|
|---|
| 2650 | icon-image: "vehicle/crossing_small.png";
|
|---|
| 2651 | text: auto;
|
|---|
| 2652 | }
|
|---|
| 2653 | node[railway=level_crossing] {
|
|---|
| 2654 | icon-image: "vehicle/crossing.png";
|
|---|
| 2655 | text: auto;
|
|---|
| 2656 | }
|
|---|
| 2657 | way[railway=rail] {
|
|---|
| 2658 | width: 2;
|
|---|
| 2659 | color: rail#404040;
|
|---|
| 2660 | dashes: 9,9;
|
|---|
| 2661 | dashes-background-color: raildashed#ffffff;
|
|---|
| 2662 | }
|
|---|
| 2663 | way[railway=rail][service=siding] {
|
|---|
| 2664 | width: 1;
|
|---|
| 2665 | }
|
|---|
| 2666 | way[railway=rail][service=yard],
|
|---|
| 2667 | way[railway=rail][service=spur] {
|
|---|
| 2668 | width: 1;
|
|---|
| 2669 | color: railyard#552200
|
|---|
| 2670 | }
|
|---|
| 2671 | /* draw tram on top of other way (highway=*) or
|
|---|
| 2672 | as a standalone style */
|
|---|
| 2673 | way[highway][railway=tram]::core_railway, way[!highway][railway=tram] {
|
|---|
| 2674 | object-z-index: 1;
|
|---|
| 2675 | modifier: false; /* don't draw default way if there is no line on default layer */
|
|---|
| 2676 | width: 1;
|
|---|
| 2677 | color: otherrail#808080;
|
|---|
| 2678 | color: railover#202020;
|
|---|
| 2679 | dashes: 9,9;
|
|---|
| 2680 | casing-width: 1;
|
|---|
| 2681 | casing-color: otherrail#808080;
|
|---|
| 2682 | casing-linecap: round;
|
|---|
| 2683 | casing-dashes: 9,9;
|
|---|
| 2684 | }
|
|---|
| 2685 | way[railway=light_rail] {
|
|---|
| 2686 | width: 2;
|
|---|
| 2687 | color: otherrail#808080;
|
|---|
| 2688 | dashes: 9,9;
|
|---|
| 2689 | }
|
|---|
| 2690 | way[railway=subway] {
|
|---|
| 2691 | width: 1;
|
|---|
| 2692 | color: subway#606060;
|
|---|
| 2693 | dashes: 9,9;
|
|---|
| 2694 | }
|
|---|
| 2695 | way[railway=preserved] {
|
|---|
| 2696 | width: 1;
|
|---|
| 2697 | color: oldrail#404040;
|
|---|
| 2698 | dashes: 9,9;
|
|---|
| 2699 | }
|
|---|
| 2700 | /* disused often appears together with highway=xy */
|
|---|
| 2701 | /* -> draw on separate layer with higher z-index, but use */
|
|---|
| 2702 | /* modifier: false; to suppress default line when used alone. */
|
|---|
| 2703 | way[railway=disused]::core_railway,
|
|---|
| 2704 | way[railway=abandoned]::core_railway {
|
|---|
| 2705 | width: 1;
|
|---|
| 2706 | modifier: false;
|
|---|
| 2707 | z-index: 1;
|
|---|
| 2708 | color: oldrail#404040;
|
|---|
| 2709 | dashes: 9,9;
|
|---|
| 2710 | }
|
|---|
| 2711 | way[railway=narrow_gauge],
|
|---|
| 2712 | way[railway=monorail] {
|
|---|
| 2713 | width: 1;
|
|---|
| 2714 | color: rail#404040;
|
|---|
| 2715 | dashes: 9,9;
|
|---|
| 2716 | }
|
|---|
| 2717 | area[railway=turntable],
|
|---|
| 2718 | area[railway=buffer_stop] {
|
|---|
| 2719 | fill-color: rail#404040;
|
|---|
| 2720 | }
|
|---|
| 2721 | node[railway=turntable] {
|
|---|
| 2722 | icon-image: "transport/turntable.png";
|
|---|
| 2723 | text: auto;
|
|---|
| 2724 | }
|
|---|
| 2725 | node[railway=buffer_stop] {
|
|---|
| 2726 | icon-image: "transport/buffer_stop.png";
|
|---|
| 2727 | text: auto;
|
|---|
| 2728 | }
|
|---|
| 2729 | area[railway=platform]:closed {
|
|---|
| 2730 | fill-color: rail#404040;
|
|---|
| 2731 | }
|
|---|
| 2732 | way[railway=platform] {
|
|---|
| 2733 | width: 2;
|
|---|
| 2734 | color: rail#404040;
|
|---|
| 2735 | }
|
|---|
| 2736 | way[railway=funicular] {
|
|---|
| 2737 | width: 1;
|
|---|
| 2738 | color: rail#404040;
|
|---|
| 2739 | dashes: 9,9;
|
|---|
| 2740 | }
|
|---|
| 2741 | node[railway=rail], node[railway=tram], node[railway=light_rail],
|
|---|
| 2742 | node[railway=subway], node[railway=preserved],
|
|---|
| 2743 | node[railway=disused], node[railway=abandoned],
|
|---|
| 2744 | node[railway=narrow_gauge], node[railway=monorail],
|
|---|
| 2745 | node[railway=platform], node[railway=funicular],
|
|---|
| 2746 | node[service=yard], node[service=siding], node[service=spur] {
|
|---|
| 2747 | icon-image: "misc/deprecated.png";
|
|---|
| 2748 | text: auto;
|
|---|
| 2749 | }
|
|---|
| 2750 |
|
|---|
| 2751 | /****************/
|
|---|
| 2752 | /* aeroway tags */
|
|---|
| 2753 | /****************/
|
|---|
| 2754 |
|
|---|
| 2755 | area[aeroway=aerodrome] {
|
|---|
| 2756 | fill-color: aeroway#660000;
|
|---|
| 2757 | }
|
|---|
| 2758 | way[aeroway=aerodrome] {
|
|---|
| 2759 | width: 2;
|
|---|
| 2760 | color: aeroway#660000;
|
|---|
| 2761 | dashes: 9,9;
|
|---|
| 2762 | }
|
|---|
| 2763 | node[aeroway=aerodrome] {
|
|---|
| 2764 | icon-image: "transport/airport.png";
|
|---|
| 2765 | text: auto;
|
|---|
| 2766 | }
|
|---|
| 2767 | area[aeroway=terminal] {
|
|---|
| 2768 | fill-color: terminal#bb0000;
|
|---|
| 2769 | }
|
|---|
| 2770 | node[aeroway=terminal] {
|
|---|
| 2771 | icon-image: "transport/airport/terminal.png";
|
|---|
| 2772 | text: auto;
|
|---|
| 2773 | }
|
|---|
| 2774 | area[aeroway=helipad] {
|
|---|
| 2775 | fill-color: aeroway_dark#330000;
|
|---|
| 2776 | }
|
|---|
| 2777 | node[aeroway=helipad] {
|
|---|
| 2778 | icon-image: "transport/airport/helipad.png";
|
|---|
| 2779 | text: auto;
|
|---|
| 2780 | }
|
|---|
| 2781 | way[aeroway=runway] {
|
|---|
| 2782 | width: 3;
|
|---|
| 2783 | color: aeroway_dark#330000;
|
|---|
| 2784 | }
|
|---|
| 2785 | node[aeroway=runway] {
|
|---|
| 2786 | icon-image: "transport/airport/runway.png";
|
|---|
| 2787 | text: auto;
|
|---|
| 2788 | }
|
|---|
| 2789 | way[aeroway=taxiway] {
|
|---|
| 2790 | width: 2;
|
|---|
| 2791 | color: aeroway#660000;
|
|---|
| 2792 | }
|
|---|
| 2793 | node[aeroway=taxiway] {
|
|---|
| 2794 | icon-image: "transport/airport/taxiway.png";
|
|---|
| 2795 | text: auto;
|
|---|
| 2796 | }
|
|---|
| 2797 | area[aeroway=apron], area[aeroway=hangar] {
|
|---|
| 2798 | fill-color: aeroway_light#990000;
|
|---|
| 2799 | }
|
|---|
| 2800 | node[aeroway=apron] {
|
|---|
| 2801 | icon-image: "transport/airport/apron.png";
|
|---|
| 2802 | text: auto;
|
|---|
| 2803 | }
|
|---|
| 2804 | node[aeroway=hangar] {
|
|---|
| 2805 | icon-image: "transport/airport/hangar.png";
|
|---|
| 2806 | text: auto;
|
|---|
| 2807 | }
|
|---|
| 2808 | node[aeroway=gate] {
|
|---|
| 2809 | icon-image: "transport/airport/gate.png";
|
|---|
| 2810 | text: auto;
|
|---|
| 2811 | }
|
|---|
| 2812 | node[aeroway=windsock] {
|
|---|
| 2813 | icon-image: "transport/airport/windsock.png";
|
|---|
| 2814 | text: auto;
|
|---|
| 2815 | }
|
|---|
| 2816 |
|
|---|
| 2817 | /******************/
|
|---|
| 2818 | /* aerialway tags */
|
|---|
| 2819 | /******************/
|
|---|
| 2820 |
|
|---|
| 2821 | way[aerialway=cable_car],
|
|---|
| 2822 | way[aerialway=gondola] {
|
|---|
| 2823 | width: 1;
|
|---|
| 2824 | color: aerialway#663300;
|
|---|
| 2825 | dashes: 9,9;
|
|---|
| 2826 | }
|
|---|
| 2827 | node[aerialway=cable_car] {
|
|---|
| 2828 | icon-image: "transport/aerialway/cable_car.png";
|
|---|
| 2829 | text: auto;
|
|---|
| 2830 | }
|
|---|
| 2831 | node[aerialway=gondola] {
|
|---|
| 2832 | icon-image: "transport/aerialway/gondola.png";
|
|---|
| 2833 | text: auto;
|
|---|
| 2834 | }
|
|---|
| 2835 | way[aerialway=chair_lift] {
|
|---|
| 2836 | width: 1;
|
|---|
| 2837 | color: aerialway#663300;
|
|---|
| 2838 | dashes: 6,6;
|
|---|
| 2839 | }
|
|---|
| 2840 | node[aerialway=chair_lift] {
|
|---|
| 2841 | icon-image: "transport/aerialway/chair_lift.png";
|
|---|
| 2842 | text: auto;
|
|---|
| 2843 | }
|
|---|
| 2844 | way[aerialway=drag_lift] {
|
|---|
| 2845 | width: 1;
|
|---|
| 2846 | color: aerialway#663300;
|
|---|
| 2847 | dashes: 3,3;
|
|---|
| 2848 | }
|
|---|
| 2849 | node[aerialway=drag_lift] {
|
|---|
| 2850 | icon-image: "transport/aerialway/drag_lift.png";
|
|---|
| 2851 | text: auto;
|
|---|
| 2852 | }
|
|---|
| 2853 | area[aerialway=station],
|
|---|
| 2854 | area[aerialway=pylon] {
|
|---|
| 2855 | fill-color: aerialway#663300;
|
|---|
| 2856 | }
|
|---|
| 2857 | node[aerialway=station] {
|
|---|
| 2858 | icon-image: "transport/aerialway/station.png";
|
|---|
| 2859 | text: auto;
|
|---|
| 2860 | }
|
|---|
| 2861 | node[aerialway=pylon] {
|
|---|
| 2862 | icon-image: "misc/landmark/power/tower_small.png";
|
|---|
| 2863 | text: auto;
|
|---|
| 2864 | }
|
|---|
| 2865 | way[aerialway=goods] {
|
|---|
| 2866 | width: 1;
|
|---|
| 2867 | color: aerialway#663300;
|
|---|
| 2868 | dashes: 2,2;
|
|---|
| 2869 | }
|
|---|
| 2870 | node[aerialway=goods] {
|
|---|
| 2871 | icon-image: "transport/aerialway/goods.png";
|
|---|
| 2872 | text: auto;
|
|---|
| 2873 | }
|
|---|
| 2874 |
|
|---|
| 2875 | /****************/
|
|---|
| 2876 | /* natural tags */
|
|---|
| 2877 | /****************/
|
|---|
| 2878 |
|
|---|
| 2879 | area[natural=spring] {
|
|---|
| 2880 | fill-color: light_water#00005f;
|
|---|
| 2881 | }
|
|---|
| 2882 | node[natural=spring] {
|
|---|
| 2883 | icon-image: "misc/landmark/spring.png";
|
|---|
| 2884 | text: auto;
|
|---|
| 2885 | }
|
|---|
| 2886 | node[natural=saddle] {
|
|---|
| 2887 | icon-image: "presets/saddle.svg";
|
|---|
| 2888 | text: auto;
|
|---|
| 2889 | }
|
|---|
| 2890 | area[natural=peak] {
|
|---|
| 2891 | fill-color: peak#663300;
|
|---|
| 2892 | }
|
|---|
| 2893 | node[natural=peak] {
|
|---|
| 2894 | icon-image: "presets/peak.svg";
|
|---|
| 2895 | text: auto;
|
|---|
| 2896 | }
|
|---|
| 2897 | area[natural=glacier] {
|
|---|
| 2898 | fill-color: glacier#ffffff;
|
|---|
| 2899 | }
|
|---|
| 2900 | node[natural=glacier] {
|
|---|
| 2901 | icon-image: "misc/landmark/glacier_small.png";
|
|---|
| 2902 | text: auto;
|
|---|
| 2903 | }
|
|---|
| 2904 | area[natural=volcano] {
|
|---|
| 2905 | fill-color: volcano#5f0000;
|
|---|
| 2906 | }
|
|---|
| 2907 | node[natural=volcano] {
|
|---|
| 2908 | icon-image: "misc/landmark/volcano_small.png";
|
|---|
| 2909 | text: auto;
|
|---|
| 2910 | }
|
|---|
| 2911 | area[natural=cliff]:closed {
|
|---|
| 2912 | fill-color: natural#002f00;
|
|---|
| 2913 | }
|
|---|
| 2914 | way[natural=cliff] {
|
|---|
| 2915 | repeat-image: "misc/cliff-pattern.png";
|
|---|
| 2916 | repeat-image-align: top;
|
|---|
| 2917 | width: 1;
|
|---|
| 2918 | color: #b2b2b2;
|
|---|
| 2919 | }
|
|---|
| 2920 | node[natural=cliff] {
|
|---|
| 2921 | icon-image: "misc/cliff.png";
|
|---|
| 2922 | text: auto;
|
|---|
| 2923 | }
|
|---|
| 2924 | area[natural=scree] {
|
|---|
| 2925 | fill-color: natural#002f00;
|
|---|
| 2926 | }
|
|---|
| 2927 | node[natural=scree] {
|
|---|
| 2928 | icon-image: "misc/no_icon.png";
|
|---|
| 2929 | text: auto;
|
|---|
| 2930 | }
|
|---|
| 2931 | area[natural=scrub] {
|
|---|
| 2932 | fill-color: scrub#007000;
|
|---|
| 2933 | }
|
|---|
| 2934 | node[natural=scrub] {
|
|---|
| 2935 | icon-image: "misc/no_icon.png";
|
|---|
| 2936 | text: auto;
|
|---|
| 2937 | }
|
|---|
| 2938 | area[natural=fell] {
|
|---|
| 2939 | fill-color: natural#002f00;
|
|---|
| 2940 | }
|
|---|
| 2941 | node[natural=fell] {
|
|---|
| 2942 | icon-image: "misc/no_icon.png";
|
|---|
| 2943 | text: auto;
|
|---|
| 2944 | }
|
|---|
| 2945 | area[natural=heath] {
|
|---|
| 2946 | fill-color: heath#ffffc0;
|
|---|
| 2947 | }
|
|---|
| 2948 | node[natural=heath] {
|
|---|
| 2949 | icon-image: "misc/no_icon.png";
|
|---|
| 2950 | text: auto;
|
|---|
| 2951 | }
|
|---|
| 2952 | way[natural=tree_row] {
|
|---|
| 2953 | width: 2;
|
|---|
| 2954 | color: woodarea#008000;
|
|---|
| 2955 | }
|
|---|
| 2956 | node[natural=tree_row] {
|
|---|
| 2957 | icon-image: "misc/no_icon.png";
|
|---|
| 2958 | text: auto;
|
|---|
| 2959 | }
|
|---|
| 2960 | area[natural=wood] {
|
|---|
| 2961 | fill-color: woodarea#008000;
|
|---|
| 2962 | }
|
|---|
| 2963 | node[natural=wood] {
|
|---|
| 2964 | icon-image: "misc/landmark/trees.png";
|
|---|
| 2965 | text: auto;
|
|---|
| 2966 | }
|
|---|
| 2967 | area[natural=grassland] {
|
|---|
| 2968 | fill-color: green#b1e0c2;
|
|---|
| 2969 | }
|
|---|
| 2970 | node[natural=grassland] {
|
|---|
| 2971 | icon-image: "misc/no_icon.png";
|
|---|
| 2972 | text: auto;
|
|---|
| 2973 | }
|
|---|
| 2974 | area[natural=wetland] {
|
|---|
| 2975 | fill-color: marsh#4f4ff3;
|
|---|
| 2976 | }
|
|---|
| 2977 | node[natural=wetland] {
|
|---|
| 2978 | icon-image: "misc/no_icon.png";
|
|---|
| 2979 | text: auto;
|
|---|
| 2980 | }
|
|---|
| 2981 | area[natural=water] {
|
|---|
| 2982 | fill-color: water#0000ff;
|
|---|
| 2983 | }
|
|---|
| 2984 | node[natural=water] {
|
|---|
| 2985 | icon-image: "nautical/water.png";
|
|---|
| 2986 | text: auto;
|
|---|
| 2987 | }
|
|---|
| 2988 | way[natural=coastline] {
|
|---|
| 2989 | width: 1;
|
|---|
| 2990 | color: water#0000ff;
|
|---|
| 2991 | }
|
|---|
| 2992 | node[natural=coastline] {
|
|---|
| 2993 | icon-image: "misc/coastline.png";
|
|---|
| 2994 | text: auto;
|
|---|
| 2995 | }
|
|---|
| 2996 | area[natural=mud] {
|
|---|
| 2997 | fill-color: mud#cba762;
|
|---|
| 2998 | }
|
|---|
| 2999 | node[natural=mud] {
|
|---|
| 3000 | icon-image: "misc/mud.png";
|
|---|
| 3001 | text: auto;
|
|---|
| 3002 | }
|
|---|
| 3003 | area[natural=beach] {
|
|---|
| 3004 | fill-color: beach#f8dba2;
|
|---|
| 3005 | }
|
|---|
| 3006 | node[natural=beach] {
|
|---|
| 3007 | icon-image: "misc/beach.png";
|
|---|
| 3008 | text: auto;
|
|---|
| 3009 | }
|
|---|
| 3010 | area[natural=sand] {
|
|---|
| 3011 | fill-color: sand#f8dba2;
|
|---|
| 3012 | }
|
|---|
| 3013 | node[natural=sand] {
|
|---|
| 3014 | icon-image: "misc/no_icon.png";
|
|---|
| 3015 | text: auto;
|
|---|
| 3016 | }
|
|---|
| 3017 | area[natural=bay],
|
|---|
| 3018 | area[natural=land],
|
|---|
| 3019 | area[natural=cave_entrance] {
|
|---|
| 3020 | fill-color: natural#002f00;
|
|---|
| 3021 | }
|
|---|
| 3022 | node[natural=bay] {
|
|---|
| 3023 | icon-image: "misc/bay.png";
|
|---|
| 3024 | text: auto;
|
|---|
| 3025 | }
|
|---|
| 3026 | node[natural=land] {
|
|---|
| 3027 | icon-image: "misc/no_icon.png";
|
|---|
| 3028 | text: auto;
|
|---|
| 3029 | }
|
|---|
| 3030 | node[natural=cave_entrance] {
|
|---|
| 3031 | icon-image: "misc/landmark/cave_entrance.png";
|
|---|
| 3032 | text: auto;
|
|---|
| 3033 | }
|
|---|
| 3034 | node[natural=tree] {
|
|---|
| 3035 | icon-image: "misc/landmark/trees.png";
|
|---|
| 3036 | text: auto;
|
|---|
| 3037 | }
|
|---|
| 3038 | node[natural=tree][type=conifer],
|
|---|
| 3039 | node[natural=tree][leaf_type=needleleaved] {
|
|---|
| 3040 | icon-image: "misc/landmark/trees_conifer.png";
|
|---|
| 3041 | text: auto;
|
|---|
| 3042 | }
|
|---|
| 3043 | node[natural=tree][type=broad_leaved],
|
|---|
| 3044 | node[natural=tree][leaf_type=broadleaved] {
|
|---|
| 3045 | icon-image: "misc/landmark/trees_broad_leaved.png";
|
|---|
| 3046 | text: auto;
|
|---|
| 3047 | }
|
|---|
| 3048 | node[natural=tree][type=palm] {
|
|---|
| 3049 | icon-image: "misc/landmark/trees_palm.png";
|
|---|
| 3050 | text: auto;
|
|---|
| 3051 | }
|
|---|
| 3052 |
|
|---|
| 3053 | /*****************/
|
|---|
| 3054 | /* waterway tags */
|
|---|
| 3055 | /*****************/
|
|---|
| 3056 |
|
|---|
| 3057 | way[waterway=river] {
|
|---|
| 3058 | width: 2;
|
|---|
| 3059 | color: water#0000ff;
|
|---|
| 3060 | }
|
|---|
| 3061 | area[waterway=riverbank] {
|
|---|
| 3062 | fill-color: riverbank#0000cf;
|
|---|
| 3063 | width: 1;
|
|---|
| 3064 | color: riverbank#0000cf;
|
|---|
| 3065 | }
|
|---|
| 3066 | way[waterway=canal], way[waterway=wadi] {
|
|---|
| 3067 | width: 2;
|
|---|
| 3068 | color: water#0000ff;
|
|---|
| 3069 | }
|
|---|
| 3070 | way[waterway=stream] {
|
|---|
| 3071 | width: 1;
|
|---|
| 3072 | color: stream#6600cc;
|
|---|
| 3073 | }
|
|---|
| 3074 | way[waterway=ditch], way[waterway=drain] {
|
|---|
| 3075 | width: 1;
|
|---|
| 3076 | color: water#0000ff;
|
|---|
| 3077 | }
|
|---|
| 3078 | area[waterway=dock] {
|
|---|
| 3079 | fill-color: dock#0000cf;
|
|---|
| 3080 | }
|
|---|
| 3081 | node[waterway=dock] {
|
|---|
| 3082 | icon-image: "nautical/boatyard.png";
|
|---|
| 3083 | text: auto;
|
|---|
| 3084 | }
|
|---|
| 3085 | node[waterway=lock_gate] {
|
|---|
| 3086 | icon-image: "nautical/lock_gate.png";
|
|---|
| 3087 | text: auto;
|
|---|
| 3088 | }
|
|---|
| 3089 | node[waterway=turning_point] {
|
|---|
| 3090 | icon-image: "nautical/turning.png";
|
|---|
| 3091 | text: auto;
|
|---|
| 3092 | }
|
|---|
| 3093 | area[waterway=boatyard] {
|
|---|
| 3094 | fill-color: manmade#d8d8d8;
|
|---|
| 3095 | }
|
|---|
| 3096 | node[waterway=boatyard] {
|
|---|
| 3097 | icon-image: "nautical/boatyard.png";
|
|---|
| 3098 | text: auto;
|
|---|
| 3099 | }
|
|---|
| 3100 | node[waterway=water_point] {
|
|---|
| 3101 | icon-image: "accommodation/camping/water.png";
|
|---|
| 3102 | text: auto;
|
|---|
| 3103 | }
|
|---|
| 3104 | node[waterway=waste_disposal] {
|
|---|
| 3105 | icon-image: "accommodation/camping/wastewater.png";
|
|---|
| 3106 | text: auto;
|
|---|
| 3107 | }
|
|---|
| 3108 | node[waterway=mooring] {
|
|---|
| 3109 | icon-image: "nautical/marina.png";
|
|---|
| 3110 | text: auto;
|
|---|
| 3111 | }
|
|---|
| 3112 | way[waterway=weir] {
|
|---|
| 3113 | width: 2;
|
|---|
| 3114 | color: manmade#d8d8d8;
|
|---|
| 3115 | }
|
|---|
| 3116 | node[waterway=weir] {
|
|---|
| 3117 | icon-image: "nautical/weir.png";
|
|---|
| 3118 | text: auto;
|
|---|
| 3119 | }
|
|---|
| 3120 | way[waterway=rapids] {
|
|---|
| 3121 | width: 2;
|
|---|
| 3122 | color: rapids#8080ff;
|
|---|
| 3123 | }
|
|---|
| 3124 | node[waterway=rapids] {
|
|---|
| 3125 | icon-image: "misc/no_icon.png";
|
|---|
| 3126 | text: auto;
|
|---|
| 3127 | }
|
|---|
| 3128 | area[waterway=dam]:closed {
|
|---|
| 3129 | fill-color: manmade#d8d8d8;
|
|---|
| 3130 | }
|
|---|
| 3131 | way[waterway=dam] {
|
|---|
| 3132 | width: 2;
|
|---|
| 3133 | color: manmade#d8d8d8;
|
|---|
| 3134 | }
|
|---|
| 3135 | node[waterway=dam] {
|
|---|
| 3136 | icon-image: "nautical/dam.png";
|
|---|
| 3137 | text: auto;
|
|---|
| 3138 | }
|
|---|
| 3139 | /* it's not possible to have both line and area, line seems more likely */
|
|---|
| 3140 | way[waterway=waterfall] {
|
|---|
| 3141 | width: 2;
|
|---|
| 3142 | color: manmade#d8d8d8;
|
|---|
| 3143 | }
|
|---|
| 3144 | node[waterway=waterfall] {
|
|---|
| 3145 | icon-image: "nautical/waterfall.png";
|
|---|
| 3146 | text: auto;
|
|---|
| 3147 | }
|
|---|
| 3148 | node[waterway=river], node[waterway=riverbank],
|
|---|
| 3149 | node[waterway=canal], node[waterway=wadi],
|
|---|
| 3150 | node[waterway=stream],
|
|---|
| 3151 | node[waterway=ditch], node[waterway=drain] {
|
|---|
| 3152 | icon-image: "misc/deprecated.png";
|
|---|
| 3153 | text: auto;
|
|---|
| 3154 | }
|
|---|
| 3155 |
|
|---|
| 3156 | /**************/
|
|---|
| 3157 | /* route tags */
|
|---|
| 3158 | /**************/
|
|---|
| 3159 |
|
|---|
| 3160 | way[route=bus],
|
|---|
| 3161 | way[route=ferry],
|
|---|
| 3162 | way[route=flight],
|
|---|
| 3163 | way[route=ncn],
|
|---|
| 3164 | way[route=subsea],
|
|---|
| 3165 | way[route=ski],
|
|---|
| 3166 | way[route=tour],
|
|---|
| 3167 | way[route=pub_crawl] {
|
|---|
| 3168 | width: 1;
|
|---|
| 3169 | color: route#809bc0;
|
|---|
| 3170 | dashes: 9,9;
|
|---|
| 3171 | }
|
|---|
| 3172 | node[route=bus],
|
|---|
| 3173 | node[route=ferry],
|
|---|
| 3174 | node[route=flight],
|
|---|
| 3175 | node[route=ncn],
|
|---|
| 3176 | node[route=subsea],
|
|---|
| 3177 | node[route=ski],
|
|---|
| 3178 | node[route=tour],
|
|---|
| 3179 | node[route=pub_crawl] {
|
|---|
| 3180 | icon-image: "misc/deprecated.png";
|
|---|
| 3181 | text: auto;
|
|---|
| 3182 | }
|
|---|
| 3183 |
|
|---|
| 3184 | /**************/
|
|---|
| 3185 | /* sport tags */
|
|---|
| 3186 | /**************/
|
|---|
| 3187 |
|
|---|
| 3188 | area[sport="9pin"],
|
|---|
| 3189 | area[sport="10pin"],
|
|---|
| 3190 | area[sport=athletics],
|
|---|
| 3191 | area[sport=soccer],
|
|---|
| 3192 | area[sport=australian_football],
|
|---|
| 3193 | area[sport=american_football],
|
|---|
| 3194 | area[sport=canadian_football],
|
|---|
| 3195 | area[sport=gaelic_football],
|
|---|
| 3196 | area[sport=rugby_league],
|
|---|
| 3197 | area[sport=rugby_union] {
|
|---|
| 3198 | fill-color: sport#bde3cb;
|
|---|
| 3199 | }
|
|---|
| 3200 | node[sport="9pin"] {
|
|---|
| 3201 | icon-image: "sport/10pin.png";
|
|---|
| 3202 | text: auto;
|
|---|
| 3203 | }
|
|---|
| 3204 | node[sport="10pin"] {
|
|---|
| 3205 | icon-image: "sport/10pin.png";
|
|---|
| 3206 | text: auto;
|
|---|
| 3207 | }
|
|---|
| 3208 | node[sport=athletics] {
|
|---|
| 3209 | icon-image: "sport/athletics.png";
|
|---|
| 3210 | text: auto;
|
|---|
| 3211 | }
|
|---|
| 3212 | node[sport=soccer],
|
|---|
| 3213 | node[sport=australian_football],
|
|---|
| 3214 | node[sport=american_football],
|
|---|
| 3215 | node[sport=canadian_football],
|
|---|
| 3216 | node[sport=gaelic_football] {
|
|---|
| 3217 | icon-image: "sport/soccer.png";
|
|---|
| 3218 | text: auto;
|
|---|
| 3219 | }
|
|---|
| 3220 | node[sport=rugby_league],
|
|---|
| 3221 | node[sport=rugby_union] {
|
|---|
| 3222 | icon-image: "sport/football.png";
|
|---|
| 3223 | text: auto;
|
|---|
| 3224 | }
|
|---|
| 3225 | area[sport=baseball],
|
|---|
| 3226 | area[sport=basketball],
|
|---|
| 3227 | area[sport=boules],
|
|---|
| 3228 | area[sport=bowls],
|
|---|
| 3229 | area[sport=canoe],
|
|---|
| 3230 | area[sport=chess],
|
|---|
| 3231 | area[sport=climbing],
|
|---|
| 3232 | area[sport=cricket],
|
|---|
| 3233 | area[sport=cricket_nets],
|
|---|
| 3234 | area[sport=croquet] {
|
|---|
| 3235 | fill-color: sport#bde3cb;
|
|---|
| 3236 | }
|
|---|
| 3237 | node[sport=baseball] {
|
|---|
| 3238 | icon-image: "sport/baseball.png";
|
|---|
| 3239 | text: auto;
|
|---|
| 3240 | }
|
|---|
| 3241 | node[sport=basketball] {
|
|---|
| 3242 | icon-image: "sport/basketball.png";
|
|---|
| 3243 | text: auto;
|
|---|
| 3244 | }
|
|---|
| 3245 | node[sport=boules] {
|
|---|
| 3246 | icon-image: "sport/boule.png";
|
|---|
| 3247 | text: auto;
|
|---|
| 3248 | }
|
|---|
| 3249 | node[sport=bowls] {
|
|---|
| 3250 | icon-image: "sport/boule.png";
|
|---|
| 3251 | text: auto;
|
|---|
| 3252 | }
|
|---|
| 3253 | node[sport=canoe] {
|
|---|
| 3254 | icon-image: "sport/canoe.png";
|
|---|
| 3255 | text: auto;
|
|---|
| 3256 | }
|
|---|
| 3257 | node[sport=chess] {
|
|---|
| 3258 | icon-image: "sport/chess.png";
|
|---|
| 3259 | text: auto;
|
|---|
| 3260 | }
|
|---|
| 3261 | node[sport=climbing] {
|
|---|
| 3262 | icon-image:"sport/climbing.png" ;
|
|---|
| 3263 | text: auto;
|
|---|
| 3264 | }
|
|---|
| 3265 | node[sport=cricket] {
|
|---|
| 3266 | icon-image: "sport/cricket.png";
|
|---|
| 3267 | text: auto;
|
|---|
| 3268 | }
|
|---|
| 3269 | node[sport=cricket_nets] {
|
|---|
| 3270 | icon-image: "misc/no_icon.png";
|
|---|
| 3271 | text: auto;
|
|---|
| 3272 | }
|
|---|
| 3273 | node[sport=croquet] {
|
|---|
| 3274 | icon-image: "sport/croquet.png";
|
|---|
| 3275 | text: auto;
|
|---|
| 3276 | }
|
|---|
| 3277 | area[sport=cycling],
|
|---|
| 3278 | area[sport=dog_racing],
|
|---|
| 3279 | area[sport=equestrian],
|
|---|
| 3280 | area[sport=golf],
|
|---|
| 3281 | area[sport=gymnastics],
|
|---|
| 3282 | area[sport=hockey],
|
|---|
| 3283 | area[sport=horse_racing],
|
|---|
| 3284 | area[sport=karting],
|
|---|
| 3285 | area[sport=motocross],
|
|---|
| 3286 | area[sport=motor] {
|
|---|
| 3287 | fill-color: sport#bde3cb;
|
|---|
| 3288 | }
|
|---|
| 3289 | node[sport=cycling] {
|
|---|
| 3290 | icon-image: "sport/cycling.png";
|
|---|
| 3291 | text: auto;
|
|---|
| 3292 | }
|
|---|
| 3293 | node[sport=dog_racing] {
|
|---|
| 3294 | icon-image: "leisure/dog.png";
|
|---|
| 3295 | text: auto;
|
|---|
| 3296 | }
|
|---|
| 3297 | node[sport=equestrian] {
|
|---|
| 3298 | icon-image: "sport/riding.png";
|
|---|
| 3299 | text: auto;
|
|---|
| 3300 | }
|
|---|
| 3301 | node[sport=golf] {
|
|---|
| 3302 | icon-image: "sport/golf.png";
|
|---|
| 3303 | text: auto;
|
|---|
| 3304 | }
|
|---|
| 3305 | node[sport=gymnastics] {
|
|---|
| 3306 | icon-image: "sport/multi.png";
|
|---|
| 3307 | text: auto;
|
|---|
| 3308 | }
|
|---|
| 3309 | node[sport=hockey] {
|
|---|
| 3310 | icon-image: "sport/hockey.png";
|
|---|
| 3311 | text: auto;
|
|---|
| 3312 | }
|
|---|
| 3313 | node[sport=horse_racing] {
|
|---|
| 3314 | icon-image: "sport/riding.png";
|
|---|
| 3315 | text: auto;
|
|---|
| 3316 | }
|
|---|
| 3317 | node[sport=karting] {
|
|---|
| 3318 | icon-image: "sport/karting.png";
|
|---|
| 3319 | text: auto;
|
|---|
| 3320 | }
|
|---|
| 3321 | node[sport=motocross] {
|
|---|
| 3322 | icon-image: "sport/motocross.png";
|
|---|
| 3323 | text: auto;
|
|---|
| 3324 | }
|
|---|
| 3325 | node[sport=motor] {
|
|---|
| 3326 | icon-image: "sport/motor.png";
|
|---|
| 3327 | text: auto;
|
|---|
| 3328 | }
|
|---|
| 3329 | area[sport=multi],
|
|---|
| 3330 | area[sport=pelota],
|
|---|
| 3331 | area[sport=racquet],
|
|---|
| 3332 | area[sport=skating],
|
|---|
| 3333 | area[sport=skateboard] {
|
|---|
| 3334 | fill-color: sport#bde3cb;
|
|---|
| 3335 | }
|
|---|
| 3336 | node[sport=multi] {
|
|---|
| 3337 | icon-image: "sport/multi.png";
|
|---|
| 3338 | text: auto;
|
|---|
| 3339 | }
|
|---|
| 3340 | node[sport=pelota] {
|
|---|
| 3341 | icon-image: "sport/pelota.png";
|
|---|
| 3342 | text: auto;
|
|---|
| 3343 | }
|
|---|
| 3344 | node[sport=racquet] {
|
|---|
| 3345 | icon-image: "sport/racquetball.png";
|
|---|
| 3346 | text: auto;
|
|---|
| 3347 | }
|
|---|
| 3348 | node[sport=skating] {
|
|---|
| 3349 | icon-image: "sport/skating.png";
|
|---|
| 3350 | text: auto;
|
|---|
| 3351 | }
|
|---|
| 3352 | node[sport=skateboard] {
|
|---|
| 3353 | icon-image: "sport/skateboard.png";
|
|---|
| 3354 | text: auto;
|
|---|
| 3355 | }
|
|---|
| 3356 | area[sport=swimming] {
|
|---|
| 3357 | fill-color: swimming_pool#51c4ef;
|
|---|
| 3358 | }
|
|---|
| 3359 | node[sport=swimming] {
|
|---|
| 3360 | icon-image: "sport/pool.png";
|
|---|
| 3361 | text: auto;
|
|---|
| 3362 | }
|
|---|
| 3363 | area[sport=skiing],
|
|---|
| 3364 | area[sport=table_tennis],
|
|---|
| 3365 | area[sport=tennis],
|
|---|
| 3366 | area[sport=paintball] {
|
|---|
| 3367 | fill-color: sport#bde3cb;
|
|---|
| 3368 | }
|
|---|
| 3369 | node[sport=skiing] {
|
|---|
| 3370 | icon-image: "sport/skiing.png";
|
|---|
| 3371 | text: auto;
|
|---|
| 3372 | }
|
|---|
| 3373 | node[sport=table_tennis] {
|
|---|
| 3374 | icon-image: "sport/table_tennis.png";
|
|---|
| 3375 | text: auto;
|
|---|
| 3376 | }
|
|---|
| 3377 | node[sport=tennis] {
|
|---|
| 3378 | icon-image: "sport/tennis.png";
|
|---|
| 3379 | text: auto;
|
|---|
| 3380 | }
|
|---|
| 3381 | node[sport=paintball] {
|
|---|
| 3382 | icon-image: "misc/no_icon.png";
|
|---|
| 3383 | text: auto;
|
|---|
| 3384 | }
|
|---|
| 3385 | area[sport=squash],
|
|---|
| 3386 | area[sport=shooting],
|
|---|
| 3387 | area[sport=volleyball],
|
|---|
| 3388 | area[sport=beachvolleyball],
|
|---|
| 3389 | area[sport=bowling],
|
|---|
| 3390 | area[sport=handball],
|
|---|
| 3391 | area[sport=rowing],
|
|---|
| 3392 | area[sport=sailing],
|
|---|
| 3393 | area[sport=diving],
|
|---|
| 3394 | area[sport=badminton] {
|
|---|
| 3395 | fill-color: sport#bde3cb;
|
|---|
| 3396 | }
|
|---|
| 3397 | node[sport=squash] {
|
|---|
| 3398 | icon-image: "misc/no_icon.png";
|
|---|
| 3399 | text: auto;
|
|---|
| 3400 | }
|
|---|
| 3401 | node[sport=shooting] {
|
|---|
| 3402 | icon-image: "misc/no_icon.png";
|
|---|
| 3403 | text: auto;
|
|---|
| 3404 | }
|
|---|
| 3405 | node[sport=volleyball] {
|
|---|
| 3406 | icon-image: "sport/volleyball.png";
|
|---|
| 3407 | text: auto;
|
|---|
| 3408 | }
|
|---|
| 3409 | node[sport=beachvolleyball] {
|
|---|
| 3410 | icon-image: "sport/beachvolleyball.png";
|
|---|
| 3411 | text: auto;
|
|---|
| 3412 | }
|
|---|
| 3413 | node[sport=bowling] {
|
|---|
| 3414 | icon-image: "sport/10pin.png";
|
|---|
| 3415 | text: auto;
|
|---|
| 3416 | }
|
|---|
| 3417 | node[sport=handball] {
|
|---|
| 3418 | icon-image: "sport/handball.png";
|
|---|
| 3419 | text: auto;
|
|---|
| 3420 | }
|
|---|
| 3421 | node[sport=rowing] {
|
|---|
| 3422 | icon-image: "sport/rowing.png";
|
|---|
| 3423 | text: auto;
|
|---|
| 3424 | }
|
|---|
| 3425 | node[sport=sailing] {
|
|---|
| 3426 | icon-image: "misc/no_icon.png";
|
|---|
| 3427 | text: auto;
|
|---|
| 3428 | }
|
|---|
| 3429 | node[sport=diving] {
|
|---|
| 3430 | icon-image: "sport/diving.png";
|
|---|
| 3431 | text: auto;
|
|---|
| 3432 | }
|
|---|
| 3433 | node[sport=badminton] {
|
|---|
| 3434 | icon-image: "misc/no_icon.png";
|
|---|
| 3435 | text: auto;
|
|---|
| 3436 | }
|
|---|
| 3437 | area[sport=archery],
|
|---|
| 3438 | area[sport=fishing],
|
|---|
| 3439 | area[sport=safety_training],
|
|---|
| 3440 | area[sport=model_aerodrome],
|
|---|
| 3441 | area[sport=rc_car] {
|
|---|
| 3442 | fill-color: sport#bde3cb;
|
|---|
| 3443 | }
|
|---|
| 3444 | node[sport=archery] {
|
|---|
| 3445 | icon-image: "sport/archery.png";
|
|---|
| 3446 | text: auto;
|
|---|
| 3447 | }
|
|---|
| 3448 | node[sport=fishing] {
|
|---|
| 3449 | icon-image: "sport/fishing.png";
|
|---|
| 3450 | text: auto;
|
|---|
| 3451 | }
|
|---|
| 3452 | node[sport=safety_training] {
|
|---|
| 3453 | icon-image: "sport/safety_training.png";
|
|---|
| 3454 | text: auto;
|
|---|
| 3455 | }
|
|---|
| 3456 | node[sport=model_aerodrome] {
|
|---|
| 3457 | icon-image: "transport/airport.png";
|
|---|
| 3458 | text: auto;
|
|---|
| 3459 | }
|
|---|
| 3460 | node[sport=rc_car] {
|
|---|
| 3461 | icon-image: "transport/car.png";
|
|---|
| 3462 | text: auto;
|
|---|
| 3463 | }
|
|---|
| 3464 |
|
|---|
| 3465 | /*******************/
|
|---|
| 3466 | /* properties tags */
|
|---|
| 3467 | /*******************/
|
|---|
| 3468 |
|
|---|
| 3469 | node[mountain_pass?] {
|
|---|
| 3470 | icon-image: "misc/landmark/mountain_pass.png";
|
|---|
| 3471 | text: auto;
|
|---|
| 3472 | }
|
|---|
| 3473 |
|
|---|
| 3474 | /*****************/
|
|---|
| 3475 | /* boundary tags */
|
|---|
| 3476 | /*****************/
|
|---|
| 3477 |
|
|---|
| 3478 | way[boundary=national]::core_boundary,
|
|---|
| 3479 | way[boundary=administrative]::core_boundary,
|
|---|
| 3480 | way[boundary=postal_code]::core_boundary,
|
|---|
| 3481 | way[boundary=political]::core_boundary,
|
|---|
| 3482 | way[boundary=national_park]::core_boundary {
|
|---|
| 3483 | z-index: 2;
|
|---|
| 3484 | modifier: false;
|
|---|
| 3485 | width: 1;
|
|---|
| 3486 | color: boundary#FF6600;
|
|---|
| 3487 | dashes: 9,9;
|
|---|
| 3488 | }
|
|---|
| 3489 | way[admin_level=9]::core_boundary,
|
|---|
| 3490 | relation[admin_level=9] > way::core_boundary,
|
|---|
| 3491 | way[admin_level=10]::core_boundary,
|
|---|
| 3492 | relation[admin_level=10] > way::core_boundary {
|
|---|
| 3493 | z-index: 2;
|
|---|
| 3494 | modifier: false;
|
|---|
| 3495 | width: 1;
|
|---|
| 3496 | color: boundary#FF6600;
|
|---|
| 3497 | dashes: 9,9;
|
|---|
| 3498 | }
|
|---|
| 3499 | way[admin_level=7]::core_boundary,
|
|---|
| 3500 | relation[admin_level=7] > way::core_boundary,
|
|---|
| 3501 | way[admin_level=8]::core_boundary,
|
|---|
| 3502 | relation[admin_level=8] > way::core_boundary {
|
|---|
| 3503 | z-index: 2;
|
|---|
| 3504 | modifier: false;
|
|---|
| 3505 | width: 2;
|
|---|
| 3506 | color: boundary#FF6600;
|
|---|
| 3507 | dashes: 9,9;
|
|---|
| 3508 | }
|
|---|
| 3509 | way[admin_level=5]::core_boundary,
|
|---|
| 3510 | relation[admin_level=5] > way::core_boundary,
|
|---|
| 3511 | way[admin_level=6]::core_boundary,
|
|---|
| 3512 | relation[admin_level=6] > way::core_boundary {
|
|---|
| 3513 | z-index: 2;
|
|---|
| 3514 | modifier: false;
|
|---|
| 3515 | width: 3;
|
|---|
| 3516 | color: boundary#FF6600;
|
|---|
| 3517 | dashes: 9,9;
|
|---|
| 3518 | }
|
|---|
| 3519 | way[admin_level=3]::core_boundary,
|
|---|
| 3520 | relation[admin_level=3] > way::core_boundary,
|
|---|
| 3521 | way[admin_level=4]::core_boundary,
|
|---|
| 3522 | relation[admin_level=4] > way::core_boundary {
|
|---|
| 3523 | z-index: 2;
|
|---|
| 3524 | modifier: false;
|
|---|
| 3525 | width: 4;
|
|---|
| 3526 | color: boundary#FF6600;
|
|---|
| 3527 | dashes: 9,9;
|
|---|
| 3528 | }
|
|---|
| 3529 | way[admin_level=1]::core_boundary,
|
|---|
| 3530 | relation[admin_level=1] > way::core_boundary,
|
|---|
| 3531 | way[admin_level=2]::core_boundary,
|
|---|
| 3532 | relation[admin_level=2] > way::core_boundary {
|
|---|
| 3533 | z-index: 2;
|
|---|
| 3534 | modifier: false;
|
|---|
| 3535 | width: 5;
|
|---|
| 3536 | color: boundary#FF6600;
|
|---|
| 3537 | dashes: 9,9;
|
|---|
| 3538 | }
|
|---|
| 3539 | node[boundary=national],
|
|---|
| 3540 | node[boundary=administrative],
|
|---|
| 3541 | node[boundary=postal_code],
|
|---|
| 3542 | node[boundary=political],
|
|---|
| 3543 | node[boundary=national_park] {
|
|---|
| 3544 | icon-image: "misc/deprecated.png";
|
|---|
| 3545 | text: auto;
|
|---|
| 3546 | }
|
|---|
| 3547 |
|
|---|
| 3548 | /***************/
|
|---|
| 3549 | /* zoom levels */
|
|---|
| 3550 | /***************/
|
|---|
| 3551 |
|
|---|
| 3552 | node {
|
|---|
| 3553 | text: auto;
|
|---|
| 3554 | }
|
|---|
| 3555 | node|z16- {
|
|---|
| 3556 | symbol-size:1;
|
|---|
| 3557 | symbol-shape: square;
|
|---|
| 3558 | symbol-stroke-color: node_standard#ffff00;
|
|---|
| 3559 | }
|
|---|
| 3560 | node|z16-:connection {
|
|---|
| 3561 | symbol-stroke-color: node_connection#ffff00;
|
|---|
| 3562 | }
|
|---|
| 3563 | node|z16-:tagged {
|
|---|
| 3564 | symbol-stroke-color: none;
|
|---|
| 3565 | symbol-fill-color: node_tagged#00ffff;
|
|---|
| 3566 | }
|
|---|
| 3567 |
|
|---|
| 3568 | node|z16 { symbol-size: 2; }
|
|---|
| 3569 | way > node|z16 { symbol-size: 1; }
|
|---|
| 3570 | node|z16:connection { symbol-size: 2; }
|
|---|
| 3571 |
|
|---|
| 3572 | node|z17 { symbol-size: 4; }
|
|---|
| 3573 | way > node|z17 { symbol-size: 2; }
|
|---|
| 3574 | node|z17:connection { symbol-size: 4; }
|
|---|
| 3575 |
|
|---|
| 3576 | node|z18 { symbol-size: 5; }
|
|---|
| 3577 | way > node|z18 { symbol-size: 3; }
|
|---|
| 3578 | node|z18:connection { symbol-size: 5; }
|
|---|
| 3579 |
|
|---|
| 3580 | node|z19- { symbol-size: 6; }
|
|---|
| 3581 | way > node|z19- { symbol-size: 4; }
|
|---|
| 3582 | node|z19-:connection { symbol-size: 6; }
|
|---|
| 3583 |
|
|---|
| 3584 | node|z-16,
|
|---|
| 3585 | relation|z-16[type=restriction] {
|
|---|
| 3586 | icon-image: none;
|
|---|
| 3587 | }
|
|---|
| 3588 | node|z-17 {
|
|---|
| 3589 | text: none;
|
|---|
| 3590 | }
|
|---|
| 3591 |
|
|---|
| 3592 | node|z20,area|z20 { font-size: 9; }
|
|---|
| 3593 | node|z21,area|z21 { font-size: 10; }
|
|---|
| 3594 | node|z22-,area|z22- { font-size: 11; }
|
|---|
| 3595 |
|
|---|
| 3596 | /**************/
|
|---|
| 3597 | /* place tags */
|
|---|
| 3598 | /**************/
|
|---|
| 3599 |
|
|---|
| 3600 | /* lot's of "openGeoDB:..." tags can be found in germany */
|
|---|
| 3601 | node|z11-["openGeoDB:type"=Stadt],
|
|---|
| 3602 | node|z11-["openGeoDB:type"=Kreis],
|
|---|
| 3603 | node|z11-["openGeoDB:type"=Gemeinde],
|
|---|
| 3604 | node|z11-["openGeoDB:type"=Ort],
|
|---|
| 3605 | node|z11-["openGeoDB:type"=District],
|
|---|
| 3606 | node|z11-["openGeoDB:location"=locality] {
|
|---|
| 3607 | icon-image: "place/settlement/town.png";
|
|---|
| 3608 | text: auto;
|
|---|
| 3609 | }
|
|---|
| 3610 | area[place=continent],
|
|---|
| 3611 | area[place=country],
|
|---|
| 3612 | area[place=state],
|
|---|
| 3613 | area[place=region],
|
|---|
| 3614 | area[place=county],
|
|---|
| 3615 | area[place=city],
|
|---|
| 3616 | area[place=town],
|
|---|
| 3617 | area[place=village],
|
|---|
| 3618 | area[place=hamlet],
|
|---|
| 3619 | area[place=isolated_dwelling],
|
|---|
| 3620 | area[place=neighbourhood],
|
|---|
| 3621 | area[place=suburb],
|
|---|
| 3622 | area[place=locality],
|
|---|
| 3623 | area[place=island],
|
|---|
| 3624 | area[place=islet] {
|
|---|
| 3625 | fill-color: place#8de3cb;
|
|---|
| 3626 | }
|
|---|
| 3627 | node|z11-[place=continent],
|
|---|
| 3628 | node|z11-[place=country],
|
|---|
| 3629 | node|z11-[place=state],
|
|---|
| 3630 | node|z11-[place=region],
|
|---|
| 3631 | node|z11-[place=county] {
|
|---|
| 3632 | icon-image: "place/settlement/capital.png";
|
|---|
| 3633 | text: auto;
|
|---|
| 3634 | }
|
|---|
| 3635 | node|z11-[place=city] {
|
|---|
| 3636 | icon-image: "place/settlement/city.png";
|
|---|
| 3637 | text: auto;
|
|---|
| 3638 | }
|
|---|
| 3639 | node|z11-[place=town],
|
|---|
| 3640 | node|z11-[place=village],
|
|---|
| 3641 | node|z11-[place=hamlet],
|
|---|
| 3642 | node|z11-[place=isolated_dwelling],
|
|---|
| 3643 | node|z11-[place=neighbourhood],
|
|---|
| 3644 | node|z11-[place=suburb] {
|
|---|
| 3645 | icon-image: "place/settlement/town.png";
|
|---|
| 3646 | text: auto;
|
|---|
| 3647 | }
|
|---|
| 3648 | node|z11-[place=locality] {
|
|---|
| 3649 | icon-image: "place/locality.png";
|
|---|
| 3650 | text: auto;
|
|---|
| 3651 | }
|
|---|
| 3652 | node|z11-[place=island] {
|
|---|
| 3653 | icon-image: "place/island.png";
|
|---|
| 3654 | text: auto;
|
|---|
| 3655 | }
|
|---|
| 3656 | node|z11-[place=islet] {
|
|---|
| 3657 | icon-image: "place/islet.png";
|
|---|
| 3658 | text: auto;
|
|---|
| 3659 | }
|
|---|
| 3660 |
|
|---|
| 3661 | /* "deprecated" tags
|
|---|
| 3662 | historic=museum -> tourism=museum
|
|---|
| 3663 | man_made=power_wind -> power=generator and power_source=wind
|
|---|
| 3664 | man_made=power_hydro -> power=generator and power_source=hydro
|
|---|
| 3665 | man_made=power_fossil -> power=generator and power_source=fossil
|
|---|
| 3666 | man_made=power_nuclear -> power=generator and power_source=nuclear
|
|---|
| 3667 | amenity=park_bench -> amenity=bench
|
|---|
| 3668 | amenity=signpost -> information=guidepost
|
|---|
| 3669 | amenity=emergency_phone -> emergency=phone
|
|---|
| 3670 | highway minor - classification now more detailed
|
|---|
| 3671 | highway=stile -> barrier=stile
|
|---|
| 3672 | highway=gate -> barrier=gate
|
|---|
| 3673 | highway=cattle_grid -> barrier=cattle_grid
|
|---|
| 3674 | highway=toll_booth -> barrier=toll_booth
|
|---|
| 3675 | highway=viaduct -> bridge=viaduct
|
|---|
| 3676 | railway=viaduct -> bridge=viaduct
|
|---|
| 3677 | waterway=aqueduct -> bridge=aqueduct
|
|---|
| 3678 | natural=marsh -> natural=wetland
|
|---|
| 3679 | leisure=zoo -> tourism=zoo
|
|---|
| 3680 | power=station -> power=plant or power=sub_station
|
|---|
| 3681 | */
|
|---|
| 3682 |
|
|---|