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