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