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