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