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