| [7041] | 1 | /*
|
|---|
| 2 | Main JOSM map paint style.
|
|---|
| 3 |
|
|---|
| 4 | Originally in XML format, migrated to MapCSS.
|
|---|
| 5 | Documentation of MapCSS format:
|
|---|
| 6 |
|
|---|
| [13454] | 7 | https://josm.openstreetmap.de/wiki/Help/Styles/MapCSSImplementation
|
|---|
| [7041] | 8 |
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | meta {
|
|---|
| [15996] | 12 | icon: "logo_32x32x8.png";
|
|---|
| [7041] | 13 | }
|
|---|
| 14 |
|
|---|
| [7378] | 15 | canvas {
|
|---|
| 16 | default-points: false;
|
|---|
| 17 | }
|
|---|
| [10013] | 18 | node {
|
|---|
| 19 | text: auto;
|
|---|
| 20 | }
|
|---|
| [7378] | 21 |
|
|---|
| [7454] | 22 | /*************************/
|
|---|
| 23 | /* create style settings */
|
|---|
| 24 | /*************************/
|
|---|
| [7041] | 25 |
|
|---|
| [7454] | 26 | setting::hide_icons {
|
|---|
| 27 | type: boolean;
|
|---|
| 28 | label: tr("Hide icons at low zoom");
|
|---|
| 29 | default: true;
|
|---|
| [7041] | 30 | }
|
|---|
| 31 |
|
|---|
| [7454] | 32 | setting::shrink_nodes {
|
|---|
| 33 | type: boolean;
|
|---|
| 34 | label: tr("Less obtrusive node symbols at low zoom");
|
|---|
| 35 | default: true;
|
|---|
| [7378] | 36 | }
|
|---|
| 37 |
|
|---|
| [13321] | 38 | setting::hide_tagged_waynodes {
|
|---|
| 39 | type: boolean;
|
|---|
| 40 | label: tr("Hide tagged waynodes at low zoom");
|
|---|
| 41 | default: true;
|
|---|
| 42 | }
|
|---|
| 43 |
|
|---|
| [7520] | 44 | setting::highway_labels {
|
|---|
| 45 | type: boolean;
|
|---|
| 46 | label: tr("Display street labels (at high zoom)");
|
|---|
| 47 | default: true;
|
|---|
| 48 | }
|
|---|
| 49 |
|
|---|
| [8050] | 50 | setting::alt_turn_icons {
|
|---|
| 51 | type: boolean;
|
|---|
| 52 | label: tr("Use alternative turn restriction icon set");
|
|---|
| 53 | default: false;
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| [8986] | 56 | setting::place_fill_colour {
|
|---|
| 57 | type: boolean;
|
|---|
| 58 | label: tr("Display fill colour of areas with place=*");
|
|---|
| 59 | default: false;
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| [9009] | 62 | setting::partial_fill {
|
|---|
| 63 | type: boolean;
|
|---|
| 64 | label: tr("Areas are drawn with fill only around their inner edges");
|
|---|
| [9082] | 65 | default: true;
|
|---|
| [9009] | 66 | }
|
|---|
| 67 |
|
|---|
| [16796] | 68 | setting::note_annotation {
|
|---|
| 69 | type: boolean;
|
|---|
| 70 | label: tr("Display note=* annotation on nodes");
|
|---|
| 71 | default: false;
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| [7041] | 74 | /*********************/
|
|---|
| 75 | /* turn restrictions */
|
|---|
| 76 | /*********************/
|
|---|
| 77 |
|
|---|
| [8050] | 78 | relation[restriction=no_left_turn][!setting("alt_turn_icons")] {
|
|---|
| [10808] | 79 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_left_turn_red.svg";
|
|---|
| [8050] | 80 | set icon_z17;
|
|---|
| 81 | text: auto;
|
|---|
| 82 | }
|
|---|
| 83 | relation[restriction=no_left_turn][setting("alt_turn_icons")] {
|
|---|
| [10706] | 84 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_left_turn.svg";
|
|---|
| [7454] | 85 | set icon_z17;
|
|---|
| [7041] | 86 | text: auto;
|
|---|
| 87 | }
|
|---|
| [8050] | 88 | relation[restriction=no_right_turn][!setting("alt_turn_icons")] {
|
|---|
| [10808] | 89 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_right_turn_red.svg";
|
|---|
| [8050] | 90 | set icon_z17;
|
|---|
| 91 | text: auto;
|
|---|
| 92 | }
|
|---|
| 93 | relation[restriction=no_right_turn][setting("alt_turn_icons")] {
|
|---|
| [10706] | 94 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_right_turn.svg";
|
|---|
| [7454] | 95 | set icon_z17;
|
|---|
| [7041] | 96 | text: auto;
|
|---|
| 97 | }
|
|---|
| [8050] | 98 | relation[restriction=no_straight_on][!setting("alt_turn_icons")] {
|
|---|
| [10808] | 99 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_straight_on_red.svg";
|
|---|
| [8050] | 100 | set icon_z17;
|
|---|
| 101 | text: auto;
|
|---|
| 102 | }
|
|---|
| 103 | relation[restriction=no_straight_on][setting("alt_turn_icons")] {
|
|---|
| [10706] | 104 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_straight_on.svg";
|
|---|
| [7454] | 105 | set icon_z17;
|
|---|
| [7041] | 106 | text: auto;
|
|---|
| 107 | }
|
|---|
| [7744] | 108 | relation[restriction=no_u_turn] {
|
|---|
| [10706] | 109 | icon-image: "presets/vehicle/restriction/turn_restrictions/no_u_turn.svg";
|
|---|
| [7454] | 110 | set icon_z17;
|
|---|
| [7041] | 111 | text: auto;
|
|---|
| 112 | }
|
|---|
| [7744] | 113 | relation[restriction=only_left_turn] {
|
|---|
| [10706] | 114 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_left_turn.svg";
|
|---|
| [7454] | 115 | set icon_z17;
|
|---|
| [7041] | 116 | text: auto;
|
|---|
| 117 | }
|
|---|
| [7744] | 118 | relation[restriction=only_right_turn] {
|
|---|
| [10706] | 119 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_right_turn.svg";
|
|---|
| [7454] | 120 | set icon_z17;
|
|---|
| [7041] | 121 | text: auto;
|
|---|
| 122 | }
|
|---|
| [7744] | 123 | relation[restriction=only_straight_on] {
|
|---|
| [10706] | 124 | icon-image: "presets/vehicle/restriction/turn_restrictions/only_straight_on.svg";
|
|---|
| [7454] | 125 | set icon_z17;
|
|---|
| [7041] | 126 | text: auto;
|
|---|
| 127 | }
|
|---|
| [7744] | 128 | node[restriction] {
|
|---|
| [10706] | 129 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7744] | 130 | set icon_z17;
|
|---|
| 131 | text: auto;
|
|---|
| 132 | }
|
|---|
| [7041] | 133 |
|
|---|
| 134 | /******************/
|
|---|
| 135 | /* bridge, tunnel */
|
|---|
| 136 | /******************/
|
|---|
| 137 |
|
|---|
| [8137] | 138 | way[bridge=yes]::core_bridge,
|
|---|
| [15191] | 139 | way[bridge=aqueduct]::core_bridge,
|
|---|
| 140 | way[bridge=boardwalk]::core_bridge,
|
|---|
| [7116] | 141 | way[bridge=cantilever]::core_bridge,
|
|---|
| 142 | way[bridge=covered]::core_bridge,
|
|---|
| 143 | way[bridge=low_water_crossing]::core_bridge,
|
|---|
| [15191] | 144 | way[bridge=movable]::core_bridge,
|
|---|
| [7116] | 145 | way[bridge=trestle]::core_bridge,
|
|---|
| [15191] | 146 | way[bridge=viaduct]::core_bridge {
|
|---|
| [7638] | 147 | major-z-index: 2;
|
|---|
| [7271] | 148 | object-z-index: -1;
|
|---|
| [7041] | 149 | width: +4;
|
|---|
| [7271] | 150 | color: bridge#0000FF;
|
|---|
| 151 | opacity: 0.9;
|
|---|
| [7041] | 152 | }
|
|---|
| [8137] | 153 | way[tunnel=yes]::core_tunnel,
|
|---|
| [7364] | 154 | way[tunnel=culvert]::core_tunnel,
|
|---|
| [15061] | 155 | way[tunnel=flooded]::core_tunnel,
|
|---|
| [7364] | 156 | way[tunnel=building_passage]::core_tunnel,
|
|---|
| 157 | way[tunnel=avalanche_protector]::core_tunnel {
|
|---|
| [7638] | 158 | major-z-index: 2;
|
|---|
| [7255] | 159 | object-z-index: -1;
|
|---|
| 160 | width: +5;
|
|---|
| 161 | color: tunnel#964B00;
|
|---|
| [7271] | 162 | opacity: 0.9;
|
|---|
| [7041] | 163 | }
|
|---|
| 164 | node[oneway],
|
|---|
| [7116] | 165 | node[bridge],
|
|---|
| [7041] | 166 | node[tunnel?],
|
|---|
| 167 | node[tunnel?!],
|
|---|
| 168 | node[cutting?!],
|
|---|
| 169 | node[embankment?!] {
|
|---|
| [10706] | 170 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 171 | set icon_z17;
|
|---|
| [7041] | 172 | }
|
|---|
| 173 |
|
|---|
| 174 | /****************************/
|
|---|
| 175 | /* access restrictions tags */
|
|---|
| 176 | /****************************/
|
|---|
| 177 |
|
|---|
| 178 | way[access?!]::core_access {
|
|---|
| 179 | z-index: -1;
|
|---|
| 180 | width: +2;
|
|---|
| 181 | color: no#ff8080;
|
|---|
| 182 | dashes: 2,2;
|
|---|
| 183 | }
|
|---|
| 184 | way[access=permissive]::core_access {
|
|---|
| 185 | z-index: -1;
|
|---|
| 186 | width: +2;
|
|---|
| 187 | color: permissive#80ff80;
|
|---|
| 188 | dashes: 2,2;
|
|---|
| 189 | }
|
|---|
| 190 | way[access=private]::core_access {
|
|---|
| 191 | z-index: -1;
|
|---|
| 192 | width: +2;
|
|---|
| 193 | color: private#ff8080;
|
|---|
| 194 | dashes: 2,2;
|
|---|
| 195 | }
|
|---|
| 196 | way[access=destination]::core_access {
|
|---|
| 197 | z-index: -1;
|
|---|
| 198 | width: +2;
|
|---|
| 199 | color: destination#8080ff;
|
|---|
| 200 | dashes: 2,2;
|
|---|
| 201 | }
|
|---|
| [8012] | 202 | node[traffic_sign][access?!] {
|
|---|
| [10706] | 203 | icon-image: "presets/vehicle/restriction/restrictions.svg";
|
|---|
| [7454] | 204 | set icon_z17;
|
|---|
| [7041] | 205 | }
|
|---|
| [9892] | 206 | node[traffic_sign][access=permissive][!is_prop_set(icon-image)],
|
|---|
| 207 | node[traffic_sign][access=private][!is_prop_set(icon-image)],
|
|---|
| 208 | node[traffic_sign][access=destination][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 209 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 210 | set icon_z17;
|
|---|
| [7041] | 211 | }
|
|---|
| [8012] | 212 | node[traffic_sign][bicycle?!] {
|
|---|
| [10706] | 213 | icon-image: "presets/vehicle/restriction/bicycle.svg";
|
|---|
| [7454] | 214 | set icon_z17;
|
|---|
| [7041] | 215 | }
|
|---|
| [8012] | 216 | node[traffic_sign][bicycle=designated] {
|
|---|
| [10706] | 217 | icon-image: "presets/vehicle/restriction/bicycle-designated.svg";
|
|---|
| [7454] | 218 | set icon_z17;
|
|---|
| [7041] | 219 | }
|
|---|
| [8012] | 220 | node[traffic_sign][foot?!] {
|
|---|
| [10706] | 221 | icon-image: "presets/vehicle/restriction/foot.svg";
|
|---|
| [7454] | 222 | set icon_z17;
|
|---|
| [7041] | 223 | }
|
|---|
| [8012] | 224 | node[traffic_sign][foot=designated] {
|
|---|
| [10706] | 225 | icon-image: "presets/vehicle/restriction/foot-designated.svg";
|
|---|
| [7454] | 226 | set icon_z17;
|
|---|
| [7041] | 227 | }
|
|---|
| [8012] | 228 | node[traffic_sign][goods?!],
|
|---|
| 229 | node[traffic_sign][hgv?!] {
|
|---|
| [10706] | 230 | icon-image: "presets/vehicle/restriction/goods.svg";
|
|---|
| [7454] | 231 | set icon_z17;
|
|---|
| [7041] | 232 | }
|
|---|
| [8012] | 233 | node[traffic_sign][horse?!] {
|
|---|
| [10706] | 234 | icon-image: "presets/vehicle/restriction/horse.svg";
|
|---|
| [7454] | 235 | set icon_z17;
|
|---|
| [7041] | 236 | }
|
|---|
| [8012] | 237 | node[traffic_sign][horse=designated] {
|
|---|
| [10706] | 238 | icon-image: "presets/vehicle/restriction/horse-designated.svg";
|
|---|
| [7454] | 239 | set icon_z17;
|
|---|
| [7041] | 240 | }
|
|---|
| [8012] | 241 | node[traffic_sign][motorcycle?!] {
|
|---|
| [10706] | 242 | icon-image: "presets/vehicle/restriction/motorbike.svg";
|
|---|
| [7454] | 243 | set icon_z17;
|
|---|
| [7041] | 244 | }
|
|---|
| [8012] | 245 | node[traffic_sign][motorcar?!] {
|
|---|
| [10706] | 246 | icon-image: "presets/vehicle/restriction/motorcar.svg";
|
|---|
| [7454] | 247 | set icon_z17;
|
|---|
| [7041] | 248 | }
|
|---|
| [8012] | 249 | node[traffic_sign][psv?!] {
|
|---|
| [10706] | 250 | icon-image: "presets/vehicle/restriction/psv.svg";
|
|---|
| [7454] | 251 | set icon_z17;
|
|---|
| [7041] | 252 | }
|
|---|
| [9892] | 253 | node[traffic_sign][motorboat?!][!is_prop_set(icon-image)],
|
|---|
| 254 | node[traffic_sign][boat?!][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 255 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 256 | set icon_z17;
|
|---|
| [7041] | 257 | }
|
|---|
| [8137] | 258 | node[noexit=yes] {
|
|---|
| [10706] | 259 | icon-image: "presets/vehicle/restriction/dead_end.svg";
|
|---|
| [7454] | 260 | set icon_z17;
|
|---|
| [7041] | 261 | }
|
|---|
| [8012] | 262 | node[traffic_sign][maxweight] {
|
|---|
| [10706] | 263 | icon-image: "presets/vehicle/restriction/maxweight.svg";
|
|---|
| [7454] | 264 | set icon_z17;
|
|---|
| [7041] | 265 | }
|
|---|
| [8012] | 266 | node[traffic_sign][maxheight] {
|
|---|
| [10706] | 267 | icon-image: "presets/vehicle/restriction/maxheight.svg";
|
|---|
| [7454] | 268 | set icon_z17;
|
|---|
| [7041] | 269 | }
|
|---|
| [8012] | 270 | node[traffic_sign][maxwidth] {
|
|---|
| [10706] | 271 | icon-image: "presets/vehicle/restriction/maxwidth.svg";
|
|---|
| [7454] | 272 | set icon_z17;
|
|---|
| [7041] | 273 | }
|
|---|
| [8012] | 274 | node[traffic_sign][maxlength] {
|
|---|
| [10706] | 275 | icon-image: "presets/vehicle/restriction/maxlength.svg";
|
|---|
| [7454] | 276 | set icon_z17;
|
|---|
| [7041] | 277 | }
|
|---|
| [8012] | 278 | node[traffic_sign][minspeed] {
|
|---|
| [10706] | 279 | icon-image: "presets/vehicle/restriction/minspeed.svg";
|
|---|
| [7454] | 280 | set icon_z17;
|
|---|
| [7041] | 281 | }
|
|---|
| [9892] | 282 | node[traffic_sign][maxstay][!is_prop_set(icon-image)],
|
|---|
| 283 | node[traffic_sign][toll][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 284 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 285 | set icon_z17;
|
|---|
| [7041] | 286 | }
|
|---|
| 287 |
|
|---|
| [15263] | 288 | /*************************************/
|
|---|
| 289 | /* low rendering priority properties */
|
|---|
| 290 | /*************************************/
|
|---|
| 291 |
|
|---|
| 292 | area[changing_table=yes],
|
|---|
| 293 | area[changing_table=limited] {
|
|---|
| 294 | fill-color: changing_table#f7efb7; /* same as amenity */
|
|---|
| 295 | }
|
|---|
| 296 | node[changing_table=yes],
|
|---|
| 297 | node[changing_table=limited] {
|
|---|
| 298 | icon-image: "presets/service/changing_table.svg";
|
|---|
| 299 | set icon_z17;
|
|---|
| 300 | }
|
|---|
| 301 |
|
|---|
| [7548] | 302 | /*****************************/
|
|---|
| 303 | /* building/entrance/address */
|
|---|
| 304 | /*****************************/
|
|---|
| 305 |
|
|---|
| [10808] | 306 | node["addr:housenumber"] {
|
|---|
| 307 | icon-image: "presets/misc/housenumber_small.svg";
|
|---|
| [7548] | 308 | set icon_z17;
|
|---|
| 309 | }
|
|---|
| 310 | way["addr:interpolation"=odd] {
|
|---|
| 311 | width: 1;
|
|---|
| 312 | color: address#1C86EE;
|
|---|
| 313 | dashes: 15,4;
|
|---|
| 314 | }
|
|---|
| 315 | way["addr:interpolation"=even] {
|
|---|
| 316 | width: 1;
|
|---|
| 317 | color: address#1C86EE;
|
|---|
| 318 | dashes: 4,4;
|
|---|
| 319 | }
|
|---|
| 320 | way["addr:interpolation"=all],
|
|---|
| 321 | way["addr:interpolation"=alphabetic] {
|
|---|
| 322 | width: 1;
|
|---|
| 323 | color: address#1C86EE;
|
|---|
| 324 | dashes: 2,2;
|
|---|
| 325 | }
|
|---|
| [13218] | 326 | area[building][!building?!][building!=y][building!=1] {
|
|---|
| [7548] | 327 | fill-color: building#cb9999;
|
|---|
| 328 | }
|
|---|
| [12616] | 329 | area[building=roof],
|
|---|
| 330 | area[building][!building?!][wall?!],
|
|---|
| [8139] | 331 | area[building:part][!building:part?!] {
|
|---|
| 332 | fill-color: buildingpart#dcbbbb;
|
|---|
| [8136] | 333 | }
|
|---|
| [7548] | 334 | node[building][!building?!] {
|
|---|
| [10706] | 335 | icon-image: "presets/landmark/building.svg";
|
|---|
| [7548] | 336 | set icon_z17;
|
|---|
| 337 | }
|
|---|
| 338 | node[building=garage] {
|
|---|
| [10808] | 339 | icon-image: "presets/landuse/garages.svg";
|
|---|
| [7548] | 340 | set icon_z17;
|
|---|
| 341 | }
|
|---|
| 342 | node[building=garages] {
|
|---|
| [10808] | 343 | icon-image: "presets/landuse/garages.svg";
|
|---|
| [7548] | 344 | set icon_z17;
|
|---|
| 345 | }
|
|---|
| [9433] | 346 | node[building=transformer_tower] {
|
|---|
| [10565] | 347 | icon-image: "presets/power/transformer_tower.svg";
|
|---|
| [10013] | 348 | set icon_z17;
|
|---|
| [9433] | 349 | }
|
|---|
| [9302] | 350 | node[entrance=yes],
|
|---|
| [13383] | 351 | node[entrance=home],
|
|---|
| [17059] | 352 | node[entrance=garage],
|
|---|
| [9302] | 353 | node[entrance=staircase] {
|
|---|
| [10808] | 354 | icon-image: "presets/misc/entrance_yes.svg";
|
|---|
| [7548] | 355 | set icon_z17;
|
|---|
| 356 | }
|
|---|
| 357 | node[entrance=main] {
|
|---|
| [10808] | 358 | icon-image: "presets/misc/entrance_main.svg";
|
|---|
| [7548] | 359 | set icon_z17;
|
|---|
| 360 | }
|
|---|
| 361 | node[entrance=service] {
|
|---|
| [10808] | 362 | icon-image: "presets/misc/entrance_service.svg";
|
|---|
| [7548] | 363 | set icon_z17;
|
|---|
| 364 | }
|
|---|
| 365 | node[entrance=exit] {
|
|---|
| [10808] | 366 | icon-image: "presets/misc/entrance_exit.svg";
|
|---|
| [7548] | 367 | set icon_z17;
|
|---|
| 368 | }
|
|---|
| 369 | node[entrance=emergency] {
|
|---|
| [10808] | 370 | icon-image: "presets/misc/entrance_emergency.svg";
|
|---|
| [7548] | 371 | set icon_z17;
|
|---|
| 372 | }
|
|---|
| [8136] | 373 | node[building=entrance],
|
|---|
| 374 | node[building:part] {
|
|---|
| [10706] | 375 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7795] | 376 | set icon_z17;
|
|---|
| 377 | }
|
|---|
| [7548] | 378 |
|
|---|
| [7041] | 379 | /****************/
|
|---|
| 380 | /* barrier tags */
|
|---|
| 381 | /****************/
|
|---|
| 382 |
|
|---|
| 383 | way[barrier=bollard] {
|
|---|
| [7467] | 384 | width: 2;
|
|---|
| [7041] | 385 | color: barrier#F0F050;
|
|---|
| 386 | dashes: 3,9;
|
|---|
| 387 | }
|
|---|
| 388 | node[barrier=bollard] {
|
|---|
| [10706] | 389 | icon-image: "presets/barrier/bollard.svg";
|
|---|
| [7454] | 390 | set icon_z17;
|
|---|
| [7041] | 391 | }
|
|---|
| 392 | node[barrier=gate] {
|
|---|
| [10808] | 393 | icon-image: "presets/barrier/gate.svg";
|
|---|
| [7454] | 394 | set icon_z17;
|
|---|
| [7041] | 395 | }
|
|---|
| [7611] | 396 | way[barrier=yes],
|
|---|
| [7041] | 397 | way[barrier=hedge],
|
|---|
| 398 | way[barrier=fence],
|
|---|
| [15304] | 399 | way[barrier=handrail],
|
|---|
| [7041] | 400 | way[barrier=wall],
|
|---|
| [7157] | 401 | way[barrier=guard_rail],
|
|---|
| [15465] | 402 | way[barrier=cable_barrier],
|
|---|
| [7041] | 403 | way[barrier=city_wall],
|
|---|
| 404 | way[barrier=retaining_wall],
|
|---|
| [7362] | 405 | way[barrier=block],
|
|---|
| [7626] | 406 | way[barrier=chain],
|
|---|
| [7821] | 407 | way[barrier=ditch],
|
|---|
| [9362] | 408 | way[barrier=jersey_barrier],
|
|---|
| [7626] | 409 | way[barrier=kerb] {
|
|---|
| [7467] | 410 | width: 2;
|
|---|
| [7041] | 411 | color: barrier#F0F050;
|
|---|
| 412 | }
|
|---|
| [16245] | 413 | way[barrier=hedge][area?], relation[type=multipolygon][barrier=hedge],
|
|---|
| 414 | way[barrier=wall][area?], relation[type=multipolygon][barrier=wall],
|
|---|
| 415 | way[barrier=city_wall][area?], relation[type=multipolygon][barrier=city_wall] {
|
|---|
| 416 | fill-color: barrier#F0F050;
|
|---|
| 417 | }
|
|---|
| [16938] | 418 | way[barrier=city_wall][two_sided!=yes] {
|
|---|
| 419 | repeat-image: "presets/barrier/barrier_pattern.svg";
|
|---|
| 420 | repeat-image-align: top;
|
|---|
| 421 | repeat-image-offset: 0.5;
|
|---|
| 422 | }
|
|---|
| [8409] | 423 | way[barrier=kerb] {
|
|---|
| [13091] | 424 | repeat-image: "presets/barrier/kerb_pattern.svg";
|
|---|
| 425 | repeat-image-align: top;
|
|---|
| [16938] | 426 | repeat-image-offset: 0.5;
|
|---|
| [13091] | 427 | }
|
|---|
| 428 | way[barrier=retaining_wall] {
|
|---|
| [10808] | 429 | repeat-image: "presets/misc/cliff_pattern.svg";
|
|---|
| [8409] | 430 | repeat-image-align: top;
|
|---|
| [16938] | 431 | repeat-image-offset: 0.5;
|
|---|
| [8409] | 432 | }
|
|---|
| [7041] | 433 | node[barrier=hedge],
|
|---|
| 434 | node[barrier=wall],
|
|---|
| [7157] | 435 | node[barrier=guard_rail],
|
|---|
| [15465] | 436 | node[barrier=cable_barrier],
|
|---|
| [7041] | 437 | node[barrier=city_wall],
|
|---|
| [7821] | 438 | node[barrier=retaining_wall],
|
|---|
| 439 | node[barrier=ditch] {
|
|---|
| [10706] | 440 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 441 | set icon_z17;
|
|---|
| [7041] | 442 | }
|
|---|
| [7626] | 443 | node[barrier=kerb] {
|
|---|
| [10706] | 444 | icon-image: "presets/barrier/kerb.svg";
|
|---|
| [7626] | 445 | set icon_z17;
|
|---|
| 446 | }
|
|---|
| [7041] | 447 | node[barrier=block] {
|
|---|
| [10706] | 448 | icon-image: "presets/barrier/block.svg";
|
|---|
| [7454] | 449 | set icon_z17;
|
|---|
| [7041] | 450 | }
|
|---|
| [7362] | 451 | node[barrier=chain] {
|
|---|
| [10706] | 452 | icon-image: "presets/barrier/chain.svg";
|
|---|
| [7454] | 453 | set icon_z17;
|
|---|
| [7362] | 454 | }
|
|---|
| [7041] | 455 | node[barrier=stile] {
|
|---|
| [10706] | 456 | icon-image: "presets/barrier/stile.svg";
|
|---|
| [7454] | 457 | set icon_z17;
|
|---|
| [7041] | 458 | }
|
|---|
| 459 | node[barrier=turnstile] {
|
|---|
| [10706] | 460 | icon-image: "presets/barrier/turnstile.svg";
|
|---|
| [7454] | 461 | set icon_z17;
|
|---|
| [7041] | 462 | }
|
|---|
| 463 | node[barrier=cycle_barrier] {
|
|---|
| [10706] | 464 | icon-image: "presets/barrier/cycle_barrier.svg";
|
|---|
| [7454] | 465 | set icon_z17;
|
|---|
| [7041] | 466 | }
|
|---|
| 467 | node[barrier=lift_gate] {
|
|---|
| [10706] | 468 | icon-image: "presets/barrier/lift_gate.svg";
|
|---|
| [7454] | 469 | set icon_z17;
|
|---|
| [7041] | 470 | }
|
|---|
| [7126] | 471 | node[barrier=swing_gate] {
|
|---|
| [10706] | 472 | icon-image: "presets/barrier/swing_gate.svg";
|
|---|
| [7454] | 473 | set icon_z17;
|
|---|
| [7126] | 474 | }
|
|---|
| [7041] | 475 | area[barrier=toll_booth]:closed {
|
|---|
| 476 | fill-color: barrier#F0F050;
|
|---|
| 477 | }
|
|---|
| 478 | node[barrier=toll_booth] {
|
|---|
| [10808] | 479 | icon-image: "presets/barrier/toll_station.svg";
|
|---|
| [7454] | 480 | set icon_z17;
|
|---|
| [7041] | 481 | }
|
|---|
| 482 | node[barrier=entrance] {
|
|---|
| [10706] | 483 | icon-image: "presets/barrier/entrance.svg";
|
|---|
| [7454] | 484 | set icon_z17;
|
|---|
| [7041] | 485 | }
|
|---|
| 486 | node[barrier=cattle_grid] {
|
|---|
| [10808] | 487 | icon-image: "presets/barrier/cattle_grid.svg";
|
|---|
| [7454] | 488 | set icon_z17;
|
|---|
| [7041] | 489 | }
|
|---|
| 490 | node[barrier=border_control] {
|
|---|
| [10808] | 491 | icon-image: "presets/barrier/douane.svg";
|
|---|
| [7454] | 492 | set icon_z17;
|
|---|
| [7041] | 493 | }
|
|---|
| 494 | node[barrier=sally_port] {
|
|---|
| [10706] | 495 | icon-image: "presets/barrier/sally_port.svg";
|
|---|
| [7454] | 496 | set icon_z17;
|
|---|
| [7041] | 497 | }
|
|---|
| [7717] | 498 | node[barrier=spikes] {
|
|---|
| [10706] | 499 | icon-image: "presets/barrier/spikes.svg";
|
|---|
| [7717] | 500 | set icon_z17;
|
|---|
| 501 | }
|
|---|
| [10825] | 502 | node[barrier=jersey_barrier] {
|
|---|
| 503 | icon-image: "presets/barrier/jersey_barrier.svg";
|
|---|
| 504 | set icon_z17;
|
|---|
| 505 | }
|
|---|
| [13409] | 506 | node[barrier=kissing_gate] {
|
|---|
| 507 | icon-image: "presets/barrier/kissing_gate.svg";
|
|---|
| 508 | set icon_z17;
|
|---|
| 509 | }
|
|---|
| [16801] | 510 | node[barrier=bus_trap] {
|
|---|
| 511 | icon-image: "presets/barrier/bus_trap.svg";
|
|---|
| 512 | set icon_z17;
|
|---|
| 513 | }
|
|---|
| [9892] | 514 | node[barrier=bump_gate][!is_prop_set(icon-image)],
|
|---|
| 515 | node[barrier=hampshire_gate][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 516 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 517 | set icon_z17;
|
|---|
| [7041] | 518 | }
|
|---|
| 519 |
|
|---|
| 520 | /****************/
|
|---|
| 521 | /* highway tags */
|
|---|
| 522 | /****************/
|
|---|
| 523 |
|
|---|
| [8137] | 524 | way[motorroad=yes]::core_motorroad {
|
|---|
| [7638] | 525 | major-z-index: 2;
|
|---|
| [7041] | 526 | z-index: -1;
|
|---|
| 527 | width: +4;
|
|---|
| [7271] | 528 | color: motorroad#3377ff;
|
|---|
| [7041] | 529 | }
|
|---|
| 530 | way[highway=motorway] {
|
|---|
| 531 | width: 3;
|
|---|
| [13125] | 532 | z-index: 0.13; /* #15483 */
|
|---|
| [7041] | 533 | color: motorway#809bc0;
|
|---|
| 534 | }
|
|---|
| 535 | way[highway=motorway_link] {
|
|---|
| 536 | width: 3;
|
|---|
| [13125] | 537 | z-index: 0.12;
|
|---|
| [7041] | 538 | color: motorway#809bc0;
|
|---|
| 539 | }
|
|---|
| 540 | way[highway=trunk] {
|
|---|
| 541 | width: 3;
|
|---|
| [13125] | 542 | z-index: 0.11;
|
|---|
| [7041] | 543 | color: trunk#7fc97f;
|
|---|
| 544 | }
|
|---|
| 545 | way[highway=trunk_link] {
|
|---|
| 546 | width: 3;
|
|---|
| [13125] | 547 | z-index: 0.10;
|
|---|
| [7041] | 548 | color: trunk#7fc97f;
|
|---|
| 549 | }
|
|---|
| 550 | way[highway=primary] {
|
|---|
| 551 | width: 3;
|
|---|
| [13125] | 552 | z-index: 0.09;
|
|---|
| [7041] | 553 | color: primary#fb805f;
|
|---|
| 554 | }
|
|---|
| 555 | way[highway=primary_link] {
|
|---|
| 556 | width: 3;
|
|---|
| [13125] | 557 | z-index: 0.08;
|
|---|
| [7041] | 558 | color: primary#fb805f;
|
|---|
| 559 | }
|
|---|
| 560 | way[highway=secondary] {
|
|---|
| 561 | width: 3;
|
|---|
| [13125] | 562 | z-index: 0.07;
|
|---|
| [7041] | 563 | color: secondary#fdbf6f;
|
|---|
| 564 | }
|
|---|
| 565 | way[highway=secondary_link] {
|
|---|
| 566 | width: 3;
|
|---|
| [13125] | 567 | z-index: 0.06;
|
|---|
| [7041] | 568 | color: secondary#fdbf6f;
|
|---|
| 569 | }
|
|---|
| 570 | way[highway=tertiary] {
|
|---|
| 571 | width: 2;
|
|---|
| [13125] | 572 | z-index: 0.05;
|
|---|
| [7041] | 573 | color: tertiary#f7f496;
|
|---|
| 574 | }
|
|---|
| 575 | way[highway=tertiary_link] {
|
|---|
| 576 | width: 2;
|
|---|
| [13125] | 577 | z-index: 0.04;
|
|---|
| [7041] | 578 | color: tertiary#f7f496;
|
|---|
| 579 | }
|
|---|
| 580 | way[highway=unclassified] {
|
|---|
| 581 | width: 2;
|
|---|
| [13125] | 582 | z-index: 0.03;
|
|---|
| [7041] | 583 | color: street#c0c0c0;
|
|---|
| 584 | }
|
|---|
| [7979] | 585 | way[highway=escape] {
|
|---|
| 586 | width: 3;
|
|---|
| 587 | color: street#c0c0c0;
|
|---|
| 588 | dashes: 3,3;
|
|---|
| 589 | }
|
|---|
| [7041] | 590 | way[highway=road] {
|
|---|
| 591 | width: 2;
|
|---|
| [7211] | 592 | casing-width: 0.5;
|
|---|
| 593 | casing-color: #ff9696;
|
|---|
| [8999] | 594 | color: highway_road#770000;
|
|---|
| [7041] | 595 | }
|
|---|
| [7241] | 596 | way[highway=track][area?], relation[type=multipolygon][highway=track] {
|
|---|
| [7904] | 597 | fill-color: highway_track#6e541c;
|
|---|
| [7241] | 598 | }
|
|---|
| [7041] | 599 | way[highway=track] {
|
|---|
| [7900] | 600 | width: 2;
|
|---|
| 601 | color: highway_track#6e541c;
|
|---|
| [7041] | 602 | }
|
|---|
| 603 | way[highway=residential] {
|
|---|
| 604 | width: 2;
|
|---|
| [13125] | 605 | z-index: 0.02;
|
|---|
| [7041] | 606 | color: street#c0c0c0;
|
|---|
| 607 | }
|
|---|
| 608 | way[highway=living_street] {
|
|---|
| 609 | width: 2;
|
|---|
| [13125] | 610 | z-index: 0.01;
|
|---|
| [7041] | 611 | dashes: 9,9;
|
|---|
| 612 | dashes-background-color: livingdashed#00ff00;
|
|---|
| 613 | color: street#c0c0c0;
|
|---|
| 614 | }
|
|---|
| [7160] | 615 | way[highway=service][area?], relation[type=multipolygon][highway=service] {
|
|---|
| [7159] | 616 | fill-color: service#809bc0;
|
|---|
| 617 | }
|
|---|
| [7160] | 618 | way[highway=service][!area?] {
|
|---|
| [7041] | 619 | width: 1;
|
|---|
| 620 | color: service#809bc0;
|
|---|
| 621 | }
|
|---|
| 622 | way[highway=bridleway] {
|
|---|
| 623 | width: 1;
|
|---|
| [7900] | 624 | color: horse#a18559;
|
|---|
| [7041] | 625 | }
|
|---|
| 626 | way[highway=cycleway] {
|
|---|
| 627 | width: 1;
|
|---|
| 628 | color: bicycle#b100ff;
|
|---|
| 629 | }
|
|---|
| [7160] | 630 | way[highway=footway][area?], relation[type=multipolygon][highway=footway] {
|
|---|
| [7159] | 631 | fill-color: foot#00ff00;
|
|---|
| 632 | }
|
|---|
| [7160] | 633 | way[highway=footway][!area?] {
|
|---|
| [7041] | 634 | width: 1;
|
|---|
| 635 | color: foot#00ff00;
|
|---|
| 636 | }
|
|---|
| 637 | way[highway=path][bicycle!=designated][bicycle!=official][foot!=designated][foot!=official] {
|
|---|
| 638 | width: 1;
|
|---|
| 639 | dashes: 9,9;
|
|---|
| 640 | color: foot#00ff00;
|
|---|
| 641 | }
|
|---|
| 642 | /* display path with bicycle/foot=designated/official as if it was cycleway/footway */
|
|---|
| 643 | way[highway=path][bicycle=designated],
|
|---|
| 644 | way[highway=path][bicycle=official] {
|
|---|
| 645 | width: 1;
|
|---|
| 646 | color: bicycle#b100ff;
|
|---|
| [8999] | 647 | set cyclecolor;
|
|---|
| [7041] | 648 | }
|
|---|
| 649 | way[highway=path][foot=designated],
|
|---|
| 650 | way[highway=path][foot=official] {
|
|---|
| 651 | width: 1;
|
|---|
| 652 | color: foot#00ff00;
|
|---|
| 653 | }
|
|---|
| 654 | way[highway=path][bicycle=designated][foot=designated],
|
|---|
| [15257] | 655 | way[highway=path][bicycle=official][foot=official],
|
|---|
| 656 | way[highway=cycleway][foot=designated] {
|
|---|
| [7041] | 657 | width: 1;
|
|---|
| 658 | color: bicycle#b100ff;
|
|---|
| [8999] | 659 | set cyclecolor;
|
|---|
| [7041] | 660 | dashes: 14,14;
|
|---|
| 661 | dashes-background-color: foot#00ff00;
|
|---|
| 662 | }
|
|---|
| [15257] | 663 | way[highway=footway][bicycle=designated] {
|
|---|
| 664 | width: 1;
|
|---|
| 665 | color: foot#00ff00;
|
|---|
| 666 | dashes: 14,14;
|
|---|
| 667 | dashes-background-color: bicycle#b100ff;
|
|---|
| 668 | }
|
|---|
| [7172] | 669 | way[highway=cycleway][foot=yes],
|
|---|
| 670 | way[highway=path][bicycle=designated][foot=yes],
|
|---|
| 671 | way[highway=path][bicycle=official][foot=yes] {
|
|---|
| 672 | width: 1;
|
|---|
| 673 | color: bicycle#b100ff;
|
|---|
| [8999] | 674 | set cyclecolor;
|
|---|
| [7172] | 675 | dashes: 21,7;
|
|---|
| 676 | dashes-background-color: foot#00ff00;
|
|---|
| 677 | }
|
|---|
| 678 | way[highway=footway][bicycle=yes],
|
|---|
| 679 | way[highway=path][bicycle=yes][foot=designated],
|
|---|
| 680 | way[highway=path][bicycle=yes][foot=official] {
|
|---|
| 681 | width: 1;
|
|---|
| 682 | color: foot#00ff00;
|
|---|
| 683 | dashes: 21,7;
|
|---|
| 684 | dashes-background-color: bicycle#b100ff;
|
|---|
| 685 | }
|
|---|
| [7154] | 686 | way[highway=pedestrian][area?], relation[type=multipolygon][highway=pedestrian] {
|
|---|
| [7041] | 687 | width: 3;
|
|---|
| 688 | color: foot#00ff00;
|
|---|
| [7154] | 689 | fill-color: foot#00ff00;
|
|---|
| [7041] | 690 | }
|
|---|
| [7154] | 691 | way[highway=pedestrian] {
|
|---|
| [7041] | 692 | width: 3;
|
|---|
| 693 | color: foot#00ff00;
|
|---|
| 694 | }
|
|---|
| 695 | way[highway=steps] {
|
|---|
| [7900] | 696 | width: 3;
|
|---|
| [7041] | 697 | color: foot#00ff00;
|
|---|
| [7044] | 698 | dashes: 2,2;
|
|---|
| [7041] | 699 | }
|
|---|
| 700 | way[highway=bus_guideway] {
|
|---|
| 701 | width: 1;
|
|---|
| 702 | color: rail#404040;
|
|---|
| 703 | dashes: 9,9;
|
|---|
| 704 | }
|
|---|
| 705 | way[highway=raceway] {
|
|---|
| 706 | width: 1;
|
|---|
| 707 | color: raceway#ff80ff;
|
|---|
| 708 | }
|
|---|
| [7652] | 709 | way[highway=raceway][area?], relation[type=multipolygon][highway=raceway] {
|
|---|
| 710 | fill-color: raceway#ff80ff;
|
|---|
| 711 | }
|
|---|
| [7858] | 712 | area[junction=yes] {
|
|---|
| 713 | fill-color: junction#c0c0c0;
|
|---|
| 714 | }
|
|---|
| 715 | node[junction=yes] {
|
|---|
| [10565] | 716 | icon-image: "presets/vehicle/junction.svg";
|
|---|
| [7858] | 717 | set icon_z17;
|
|---|
| 718 | }
|
|---|
| [7810] | 719 | node[highway=traffic_mirror] {
|
|---|
| [10565] | 720 | icon-image: "presets/vehicle/traffic_mirror.svg";
|
|---|
| [7810] | 721 | set icon_z17;
|
|---|
| 722 | }
|
|---|
| [8725] | 723 | node[highway=milestone] {
|
|---|
| [10565] | 724 | icon-image: "presets/vehicle/milestone.svg";
|
|---|
| [8725] | 725 | set icon_z17;
|
|---|
| 726 | }
|
|---|
| [7041] | 727 | node[highway=mini_roundabout] {
|
|---|
| [10565] | 728 | icon-image: "presets/vehicle/restriction/mini_roundabout_left.svg";
|
|---|
| [7454] | 729 | set icon_z17;
|
|---|
| [7041] | 730 | }
|
|---|
| [7199] | 731 | node:righthandtraffic[highway=mini_roundabout] {
|
|---|
| [10565] | 732 | icon-image: "presets/vehicle/restriction/mini_roundabout_right.svg";
|
|---|
| [7454] | 733 | set icon_z17;
|
|---|
| [7199] | 734 | }
|
|---|
| [7041] | 735 | node[highway=stop] {
|
|---|
| [10565] | 736 | icon-image: "presets/vehicle/restriction/stop.svg";
|
|---|
| [7454] | 737 | set icon_z17;
|
|---|
| [7041] | 738 | }
|
|---|
| 739 | node[highway=give_way] {
|
|---|
| [10565] | 740 | icon-image: "presets/vehicle/restriction/give_way.svg";
|
|---|
| [7454] | 741 | set icon_z17;
|
|---|
| [7041] | 742 | }
|
|---|
| [15197] | 743 | node[cycleway=asl] {
|
|---|
| [15201] | 744 | icon-image: "presets/vehicle/asl.svg";
|
|---|
| [15197] | 745 | set icon_z17;
|
|---|
| 746 | }
|
|---|
| [7041] | 747 | node[highway=traffic_signals] {
|
|---|
| [10565] | 748 | icon-image: "presets/vehicle/traffic_signals.svg";
|
|---|
| [7454] | 749 | set icon_z17;
|
|---|
| [7041] | 750 | }
|
|---|
| [7968] | 751 | node[highway=traffic_signals][crossing][crossing!=no] {
|
|---|
| [10565] | 752 | icon-image: "presets/vehicle/traffic_signals_crossing.svg";
|
|---|
| [7815] | 753 | set icon_z17;
|
|---|
| 754 | }
|
|---|
| [15273] | 755 | node[highway=traffic_signals][crossing:island=yes] {
|
|---|
| 756 | icon-image: "presets/vehicle/traffic_signals_crossing_island.svg";
|
|---|
| 757 | set icon_z17;
|
|---|
| 758 | }
|
|---|
| [14370] | 759 | node[highway=traffic_signals][crossing_ref=zebra] {
|
|---|
| [10565] | 760 | icon-image: "presets/vehicle/traffic_signals_crossing_ref_zebra.svg";
|
|---|
| [7815] | 761 | set icon_z17;
|
|---|
| 762 | }
|
|---|
| 763 | node[highway=traffic_signals][crossing=traffic_signals] {
|
|---|
| [10565] | 764 | icon-image: "presets/vehicle/traffic_signals_crossing_traffic_signals.svg";
|
|---|
| [7815] | 765 | set icon_z17;
|
|---|
| 766 | }
|
|---|
| [7041] | 767 | node[highway=street_lamp] {
|
|---|
| [10808] | 768 | icon-image: "presets/misc/streetlamp.svg";
|
|---|
| [7454] | 769 | set icon_z17;
|
|---|
| [7041] | 770 | }
|
|---|
| 771 | node[highway=speed_camera] {
|
|---|
| [10565] | 772 | icon-image: "presets/vehicle/restriction/speed_camera.svg";
|
|---|
| [7454] | 773 | set icon_z17;
|
|---|
| [7041] | 774 | }
|
|---|
| [8134] | 775 | relation[type=enforcement] >[role="device"] node {
|
|---|
| [10565] | 776 | icon-image: "presets/vehicle/restriction/speed_camera.svg";
|
|---|
| [8134] | 777 | set icon_z17;
|
|---|
| 778 | }
|
|---|
| [15201] | 779 | node[highway=toll_gantry] {
|
|---|
| 780 | icon-image: "presets/vehicle/restriction/toll_gantry.svg";
|
|---|
| 781 | set icon_z17;
|
|---|
| 782 | }
|
|---|
| [7041] | 783 | node[traffic_sign=city_limit] {
|
|---|
| [10565] | 784 | icon-image: "presets/vehicle/restriction/city_limit.svg";
|
|---|
| [7454] | 785 | set icon_z17;
|
|---|
| [7041] | 786 | }
|
|---|
| [10522] | 787 | node[highway=crossing][crossing!=no] {
|
|---|
| [10565] | 788 | icon-image: "presets/vehicle/crossing.svg";
|
|---|
| [7454] | 789 | set icon_z17;
|
|---|
| [7041] | 790 | }
|
|---|
| [15273] | 791 | node[highway=crossing][crossing:island=yes] {
|
|---|
| 792 | icon-image: "presets/vehicle/crossing_island.svg";
|
|---|
| 793 | set icon_z17;
|
|---|
| 794 | }
|
|---|
| [7794] | 795 | node[highway=crossing][crossing=unmarked] {
|
|---|
| [10565] | 796 | icon-image: "presets/vehicle/crossing_unmarked.svg";
|
|---|
| [7794] | 797 | set icon_z17;
|
|---|
| 798 | }
|
|---|
| [14370] | 799 | node[highway=crossing][crossing_ref=zebra] {
|
|---|
| [10565] | 800 | icon-image: "presets/vehicle/crossing_ref_zebra.svg";
|
|---|
| [7794] | 801 | set icon_z17;
|
|---|
| 802 | }
|
|---|
| 803 | node[highway=crossing][crossing=traffic_signals] {
|
|---|
| [10565] | 804 | icon-image: "presets/vehicle/crossing_traffic_signals.svg";
|
|---|
| [7794] | 805 | set icon_z17;
|
|---|
| 806 | }
|
|---|
| [7041] | 807 | node[highway=motorway_junction] {
|
|---|
| [10565] | 808 | icon-image: "presets/vehicle/motorway_junction.svg";
|
|---|
| [7454] | 809 | set icon_z17;
|
|---|
| [10015] | 810 | text: eval(cond(has_tag_key(ref), concat(tag(name), " (", tag(ref), ")"), tag(name)));
|
|---|
| [7041] | 811 | }
|
|---|
| 812 | area[highway=services] {
|
|---|
| 813 | fill-color: services#c0c0c0;
|
|---|
| 814 | }
|
|---|
| 815 | node[highway=services] {
|
|---|
| [10565] | 816 | icon-image: "presets/vehicle/services.svg";
|
|---|
| [7454] | 817 | set icon_z17;
|
|---|
| [7041] | 818 | }
|
|---|
| 819 | area[highway=rest_area] {
|
|---|
| 820 | fill-color: services#c0c0c0;
|
|---|
| 821 | }
|
|---|
| 822 | node[highway=rest_area] {
|
|---|
| [10565] | 823 | icon-image: "presets/vehicle/rest_area.svg";
|
|---|
| [7454] | 824 | set icon_z17;
|
|---|
| [7041] | 825 | }
|
|---|
| [11010] | 826 | node[ford=stepping_stones],
|
|---|
| [10911] | 827 | node[ford?] {
|
|---|
| [10706] | 828 | icon-image: "presets/vehicle/ford.svg";
|
|---|
| [7454] | 829 | set icon_z17;
|
|---|
| [7041] | 830 | }
|
|---|
| [11010] | 831 | way[ford=stepping_stones]::core_ford,
|
|---|
| [7041] | 832 | way[ford?]::core_ford {
|
|---|
| 833 | z-index: 1;
|
|---|
| 834 | width: 2;
|
|---|
| 835 | color: water#0000ff;
|
|---|
| 836 | dashes: 9,9;
|
|---|
| [11010] | 837 | dashes-offset: 9;
|
|---|
| [7041] | 838 | }
|
|---|
| [17525] | 839 | node[hazard] {
|
|---|
| 840 | icon-image: "presets/transport/hazard.svg";
|
|---|
| 841 | set icon_z17;
|
|---|
| 842 | }
|
|---|
| [7041] | 843 | area[highway=platform]:closed {
|
|---|
| 844 | fill-color: highway_platform#c0c0c0;
|
|---|
| 845 | }
|
|---|
| 846 | way[highway=platform] {
|
|---|
| 847 | width: 2;
|
|---|
| 848 | color: highway_platform#c0c0c0;
|
|---|
| 849 | }
|
|---|
| 850 | node[highway=turning_circle] {
|
|---|
| [10565] | 851 | icon-image: "presets/vehicle/turning_circle.svg";
|
|---|
| [7454] | 852 | set icon_z17;
|
|---|
| [7041] | 853 | }
|
|---|
| [7328] | 854 | node[highway=turning_loop] {
|
|---|
| [10565] | 855 | icon-image: "presets/vehicle/turning_loop.svg";
|
|---|
| [7454] | 856 | set icon_z17;
|
|---|
| [7328] | 857 | }
|
|---|
| [7041] | 858 | node[highway=passing_place] {
|
|---|
| [10565] | 859 | icon-image: "presets/vehicle/passing_place.svg";
|
|---|
| [7454] | 860 | set icon_z17;
|
|---|
| [7041] | 861 | }
|
|---|
| [7854] | 862 | area[highway=elevator] {
|
|---|
| 863 | fill-color: elevator#a6bace;
|
|---|
| 864 | }
|
|---|
| [7261] | 865 | node[highway=elevator] {
|
|---|
| [10565] | 866 | icon-image: "presets/service/elevator.svg";
|
|---|
| [7454] | 867 | set icon_z17;
|
|---|
| [7261] | 868 | }
|
|---|
| [7041] | 869 | way[highway=construction] {
|
|---|
| 870 | width: 2;
|
|---|
| 871 | color: construction#ffff00;
|
|---|
| 872 | dashes: 9,9;
|
|---|
| 873 | }
|
|---|
| 874 | node[highway=construction] {
|
|---|
| [10706] | 875 | icon-image: "presets/misc/construction.svg";
|
|---|
| [7454] | 876 | set icon_z17;
|
|---|
| [7041] | 877 | }
|
|---|
| 878 | area[highway=emergency_access_point] {
|
|---|
| 879 | fill-color: emergency_access_point#c0c0c0;
|
|---|
| 880 | }
|
|---|
| 881 | node[highway=emergency_access_point] {
|
|---|
| [10565] | 882 | icon-image: "presets/service/emergency_access_point.svg";
|
|---|
| [7454] | 883 | set icon_z17;
|
|---|
| [7041] | 884 | }
|
|---|
| 885 | node[highway=motorway], node[highway=motorway_link],
|
|---|
| 886 | node[highway=trunk], node[highway=trunk_link],
|
|---|
| 887 | node[highway=primary], node[highway=primary_link],
|
|---|
| 888 | node[highway=secondary], node[highway=secondary_link],
|
|---|
| 889 | node[highway=tertiary], node[highway=tertiary_link],
|
|---|
| 890 | node[highway=unclassified],
|
|---|
| 891 | node[highway=road],
|
|---|
| 892 | node[highway=unsurfaced],
|
|---|
| 893 | node[highway=track],
|
|---|
| 894 | node[highway=residential],
|
|---|
| 895 | node[highway=living_street],
|
|---|
| 896 | node[highway=service],
|
|---|
| 897 | node[highway=bridleway],
|
|---|
| 898 | node[highway=cycleway],
|
|---|
| 899 | node[highway=footway],
|
|---|
| 900 | node[highway=path],
|
|---|
| 901 | node[highway=pedestrian],
|
|---|
| 902 | node[highway=bus_guideway],
|
|---|
| 903 | node[highway=platform] {
|
|---|
| [10706] | 904 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 905 | set icon_z17;
|
|---|
| [7041] | 906 | }
|
|---|
| 907 |
|
|---|
| 908 | /************************/
|
|---|
| 909 | /* traffic_calming tags */
|
|---|
| 910 | /************************/
|
|---|
| 911 |
|
|---|
| 912 | node[traffic_calming] {
|
|---|
| [10565] | 913 | icon-image: "presets/vehicle/traffic_calming.svg";
|
|---|
| [7454] | 914 | set icon_z17;
|
|---|
| [7041] | 915 | }
|
|---|
| 916 | node[traffic_calming=chicane] {
|
|---|
| [10565] | 917 | icon-image: "presets/vehicle/chicane.svg";
|
|---|
| [7454] | 918 | set icon_z17;
|
|---|
| [7041] | 919 | }
|
|---|
| [8758] | 920 | node[traffic_calming=choker] {
|
|---|
| [10565] | 921 | icon-image: "presets/vehicle/choker.svg";
|
|---|
| [7454] | 922 | set icon_z17;
|
|---|
| [7041] | 923 | }
|
|---|
| [8758] | 924 | node[traffic_calming=island] {
|
|---|
| [10565] | 925 | icon-image: "presets/vehicle/island.svg";
|
|---|
| [8758] | 926 | set icon_z17;
|
|---|
| 927 | }
|
|---|
| [9506] | 928 | node[traffic_calming=bump] {
|
|---|
| [10565] | 929 | icon-image: "presets/vehicle/bump.svg";
|
|---|
| [9506] | 930 | set icon_z17;
|
|---|
| 931 | }
|
|---|
| 932 | node[traffic_calming=hump] {
|
|---|
| [10565] | 933 | icon-image: "presets/vehicle/hump.svg";
|
|---|
| [9506] | 934 | set icon_z17;
|
|---|
| 935 | }
|
|---|
| 936 | node[traffic_calming=table] {
|
|---|
| [10565] | 937 | icon-image: "presets/vehicle/table.svg";
|
|---|
| [9506] | 938 | set icon_z17;
|
|---|
| 939 | }
|
|---|
| 940 | node[traffic_calming=cushion] {
|
|---|
| [10565] | 941 | icon-image: "presets/vehicle/cushion.svg";
|
|---|
| [9506] | 942 | set icon_z17;
|
|---|
| 943 | }
|
|---|
| 944 | node[traffic_calming=rumble_strip] {
|
|---|
| [10565] | 945 | icon-image: "presets/vehicle/rumble_strip.svg";
|
|---|
| [9506] | 946 | set icon_z17;
|
|---|
| 947 | }
|
|---|
| [14714] | 948 | node[traffic_calming=dip] {
|
|---|
| 949 | icon-image: "presets/vehicle/dip.svg";
|
|---|
| 950 | set icon_z17;
|
|---|
| 951 | }
|
|---|
| [17563] | 952 | node[traffic_calming=mini_bumps] {
|
|---|
| 953 | icon-image: "presets/vehicle/mini_bumps.svg";
|
|---|
| 954 | set icon_z17;
|
|---|
| 955 | }
|
|---|
| [7041] | 956 | /****************/
|
|---|
| 957 | /* junction tag */
|
|---|
| 958 | /****************/
|
|---|
| 959 |
|
|---|
| 960 | node[junction=roundabout] {
|
|---|
| [10565] | 961 | icon-image: "presets/vehicle/restriction/roundabout_left.svg";
|
|---|
| [7454] | 962 | set icon_z17;
|
|---|
| [7041] | 963 | }
|
|---|
| [7199] | 964 | node:righthandtraffic[junction=roundabout] {
|
|---|
| [10565] | 965 | icon-image: "presets/vehicle/restriction/roundabout_right.svg";
|
|---|
| [7454] | 966 | set icon_z17;
|
|---|
| [7199] | 967 | }
|
|---|
| [7041] | 968 |
|
|---|
| 969 | /*****************/
|
|---|
| 970 | /* cycleway tags */
|
|---|
| 971 | /*****************/
|
|---|
| 972 |
|
|---|
| [9566] | 973 | /* prepare lane */
|
|---|
| [7201] | 974 | way[oneway?][cycleway=lane]:righthandtraffic::core_cycleway,
|
|---|
| 975 | way[oneway=-1][cycleway=opposite_lane]:righthandtraffic::core_cycleway {
|
|---|
| [9566] | 976 | set laneRight;
|
|---|
| [7201] | 977 | set righthandtr;
|
|---|
| 978 | }
|
|---|
| 979 | way[oneway?][cycleway=opposite_lane]:righthandtraffic::core_cycleway,
|
|---|
| 980 | way[oneway=-1][cycleway=lane]:righthandtraffic::core_cycleway {
|
|---|
| [9566] | 981 | set laneLeft;
|
|---|
| [7201] | 982 | set righthandtr;
|
|---|
| 983 | }
|
|---|
| 984 | way[oneway?][cycleway=lane]!.righthandtr::core_cycleway,
|
|---|
| 985 | way[oneway=-1][cycleway=opposite_lane]!.righthandtr::core_cycleway {
|
|---|
| [9566] | 986 | set laneLeft;
|
|---|
| [7201] | 987 | }
|
|---|
| 988 | way[oneway?][cycleway=opposite_lane]!.righthandtr::core_cycleway,
|
|---|
| 989 | way[oneway=-1][cycleway=lane]!.righthandtr::core_cycleway {
|
|---|
| [9566] | 990 | set laneRight;
|
|---|
| [7201] | 991 | }
|
|---|
| 992 | way[cycleway:left=lane]::core_cycleway {
|
|---|
| [9566] | 993 | set laneLeft;
|
|---|
| [7201] | 994 | }
|
|---|
| 995 | way[cycleway:right=lane]::core_cycleway {
|
|---|
| [9566] | 996 | set laneRight;
|
|---|
| [7201] | 997 | }
|
|---|
| [8166] | 998 | way[oneway=no][cycleway=lane]::core_cycleway,
|
|---|
| [7201] | 999 | way[!oneway][cycleway=lane]::core_cycleway {
|
|---|
| [9566] | 1000 | set laneLeft;
|
|---|
| 1001 | set laneRight;
|
|---|
| [7201] | 1002 | }
|
|---|
| 1003 |
|
|---|
| [9566] | 1004 | /* prepare shared_lane */
|
|---|
| 1005 | way[oneway?][cycleway=shared_lane]:righthandtraffic::core_cycleway {
|
|---|
| 1006 | set shared_laneRight;
|
|---|
| 1007 | set righthandtr;
|
|---|
| 1008 | }
|
|---|
| 1009 | way[oneway=-1][cycleway=shared_lane]:righthandtraffic::core_cycleway {
|
|---|
| 1010 | set shared_laneLeft;
|
|---|
| 1011 | set righthandtr;
|
|---|
| 1012 | }
|
|---|
| 1013 | way[oneway?][cycleway=shared_lane]!.righthandtr::core_cycleway {
|
|---|
| 1014 | set shared_laneLeft;
|
|---|
| 1015 | }
|
|---|
| 1016 | way[oneway=-1][cycleway=shared_lane]!.righthandtr::core_cycleway {
|
|---|
| 1017 | set shared_laneRight;
|
|---|
| 1018 | }
|
|---|
| 1019 | way[cycleway:left=shared_lane]::core_cycleway {
|
|---|
| 1020 | set shared_laneLeft;
|
|---|
| 1021 | }
|
|---|
| 1022 | way[cycleway:right=shared_lane]::core_cycleway {
|
|---|
| 1023 | set shared_laneRight;
|
|---|
| 1024 | }
|
|---|
| 1025 | way[oneway=no][cycleway=shared_lane]::core_cycleway,
|
|---|
| 1026 | way[!oneway][cycleway=shared_lane]::core_cycleway {
|
|---|
| 1027 | set shared_laneLeft;
|
|---|
| 1028 | set shared_laneRight;
|
|---|
| 1029 | }
|
|---|
| 1030 |
|
|---|
| 1031 | /* prepare track */
|
|---|
| [7201] | 1032 | way[oneway?][cycleway=track]:righthandtraffic::core_cycleway,
|
|---|
| 1033 | way[oneway=-1][cycleway=opposite_track]:righthandtraffic::core_cycleway {
|
|---|
| [9566] | 1034 | set trackRight;
|
|---|
| [7201] | 1035 | set righthandtr;
|
|---|
| 1036 | }
|
|---|
| 1037 | way[oneway?][cycleway=opposite_track]:righthandtraffic::core_cycleway,
|
|---|
| 1038 | way[oneway=-1][cycleway=track]:righthandtraffic::core_cycleway {
|
|---|
| [9566] | 1039 | set trackLeft;
|
|---|
| [7201] | 1040 | set righthandtr;
|
|---|
| 1041 | }
|
|---|
| 1042 | way[oneway?][cycleway=track]!.righthandtr::core_cycleway,
|
|---|
| 1043 | way[oneway=-1][cycleway=opposite_track]!.righthandtr::core_cycleway {
|
|---|
| [9566] | 1044 | set trackLeft;
|
|---|
| [7201] | 1045 | }
|
|---|
| 1046 | way[oneway?][cycleway=opposite_track]!.righthandtr::core_cycleway,
|
|---|
| 1047 | way[oneway=-1][cycleway=track]!.righthandtr::core_cycleway {
|
|---|
| [9566] | 1048 | set trackRight;
|
|---|
| [7201] | 1049 | }
|
|---|
| 1050 | way[cycleway:left=track]::core_cycleway {
|
|---|
| [9566] | 1051 | set trackLeft;
|
|---|
| [7201] | 1052 | }
|
|---|
| 1053 | way[cycleway:right=track]::core_cycleway {
|
|---|
| [9566] | 1054 | set trackRight;
|
|---|
| [7201] | 1055 | }
|
|---|
| [8166] | 1056 | way[oneway=no][cycleway=track]::core_cycleway,
|
|---|
| [7201] | 1057 | way[!oneway][cycleway=track]::core_cycleway {
|
|---|
| [9566] | 1058 | set trackLeft;
|
|---|
| 1059 | set trackRight;
|
|---|
| [7201] | 1060 | }
|
|---|
| 1061 |
|
|---|
| [9566] | 1062 | /* render lane */
|
|---|
| 1063 | way.laneRight::core_cycleway {
|
|---|
| [7201] | 1064 | width: 2;
|
|---|
| [7041] | 1065 | color: bicycle#b100ff;
|
|---|
| [7201] | 1066 | dashes: 6, 10;
|
|---|
| 1067 | offset: 0 - (prop("width", "default") / 2) - 2;
|
|---|
| 1068 | major-z-index: 2.1;
|
|---|
| 1069 | modifier: true;
|
|---|
| [7041] | 1070 | }
|
|---|
| [9566] | 1071 | way[prop("laneLeft","core_cycleway")]::core_cycleway2 {
|
|---|
| [7201] | 1072 | width: 2;
|
|---|
| [7041] | 1073 | color: bicycle#b100ff;
|
|---|
| [7201] | 1074 | dashes: 6, 10;
|
|---|
| 1075 | offset: (prop("width", "default") / 2) + 2;
|
|---|
| 1076 | major-z-index: 2.1;
|
|---|
| 1077 | modifier: true;
|
|---|
| [7041] | 1078 | }
|
|---|
| [9566] | 1079 | /* render shared_lane */
|
|---|
| 1080 | way.shared_laneRight::core_cycleway {
|
|---|
| [7201] | 1081 | width: 2;
|
|---|
| 1082 | color: bicycle#b100ff;
|
|---|
| [9566] | 1083 | dashes: 6, 3;
|
|---|
| 1084 | offset: 0 - (prop("width", "default") / 2) - 2;
|
|---|
| 1085 | major-z-index: 2.1;
|
|---|
| 1086 | modifier: true;
|
|---|
| 1087 | }
|
|---|
| 1088 | way[prop("shared_laneLeft","core_cycleway")]::core_cycleway2 {
|
|---|
| 1089 | width: 2;
|
|---|
| 1090 | color: bicycle#b100ff;
|
|---|
| 1091 | dashes: 6, 3;
|
|---|
| 1092 | offset: (prop("width", "default") / 2) + 2;
|
|---|
| 1093 | major-z-index: 2.1;
|
|---|
| 1094 | modifier: true;
|
|---|
| 1095 | }
|
|---|
| 1096 | /* render track */
|
|---|
| 1097 | way.trackRight::core_cycleway {
|
|---|
| 1098 | width: 2;
|
|---|
| 1099 | color: bicycle#b100ff;
|
|---|
| [7271] | 1100 | dashes: 25, 8;
|
|---|
| [7201] | 1101 | offset: 0 - (prop("width", "default") / 2) - 2;
|
|---|
| 1102 | major-z-index: 2.1;
|
|---|
| 1103 | modifier: true;
|
|---|
| 1104 | }
|
|---|
| [9566] | 1105 | way[prop("trackLeft","core_cycleway")]::core_cycleway2 {
|
|---|
| [7201] | 1106 | width: 2;
|
|---|
| 1107 | color: bicycle#b100ff;
|
|---|
| [7271] | 1108 | dashes: 25, 8;
|
|---|
| [7201] | 1109 | offset: (prop("width", "default") / 2) + 2;
|
|---|
| 1110 | major-z-index: 2.1;
|
|---|
| 1111 | modifier: true;
|
|---|
| 1112 | }
|
|---|
| [9566] | 1113 | /* render opposite */
|
|---|
| [15829] | 1114 | way[oneway:bicycle=no][oneway][oneway!=no]::core_cycleway,
|
|---|
| [13255] | 1115 | way[cycleway=opposite][oneway][oneway!=no]::core_cycleway {
|
|---|
| 1116 | z-index: 1;
|
|---|
| [7041] | 1117 | width: +0;
|
|---|
| 1118 | color: bicycle#b100ff;
|
|---|
| 1119 | dashes: 4,10;
|
|---|
| 1120 | }
|
|---|
| [13255] | 1121 | node[cycleway=lane ], node[cycleway=opposite_lane ],
|
|---|
| [7041] | 1122 | node[cycleway=track], node[cycleway=opposite_track],
|
|---|
| 1123 | node[cycleway=opposite] {
|
|---|
| [10706] | 1124 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 1125 | set icon_z17;
|
|---|
| [7041] | 1126 | }
|
|---|
| 1127 |
|
|---|
| 1128 | /******************/
|
|---|
| 1129 | /* tracktype tags */
|
|---|
| 1130 | /******************/
|
|---|
| 1131 |
|
|---|
| 1132 | way[highway=track][tracktype=grade1] {
|
|---|
| [7900] | 1133 | dashes: 8,1;
|
|---|
| [7041] | 1134 | }
|
|---|
| 1135 | way[highway=track][tracktype=grade2] {
|
|---|
| [7900] | 1136 | dashes: 6,2;
|
|---|
| [7041] | 1137 | }
|
|---|
| 1138 | way[highway=track][tracktype=grade3] {
|
|---|
| [7900] | 1139 | dashes: 4,3;
|
|---|
| [7041] | 1140 | }
|
|---|
| 1141 | way[highway=track][tracktype=grade4] {
|
|---|
| [7900] | 1142 | dashes: 4,5;
|
|---|
| [7041] | 1143 | }
|
|---|
| 1144 | way[highway=track][tracktype=grade5] {
|
|---|
| [7900] | 1145 | dashes: 4,7;
|
|---|
| [7041] | 1146 | }
|
|---|
| 1147 |
|
|---|
| 1148 | /**************/
|
|---|
| 1149 | /* piste tags */
|
|---|
| 1150 | /**************/
|
|---|
| 1151 |
|
|---|
| [7645] | 1152 | way[route=ski]::core_piste {
|
|---|
| 1153 | z-index: -1;
|
|---|
| 1154 | modifier: false;
|
|---|
| [7646] | 1155 | width: 6;
|
|---|
| [7645] | 1156 | color: ski#809bc0;
|
|---|
| 1157 | }
|
|---|
| [10896] | 1158 | area[piste:difficulty=easy][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1159 | fill-color: piste_easy#0000ff;
|
|---|
| 1160 | }
|
|---|
| 1161 | way[piste:difficulty=easy]::core_piste {
|
|---|
| 1162 | z-index: -1; /* below line style from highway=* tag */
|
|---|
| 1163 | modifier: false; /* suppress default line if there is no style on default layer */
|
|---|
| 1164 | width: 6;
|
|---|
| 1165 | color: piste_easy#0000ff;
|
|---|
| 1166 | }
|
|---|
| [10896] | 1167 | area[piste:difficulty=intermediate][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1168 | fill-color: piste_intermediate#ff0000;
|
|---|
| 1169 | }
|
|---|
| 1170 | way[piste:difficulty=intermediate]::core_piste {
|
|---|
| 1171 | z-index: -1;
|
|---|
| 1172 | modifier: false;
|
|---|
| 1173 | width: 6;
|
|---|
| 1174 | color: piste_intermediate#ff0000;
|
|---|
| 1175 | }
|
|---|
| [10896] | 1176 | area[piste:difficulty=advanced][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1177 | fill-color: piste_advanced#606060;
|
|---|
| 1178 | }
|
|---|
| 1179 | way[piste:difficulty=advanced]::core_piste {
|
|---|
| 1180 | z-index: -1;
|
|---|
| 1181 | modifier: false;
|
|---|
| 1182 | width: 6;
|
|---|
| 1183 | color: piste_advanced#606060;
|
|---|
| 1184 | }
|
|---|
| [10896] | 1185 | area[piste:difficulty=expert][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1186 | fill-color: piste_expert#606060;
|
|---|
| 1187 | }
|
|---|
| 1188 | way[piste:difficulty=expert]::core_piste {
|
|---|
| 1189 | z-index: -1;
|
|---|
| 1190 | modifier: false;
|
|---|
| 1191 | width: 6;
|
|---|
| 1192 | color: piste_expert#606060;
|
|---|
| 1193 | }
|
|---|
| [10896] | 1194 | area[piste:difficulty=freeride][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1195 | fill-color: piste_freeride#ffff00;
|
|---|
| 1196 | }
|
|---|
| 1197 | way[piste:difficulty=freeride]::core_piste {
|
|---|
| 1198 | z-index: -1;
|
|---|
| 1199 | modifier: false;
|
|---|
| 1200 | width: 6;
|
|---|
| 1201 | color: piste_freeride#ffff00;
|
|---|
| 1202 | }
|
|---|
| [10896] | 1203 | area[piste:difficulty=novice][!highway][area=yes]::core_piste {
|
|---|
| [7041] | 1204 | fill-color: piste_novice#00ff00;
|
|---|
| 1205 | }
|
|---|
| 1206 | way[piste:difficulty=novice]::core_piste {
|
|---|
| 1207 | z-index: -1;
|
|---|
| 1208 | modifier: false;
|
|---|
| 1209 | width: 6;
|
|---|
| 1210 | color: piste_novice#00ff00;
|
|---|
| 1211 | }
|
|---|
| [8121] | 1212 | node[piste:type=downhill],
|
|---|
| 1213 | node[piste:type=nordic],
|
|---|
| 1214 | node[piste:type=skitour],
|
|---|
| 1215 | node[piste:type=sled],
|
|---|
| 1216 | node[piste:type=sleigh],
|
|---|
| 1217 | node[piste:type=snow_park] {
|
|---|
| [10706] | 1218 | icon-image: "presets/sport/skiing.svg";
|
|---|
| [7454] | 1219 | set icon_z17;
|
|---|
| [7041] | 1220 | }
|
|---|
| 1221 |
|
|---|
| 1222 | /**************/
|
|---|
| 1223 | /* power tags */
|
|---|
| 1224 | /**************/
|
|---|
| 1225 |
|
|---|
| [9433] | 1226 | node[power=portal] {
|
|---|
| [10565] | 1227 | icon-image: "presets/power/portal.svg";
|
|---|
| [9433] | 1228 | set icon_z17;
|
|---|
| 1229 | }
|
|---|
| [7041] | 1230 | node[power=tower] {
|
|---|
| [10565] | 1231 | icon-image: "presets/power/tower.svg";
|
|---|
| [7454] | 1232 | set icon_z17;
|
|---|
| [7041] | 1233 | }
|
|---|
| 1234 | node[power=pole] {
|
|---|
| [10565] | 1235 | icon-image: "presets/power/pole.svg";
|
|---|
| [7454] | 1236 | set icon_z17;
|
|---|
| [7041] | 1237 | }
|
|---|
| [12997] | 1238 | node[power=pole][switch] {
|
|---|
| 1239 | icon-image: "presets/power/pole_switch.svg";
|
|---|
| 1240 | set icon_z17;
|
|---|
| 1241 | }
|
|---|
| [9423] | 1242 | node[power=pole][transformer=distribution] {
|
|---|
| [10565] | 1243 | icon-image: "presets/power/pole_transformer.svg";
|
|---|
| [9423] | 1244 | set icon_z17;
|
|---|
| 1245 | }
|
|---|
| [14123] | 1246 | node[power=catenary_mast] {
|
|---|
| 1247 | icon-image: "presets/power/catenary_mast.svg";
|
|---|
| 1248 | set icon_z17;
|
|---|
| 1249 | }
|
|---|
| [9433] | 1250 | node[power=insulator] {
|
|---|
| [10565] | 1251 | icon-image: "presets/power/insulator.svg";
|
|---|
| [9433] | 1252 | set icon_z17;
|
|---|
| 1253 | }
|
|---|
| 1254 | way[power=portal],
|
|---|
| [7041] | 1255 | way[power=line],
|
|---|
| 1256 | way[power=minor_line] {
|
|---|
| 1257 | width: 1;
|
|---|
| 1258 | color: power#eeeeee;
|
|---|
| 1259 | }
|
|---|
| [7540] | 1260 | way[power=cable] {
|
|---|
| 1261 | width: 1;
|
|---|
| 1262 | color: power#eeeeee;
|
|---|
| 1263 | dashes: 9,9;
|
|---|
| 1264 | }
|
|---|
| [7967] | 1265 | node[power=plant],
|
|---|
| 1266 | node[power=sub_station],
|
|---|
| [7041] | 1267 | node[power=line],
|
|---|
| [7540] | 1268 | node[power=cable],
|
|---|
| [7041] | 1269 | node[power=minor_line] {
|
|---|
| [10706] | 1270 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 1271 | set icon_z17;
|
|---|
| [7041] | 1272 | }
|
|---|
| 1273 | area[power=plant],
|
|---|
| 1274 | area[power=substation],
|
|---|
| [7967] | 1275 | area[power=compensator],
|
|---|
| 1276 | area[power=converter],
|
|---|
| [14299] | 1277 | area[power=switchgear],
|
|---|
| [16475] | 1278 | area[power=generator],
|
|---|
| 1279 | area[man_made=street_cabinet][street_cabinet=power] {
|
|---|
| [7041] | 1280 | fill-color: power#eeeeee;
|
|---|
| 1281 | }
|
|---|
| [9434] | 1282 | node[man_made=street_cabinet][street_cabinet=power] {
|
|---|
| [10565] | 1283 | icon-image: "presets/power/cable_distribution_cabinet.svg";
|
|---|
| [9423] | 1284 | set icon_z17;
|
|---|
| 1285 | }
|
|---|
| [7728] | 1286 | node[power=generator] {
|
|---|
| [10565] | 1287 | icon-image: "presets/power/generator.svg";
|
|---|
| [7454] | 1288 | set icon_z17;
|
|---|
| [7041] | 1289 | }
|
|---|
| [7967] | 1290 | node[power=substation] {
|
|---|
| [10565] | 1291 | icon-image: "presets/power/substation.svg";
|
|---|
| [7967] | 1292 | set icon_z17;
|
|---|
| 1293 | }
|
|---|
| [7041] | 1294 | node[power=transformer] {
|
|---|
| [10565] | 1295 | icon-image: "presets/power/transformer.svg";
|
|---|
| [7454] | 1296 | set icon_z17;
|
|---|
| [7041] | 1297 | }
|
|---|
| [14123] | 1298 | node[power=terminal] {
|
|---|
| 1299 | icon-image: "presets/power/terminal.svg";
|
|---|
| 1300 | set icon_z17;
|
|---|
| 1301 | }
|
|---|
| [9423] | 1302 | node[power=switch] {
|
|---|
| [10565] | 1303 | icon-image: "presets/power/switch.svg";
|
|---|
| [9423] | 1304 | set icon_z17;
|
|---|
| 1305 | }
|
|---|
| 1306 | node[power=converter] {
|
|---|
| [10565] | 1307 | icon-image: "presets/power/converter.svg";
|
|---|
| [9423] | 1308 | set icon_z17;
|
|---|
| 1309 | }
|
|---|
| 1310 | node[power=compensator] {
|
|---|
| [10565] | 1311 | icon-image: "presets/power/compensator.svg";
|
|---|
| [9423] | 1312 | set icon_z17;
|
|---|
| 1313 | }
|
|---|
| 1314 |
|
|---|
| 1315 |
|
|---|
| [7728] | 1316 | /*************************/
|
|---|
| 1317 | /* generator:source tags */
|
|---|
| 1318 | /*************************/
|
|---|
| 1319 |
|
|---|
| 1320 | area[generator:source=nuclear],
|
|---|
| 1321 | area[generator:source=wind],
|
|---|
| 1322 | area[generator:source=hydro],
|
|---|
| 1323 | area[generator:source=tidal],
|
|---|
| 1324 | area[generator:source=wave],
|
|---|
| 1325 | area[generator:source=osmotic],
|
|---|
| 1326 | area[generator:source=geothermal],
|
|---|
| 1327 | area[generator:source=solar],
|
|---|
| 1328 | area[generator:source=coal],
|
|---|
| 1329 | area[generator:source=gas],
|
|---|
| 1330 | area[generator:source=biomass],
|
|---|
| 1331 | area[generator:source=biofuel],
|
|---|
| 1332 | area[generator:source=biogas],
|
|---|
| 1333 | area[generator:source=oil],
|
|---|
| 1334 | area[generator:source=diesel],
|
|---|
| 1335 | area[generator:source=gasoline],
|
|---|
| 1336 | area[generator:source=waste] {
|
|---|
| [7041] | 1337 | fill-color: power#eeeeee;
|
|---|
| 1338 | }
|
|---|
| [7728] | 1339 | node[generator:source=nuclear] {
|
|---|
| [10706] | 1340 | icon-image: "presets/power/power_source-nuclear.svg";
|
|---|
| [7454] | 1341 | set icon_z17;
|
|---|
| [7041] | 1342 | }
|
|---|
| [7728] | 1343 | node[generator:source=wind] {
|
|---|
| [10706] | 1344 | icon-image: "presets/power/power_source-wind.svg";
|
|---|
| [7454] | 1345 | set icon_z17;
|
|---|
| [7041] | 1346 | }
|
|---|
| [7728] | 1347 | node[generator:source=hydro],
|
|---|
| 1348 | node[generator:source=tidal],
|
|---|
| 1349 | node[generator:source=wave],
|
|---|
| [7997] | 1350 | node[generator:source=osmotic] {
|
|---|
| [10706] | 1351 | icon-image: "presets/power/power_source-water.svg";
|
|---|
| [7454] | 1352 | set icon_z17;
|
|---|
| [7041] | 1353 | }
|
|---|
| [7997] | 1354 | node[generator:source=geothermal] {
|
|---|
| [10706] | 1355 | icon-image: "presets/power/power_source-geothermal.svg";
|
|---|
| [7997] | 1356 | set icon_z17;
|
|---|
| 1357 | }
|
|---|
| [7728] | 1358 | node[generator:source=solar] {
|
|---|
| [10706] | 1359 | icon-image: "presets/power/power_source-sun.svg";
|
|---|
| [7454] | 1360 | set icon_z17;
|
|---|
| [7041] | 1361 | }
|
|---|
| [7728] | 1362 | node[generator:source=coal] {
|
|---|
| [10706] | 1363 | icon-image: "presets/power/power_source-coal.svg";
|
|---|
| [7454] | 1364 | set icon_z17;
|
|---|
| [7041] | 1365 | }
|
|---|
| [7728] | 1366 | node[generator:source=gas] {
|
|---|
| [10706] | 1367 | icon-image: "presets/power/power_source-gas.svg";
|
|---|
| [7454] | 1368 | set icon_z17;
|
|---|
| [7041] | 1369 | }
|
|---|
| [7728] | 1370 | node[generator:source=biomass],
|
|---|
| 1371 | node[generator:source=biofuel],
|
|---|
| 1372 | node[generator:source=biogas] {
|
|---|
| [10706] | 1373 | icon-image: "presets/power/power_source-biofuel.svg";
|
|---|
| [7728] | 1374 | set icon_z17;
|
|---|
| 1375 | }
|
|---|
| 1376 | node[generator:source=oil],
|
|---|
| 1377 | node[generator:source=diesel],
|
|---|
| 1378 | node[generator:source=gasoline] {
|
|---|
| [10706] | 1379 | icon-image: "presets/power/power_source-oil.svg";
|
|---|
| [7728] | 1380 | set icon_z17;
|
|---|
| 1381 | }
|
|---|
| 1382 | node[generator:source=waste] {
|
|---|
| [10706] | 1383 | icon-image: "presets/power/power_source-waste.svg";
|
|---|
| [7728] | 1384 | set icon_z17;
|
|---|
| 1385 | }
|
|---|
| 1386 | node[power_source] {
|
|---|
| [10706] | 1387 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7728] | 1388 | set icon_z17;
|
|---|
| 1389 | }
|
|---|
| [7041] | 1390 | /*****************/
|
|---|
| 1391 | /* man_made tags */
|
|---|
| 1392 | /*****************/
|
|---|
| 1393 |
|
|---|
| [16475] | 1394 | area[man_made=street_cabinet][street_cabinet!=power], /* power street cabinet has own style above */
|
|---|
| [7041] | 1395 | area[man_made=beacon],
|
|---|
| [7648] | 1396 | area[man_made=bridge],
|
|---|
| [7960] | 1397 | area[bridge:support],
|
|---|
| [7041] | 1398 | area[man_made=chimney],
|
|---|
| [13379] | 1399 | area[man_made=kiln],
|
|---|
| [7041] | 1400 | area[man_made=gasometer],
|
|---|
| [9725] | 1401 | area[man_made=silo],
|
|---|
| [8328] | 1402 | area[man_made=storage_tank],
|
|---|
| [7710] | 1403 | area[man_made=bunker_silo],
|
|---|
| [7041] | 1404 | area[man_made=lighthouse],
|
|---|
| 1405 | area[man_made=monitoring_station],
|
|---|
| [17028] | 1406 | area[man_made=pumping_station],
|
|---|
| [7960] | 1407 | area[man_made=mineshaft] {
|
|---|
| [7041] | 1408 | fill-color: manmade#d8d8d8;
|
|---|
| 1409 | }
|
|---|
| [16475] | 1410 | node[man_made=street_cabinet][street_cabinet!=power] {
|
|---|
| 1411 | icon-image: "presets/misc/street_cabinet.svg";
|
|---|
| 1412 | set icon_z17;
|
|---|
| 1413 | }
|
|---|
| [7041] | 1414 | node[man_made=beacon] {
|
|---|
| [10808] | 1415 | icon-image: "presets/landmark/beacon.svg";
|
|---|
| [7454] | 1416 | set icon_z17;
|
|---|
| [7041] | 1417 | }
|
|---|
| [7960] | 1418 | node[man_made=bridge] {
|
|---|
| [10706] | 1419 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7960] | 1420 | set icon_z17;
|
|---|
| 1421 | }
|
|---|
| 1422 | node[bridge:support] {
|
|---|
| [10565] | 1423 | icon-image: "presets/transport/bridge/bridge_support.svg";
|
|---|
| [7960] | 1424 | set icon_z17;
|
|---|
| 1425 | }
|
|---|
| [7041] | 1426 | node[man_made=chimney] {
|
|---|
| [10808] | 1427 | icon-image: "presets/landmark/chimney.svg";
|
|---|
| [7454] | 1428 | set icon_z17;
|
|---|
| [7041] | 1429 | }
|
|---|
| [13379] | 1430 | node[man_made=kiln] {
|
|---|
| 1431 | icon-image: "presets/misc/kiln.svg";
|
|---|
| 1432 | set icon_z17;
|
|---|
| 1433 | }
|
|---|
| [7041] | 1434 | node[man_made=flagpole] {
|
|---|
| [10808] | 1435 | icon-image: "presets/misc/flag.svg";
|
|---|
| [7454] | 1436 | set icon_z17;
|
|---|
| [7041] | 1437 | }
|
|---|
| [12446] | 1438 | node[man_made=cross] {
|
|---|
| 1439 | icon-image: "presets/landmark/cross.svg";
|
|---|
| 1440 | set icon_z17;
|
|---|
| 1441 | }
|
|---|
| [7041] | 1442 | node[man_made=gasometer] {
|
|---|
| [10706] | 1443 | icon-image: "presets/landmark/gasometer.svg";
|
|---|
| [7454] | 1444 | set icon_z17;
|
|---|
| [7041] | 1445 | }
|
|---|
| [9725] | 1446 | node[man_made=silo] {
|
|---|
| [10706] | 1447 | icon-image: "presets/landmark/silo.svg";
|
|---|
| [9725] | 1448 | set icon_z17;
|
|---|
| 1449 | }
|
|---|
| [8328] | 1450 | node[man_made=storage_tank] {
|
|---|
| [10706] | 1451 | icon-image: "presets/landmark/storage_tank.svg";
|
|---|
| [8328] | 1452 | set icon_z17;
|
|---|
| 1453 | }
|
|---|
| [7710] | 1454 | node[man_made=bunker_silo] {
|
|---|
| [10706] | 1455 | icon-image: "presets/landmark/bunker_silo.svg";
|
|---|
| [7710] | 1456 | set icon_z17;
|
|---|
| 1457 | }
|
|---|
| [7717] | 1458 | area[man_made=groyne]:closed {
|
|---|
| 1459 | fill-color: manmade#d8d8d8;
|
|---|
| 1460 | }
|
|---|
| 1461 | way[man_made=groyne] {
|
|---|
| 1462 | width: 2;
|
|---|
| 1463 | color: manmade#d8d8d8;
|
|---|
| 1464 | }
|
|---|
| 1465 | area[man_made=breakwater]:closed {
|
|---|
| 1466 | fill-color: manmade#d8d8d8;
|
|---|
| 1467 | }
|
|---|
| 1468 | way[man_made=breakwater] {
|
|---|
| 1469 | width: 2;
|
|---|
| 1470 | color: manmade#d8d8d8;
|
|---|
| 1471 | }
|
|---|
| [15198] | 1472 | way[man_made=dyke]::man_made_dyke {
|
|---|
| 1473 | width: 4;
|
|---|
| [14050] | 1474 | color: dyke#0aa846;
|
|---|
| [15198] | 1475 | z-index: -2;
|
|---|
| 1476 | object-z-index: -1; /* below highway=* */
|
|---|
| 1477 | modifier: false; /* don't draw default way if there is no line on default layer */
|
|---|
| [14050] | 1478 | }
|
|---|
| [7041] | 1479 | node[man_made=lighthouse] {
|
|---|
| [10706] | 1480 | icon-image: "presets/landmark/lighthouse.svg";
|
|---|
| [7454] | 1481 | set icon_z17;
|
|---|
| [7041] | 1482 | }
|
|---|
| 1483 | node[man_made=monitoring_station] {
|
|---|
| [10808] | 1484 | icon-image: "presets/misc/monitoring_station.svg";
|
|---|
| [7454] | 1485 | set icon_z17;
|
|---|
| [7041] | 1486 | }
|
|---|
| [17028] | 1487 | node[man_made=pumping_station] {
|
|---|
| 1488 | icon-image: "presets/misc/pumping_station.svg";
|
|---|
| 1489 | set icon_z17;
|
|---|
| 1490 | }
|
|---|
| [7041] | 1491 | node[man_made=mineshaft] {
|
|---|
| [10706] | 1492 | icon-image: "presets/landmark/mine.svg";
|
|---|
| [7454] | 1493 | set icon_z17;
|
|---|
| [7041] | 1494 | }
|
|---|
| [9589] | 1495 | area[man_made=crane]:closed {
|
|---|
| 1496 | fill-color: manmade#d8d8d8;
|
|---|
| 1497 | }
|
|---|
| 1498 | way[man_made=crane] {
|
|---|
| 1499 | width: 2;
|
|---|
| 1500 | color: manmade#d8d8d8;
|
|---|
| 1501 | }
|
|---|
| 1502 | node[man_made=crane] {
|
|---|
| [10706] | 1503 | icon-image: "presets/landmark/crane.svg";
|
|---|
| [9589] | 1504 | set icon_z17;
|
|---|
| 1505 | }
|
|---|
| [16718] | 1506 | way[man_made=goods_conveyor] {
|
|---|
| 1507 | width: 2;
|
|---|
| 1508 | color: manmade#d8d8d8;
|
|---|
| 1509 | }
|
|---|
| [7041] | 1510 | node[man_made=adit] {
|
|---|
| [10706] | 1511 | icon-image: "presets/landmark/adit.svg";
|
|---|
| [7454] | 1512 | set icon_z17;
|
|---|
| [7041] | 1513 | }
|
|---|
| 1514 | area[man_made=pier]:closed {
|
|---|
| 1515 | fill-color: pier#660000;
|
|---|
| 1516 | }
|
|---|
| 1517 | way[man_made=pier] {
|
|---|
| 1518 | width: 2;
|
|---|
| 1519 | color: pier#660000;
|
|---|
| 1520 | }
|
|---|
| 1521 | node[man_made=pier] {
|
|---|
| [10565] | 1522 | icon-image: "presets/nautical/pier.svg";
|
|---|
| [7454] | 1523 | set icon_z17;
|
|---|
| [7041] | 1524 | }
|
|---|
| [7374] | 1525 | way[embankment?][!highway][!railway][!waterway],
|
|---|
| 1526 | way[man_made=embankment][!highway][!railway][!waterway] {
|
|---|
| [16895] | 1527 | repeat-image: "presets/misc/embankment-pattern.svg";
|
|---|
| [7374] | 1528 | repeat-image-align: top;
|
|---|
| [16895] | 1529 | repeat-image-offset: 0.5;
|
|---|
| [7374] | 1530 | width: 1;
|
|---|
| [7454] | 1531 | color: embankment#c14d00;
|
|---|
| [7374] | 1532 | }
|
|---|
| 1533 | way[embankment?][highway],
|
|---|
| 1534 | way[embankment?][railway],
|
|---|
| [15533] | 1535 | way[embankment?][waterway] {
|
|---|
| [16895] | 1536 | repeat-image: "presets/misc/embankment-pattern-centered.svg";
|
|---|
| 1537 | repeat-image-offset: 0.5;
|
|---|
| [15533] | 1538 | }
|
|---|
| [7374] | 1539 | way[man_made=embankment][highway],
|
|---|
| 1540 | way[man_made=embankment][railway],
|
|---|
| 1541 | way[man_made=embankment][waterway] {
|
|---|
| [16895] | 1542 | repeat-image: "presets/misc/embankment-pattern.svg";
|
|---|
| [15533] | 1543 | repeat-image-align: top;
|
|---|
| [16895] | 1544 | repeat-image-offset: -0.5;
|
|---|
| [7374] | 1545 | }
|
|---|
| [13972] | 1546 | way[man_made=pipeline][!waterway] {
|
|---|
| [7041] | 1547 | width: 2;
|
|---|
| 1548 | color: pipeline#660000;
|
|---|
| 1549 | }
|
|---|
| [16716] | 1550 | area[pipeline=substation] {
|
|---|
| 1551 | fill-color: pipeline_substation#eeeeee;
|
|---|
| 1552 | }
|
|---|
| 1553 | node[pipeline=substation] {
|
|---|
| 1554 | icon-image: "presets/misc/pipeline_substation.svg";
|
|---|
| 1555 | set icon_z17;
|
|---|
| 1556 | }
|
|---|
| [15526] | 1557 | node[marker] {
|
|---|
| [10565] | 1558 | icon-image: "presets/misc/pipeline_marker.svg";
|
|---|
| [9048] | 1559 | set icon_z17;
|
|---|
| 1560 | }
|
|---|
| [9049] | 1561 | node[pipeline=valve] {
|
|---|
| [10565] | 1562 | icon-image: "presets/misc/valve.svg";
|
|---|
| [9049] | 1563 | set icon_z17;
|
|---|
| 1564 | }
|
|---|
| [15260] | 1565 | node[man_made=manhole] {
|
|---|
| 1566 | icon-image: "presets/misc/manhole.svg";
|
|---|
| 1567 | set icon_z17;
|
|---|
| 1568 | }
|
|---|
| [7975] | 1569 | node[man_made=breakwater],
|
|---|
| 1570 | node[man_made=groyne],
|
|---|
| [7960] | 1571 | node[man_made=embankment],
|
|---|
| [7041] | 1572 | node[man_made=pipeline] {
|
|---|
| [10706] | 1573 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 1574 | set icon_z17;
|
|---|
| [7041] | 1575 | }
|
|---|
| [9892] | 1576 | node[man_made=petroleum_well][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 1577 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 1578 | set icon_z17;
|
|---|
| [7041] | 1579 | }
|
|---|
| 1580 | area[man_made=reservoir_covered],
|
|---|
| 1581 | area[man_made=wastewater_plant],
|
|---|
| 1582 | area[man_made=watermill],
|
|---|
| 1583 | area[man_made=water_well],
|
|---|
| 1584 | area[man_made=windmill],
|
|---|
| 1585 | area[man_made=works],
|
|---|
| 1586 | area[man_made=water_works] {
|
|---|
| 1587 | fill-color: manmade#d8d8d8;
|
|---|
| 1588 | }
|
|---|
| 1589 | node[man_made=reservoir_covered] {
|
|---|
| [10706] | 1590 | icon-image: "presets/landmark/reservoir_covered.svg";
|
|---|
| [7454] | 1591 | set icon_z17;
|
|---|
| [7041] | 1592 | }
|
|---|
| 1593 | node[man_made=surveillance] {
|
|---|
| [10814] | 1594 | icon-image: "presets/service/surveillance.svg";
|
|---|
| [7454] | 1595 | set icon_z17;
|
|---|
| [7041] | 1596 | }
|
|---|
| 1597 | node[man_made=survey_point] {
|
|---|
| [10706] | 1598 | icon-image: "presets/landmark/survey_point.svg";
|
|---|
| [7454] | 1599 | set icon_z17;
|
|---|
| [7041] | 1600 | }
|
|---|
| 1601 | node[man_made=wastewater_plant] {
|
|---|
| [10706] | 1602 | icon-image: "presets/landmark/wastewater_plant.svg";
|
|---|
| [7454] | 1603 | set icon_z17;
|
|---|
| [7041] | 1604 | }
|
|---|
| 1605 | node[man_made=watermill] {
|
|---|
| [10707] | 1606 | icon-image: "presets/landmark/watermill.svg";
|
|---|
| [7454] | 1607 | set icon_z17;
|
|---|
| [7041] | 1608 | }
|
|---|
| 1609 | node[man_made=water_well] {
|
|---|
| [10706] | 1610 | icon-image: "presets/landmark/water_well.svg";
|
|---|
| [7454] | 1611 | set icon_z17;
|
|---|
| [7041] | 1612 | }
|
|---|
| 1613 | node[man_made=windmill] {
|
|---|
| [10706] | 1614 | icon-image: "presets/landmark/windmill.svg";
|
|---|
| [7454] | 1615 | set icon_z17;
|
|---|
| [7041] | 1616 | }
|
|---|
| 1617 | node[man_made=works] {
|
|---|
| [10706] | 1618 | icon-image: "presets/landmark/works.svg";
|
|---|
| [7454] | 1619 | set icon_z17;
|
|---|
| [7041] | 1620 | }
|
|---|
| 1621 | node[man_made=water_works] {
|
|---|
| [10808] | 1622 | icon-image: "presets/landmark/water_works.svg";
|
|---|
| [7454] | 1623 | set icon_z17;
|
|---|
| [7041] | 1624 | }
|
|---|
| [15066] | 1625 | way[man_made=cutline]::man_made_cutline {
|
|---|
| 1626 | width: 4;
|
|---|
| 1627 | color: cutline#bbff7c;
|
|---|
| 1628 | z-index: -2;
|
|---|
| 1629 | object-z-index: -1; /* below highway=* */
|
|---|
| 1630 | modifier: false; /* don't draw default way if there is no line on default layer */
|
|---|
| [8147] | 1631 | }
|
|---|
| 1632 | node[man_made=cutline] {
|
|---|
| [10706] | 1633 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [8147] | 1634 | set icon_z17;
|
|---|
| 1635 | }
|
|---|
| [7041] | 1636 |
|
|---|
| [16706] | 1637 | area[man_made=water_tower],
|
|---|
| [16747] | 1638 | area[man_made=telescope],
|
|---|
| [16758] | 1639 | area[man_made=antenna],
|
|---|
| [16706] | 1640 | area[man_made=mast],
|
|---|
| 1641 | area[man_made=tower],
|
|---|
| 1642 | area[man_made=communications_tower] {
|
|---|
| 1643 | fill-color: manmade#d8d8d8;
|
|---|
| 1644 | }
|
|---|
| 1645 | node[man_made=water_tower] {
|
|---|
| 1646 | icon-image: "presets/tower/water_tower.svg";
|
|---|
| 1647 | set icon_z17;
|
|---|
| 1648 | }
|
|---|
| [16747] | 1649 | node[man_made=telescope] {
|
|---|
| 1650 | icon-image: "presets/tower/telescope_dish.svg";
|
|---|
| 1651 | set icon_z17;
|
|---|
| 1652 | }
|
|---|
| 1653 | node[man_made=telescope][telescope:type=optical] {
|
|---|
| 1654 | icon-image: "presets/tower/telescope_dome.svg";
|
|---|
| 1655 | set icon_z17;
|
|---|
| 1656 | }
|
|---|
| [16758] | 1657 | node[man_made=antenna] {
|
|---|
| 1658 | icon-image: "presets/tower/antenna.svg";
|
|---|
| 1659 | set icon_z17;
|
|---|
| 1660 | }
|
|---|
| [16706] | 1661 | node[man_made=mast] {
|
|---|
| 1662 | icon-image: "presets/tower/mast.svg";
|
|---|
| 1663 | set icon_z17;
|
|---|
| 1664 | }
|
|---|
| 1665 | node[man_made=mast][tower:type=communication] {
|
|---|
| 1666 | icon-image: "presets/tower/mast_communication.svg";
|
|---|
| 1667 | set icon_z17;
|
|---|
| 1668 | }
|
|---|
| 1669 | node[man_made=mast][tower:type=lighting] {
|
|---|
| 1670 | icon-image: "presets/tower/mast_lighting.svg";
|
|---|
| 1671 | set icon_z17;
|
|---|
| 1672 | }
|
|---|
| 1673 | node[man_made=tower] {
|
|---|
| 1674 | icon-image: "presets/tower/tower.svg";
|
|---|
| 1675 | set icon_z17;
|
|---|
| 1676 | }
|
|---|
| 1677 | node[man_made=tower][tower:type=bell_tower] {
|
|---|
| 1678 | icon-image: "presets/tower/bell_tower.svg";
|
|---|
| 1679 | set icon_z17;
|
|---|
| 1680 | }
|
|---|
| 1681 | node[man_made=tower][tower:type=communication] {
|
|---|
| 1682 | icon-image: "presets/tower/communication.svg";
|
|---|
| 1683 | set icon_z17;
|
|---|
| 1684 | }
|
|---|
| 1685 | node[man_made=tower][tower:type=cooling] {
|
|---|
| 1686 | icon-image: "presets/tower/cooling.svg";
|
|---|
| 1687 | set icon_z17;
|
|---|
| 1688 | }
|
|---|
| 1689 | node[man_made=tower][tower:type=defensive] {
|
|---|
| 1690 | icon-image: "presets/tower/defensive.svg";
|
|---|
| 1691 | set icon_z17;
|
|---|
| 1692 | }
|
|---|
| 1693 | node[man_made=tower][tower:type=lighting] {
|
|---|
| 1694 | icon-image: "presets/tower/lighting.svg";
|
|---|
| 1695 | set icon_z17;
|
|---|
| 1696 | }
|
|---|
| 1697 | node[man_made=tower][tower:type=observation] {
|
|---|
| 1698 | icon-image: "presets/tower/observation.svg";
|
|---|
| 1699 | set icon_z17;
|
|---|
| 1700 | }
|
|---|
| 1701 | node[man_made=tower][tower:type=watchtower] {
|
|---|
| 1702 | icon-image: "presets/tower/observation.svg";
|
|---|
| 1703 | set icon_z17;
|
|---|
| 1704 | }
|
|---|
| 1705 | node[man_made=communications_tower] {
|
|---|
| 1706 | icon-image: "presets/tower/communications_tower.svg";
|
|---|
| 1707 | set icon_z17;
|
|---|
| 1708 | }
|
|---|
| 1709 |
|
|---|
| [15171] | 1710 | /****************/
|
|---|
| 1711 | /* telecom tags */
|
|---|
| 1712 | /****************/
|
|---|
| 1713 |
|
|---|
| 1714 | area[telecom=exchange],
|
|---|
| 1715 | area[telecom=connection_point],
|
|---|
| [16475] | 1716 | area[telecom=service_device],
|
|---|
| 1717 | area[man_made=street_cabinet][street_cabinet=telecom] {
|
|---|
| [15171] | 1718 | fill-color: telecom#d8d8d8; /* same as man_made */
|
|---|
| 1719 | }
|
|---|
| 1720 | node[telecom=exchange] {
|
|---|
| 1721 | icon-image: "presets/telecom/exchange.svg";
|
|---|
| 1722 | set icon_z17;
|
|---|
| 1723 | }
|
|---|
| 1724 | node[telecom=connection_point] {
|
|---|
| 1725 | icon-image: "presets/telecom/connection_point.svg";
|
|---|
| 1726 | set icon_z17;
|
|---|
| 1727 | }
|
|---|
| 1728 | node[telecom=service_device] {
|
|---|
| 1729 | icon-image: "presets/telecom/service_device.svg";
|
|---|
| 1730 | set icon_z17;
|
|---|
| 1731 | }
|
|---|
| 1732 | node[man_made=street_cabinet][street_cabinet=telecom] {
|
|---|
| 1733 | icon-image: "presets/telecom/telecom_cabinet.svg";
|
|---|
| 1734 | set icon_z17;
|
|---|
| 1735 | }
|
|---|
| 1736 |
|
|---|
| [7041] | 1737 | /***************/
|
|---|
| 1738 | /* office tags */
|
|---|
| 1739 | /***************/
|
|---|
| 1740 |
|
|---|
| [9681] | 1741 | area[office=accountant],
|
|---|
| 1742 | area[office=advertising_agency],
|
|---|
| 1743 | area[office=architect],
|
|---|
| 1744 | area[office=association],
|
|---|
| 1745 | area[office=company],
|
|---|
| [17468] | 1746 | area[office=diplomatic],
|
|---|
| [9681] | 1747 | area[office=educational_institution],
|
|---|
| 1748 | area[office=employment_agency],
|
|---|
| 1749 | area[office=estate_agent],
|
|---|
| 1750 | area[office=foundation],
|
|---|
| 1751 | area[office=government],
|
|---|
| 1752 | area[office=insurance],
|
|---|
| 1753 | area[office=it],
|
|---|
| 1754 | area[office=lawyer],
|
|---|
| 1755 | area[office=newspaper],
|
|---|
| 1756 | area[office=ngo],
|
|---|
| 1757 | area[office=notary],
|
|---|
| 1758 | area[office=political_party],
|
|---|
| 1759 | area[office=religion],
|
|---|
| 1760 | area[office=research],
|
|---|
| 1761 | area[office=tax_advisor],
|
|---|
| 1762 | area[office=telecommunication] {
|
|---|
| [7041] | 1763 | fill-color: office#de5696;
|
|---|
| 1764 | }
|
|---|
| [9148] | 1765 | node[office=accountant] {
|
|---|
| [10566] | 1766 | icon-image: "presets/office/accountant.svg";
|
|---|
| [9148] | 1767 | set icon_z17;
|
|---|
| 1768 | }
|
|---|
| 1769 | node[office=advertising_agency] {
|
|---|
| [10566] | 1770 | icon-image: "presets/office/advertising_agency.svg";
|
|---|
| [9148] | 1771 | set icon_z17;
|
|---|
| 1772 | }
|
|---|
| 1773 | node[office=architect] {
|
|---|
| [10566] | 1774 | icon-image: "presets/office/architect.svg";
|
|---|
| [9148] | 1775 | set icon_z17;
|
|---|
| 1776 | }
|
|---|
| 1777 | node[office=association] {
|
|---|
| [10566] | 1778 | icon-image: "presets/office/association.svg";
|
|---|
| [9148] | 1779 | set icon_z17;
|
|---|
| 1780 | }
|
|---|
| 1781 | node[office=company] {
|
|---|
| [10566] | 1782 | icon-image: "presets/office/private_company.svg";
|
|---|
| [9148] | 1783 | set icon_z17;
|
|---|
| 1784 | }
|
|---|
| [17468] | 1785 | node[office=diplomatic] {
|
|---|
| 1786 | icon-image: "presets/office/diplomatic.svg";
|
|---|
| 1787 | set icon_z17;
|
|---|
| 1788 | }
|
|---|
| [9148] | 1789 | node[office=educational_institution] {
|
|---|
| [10566] | 1790 | icon-image: "presets/office/educational_institution.svg";
|
|---|
| [9148] | 1791 | set icon_z17;
|
|---|
| 1792 | }
|
|---|
| 1793 | node[office=employment_agency] {
|
|---|
| [10566] | 1794 | icon-image: "presets/office/employment_agency.svg";
|
|---|
| [9148] | 1795 | set icon_z17;
|
|---|
| 1796 | }
|
|---|
| 1797 | node[office=estate_agent] {
|
|---|
| [10566] | 1798 | icon-image: "presets/office/real_state.svg";
|
|---|
| [9148] | 1799 | set icon_z17;
|
|---|
| 1800 | }
|
|---|
| 1801 | node[office=foundation] {
|
|---|
| [10566] | 1802 | icon-image: "presets/office/foundation.svg";
|
|---|
| [9148] | 1803 | set icon_z17;
|
|---|
| 1804 | }
|
|---|
| 1805 | node[office=insurance] {
|
|---|
| [10566] | 1806 | icon-image: "presets/office/insurance.svg";
|
|---|
| [9148] | 1807 | set icon_z17;
|
|---|
| 1808 | }
|
|---|
| 1809 | node[office=it] {
|
|---|
| [10566] | 1810 | icon-image: "presets/office/it.svg";
|
|---|
| [9148] | 1811 | set icon_z17;
|
|---|
| 1812 | }
|
|---|
| 1813 | node[office=lawyer] {
|
|---|
| [10566] | 1814 | icon-image: "presets/office/lawyer.svg";
|
|---|
| [9148] | 1815 | set icon_z17;
|
|---|
| 1816 | }
|
|---|
| 1817 | node[office=newspaper] {
|
|---|
| [10566] | 1818 | icon-image: "presets/office/newspaper.svg";
|
|---|
| [9148] | 1819 | set icon_z17;
|
|---|
| 1820 | }
|
|---|
| 1821 | node[office=ngo] {
|
|---|
| [10566] | 1822 | icon-image: "presets/office/ong.svg";
|
|---|
| [9148] | 1823 | set icon_z17;
|
|---|
| 1824 | }
|
|---|
| 1825 | node[office=notary] {
|
|---|
| [10566] | 1826 | icon-image: "presets/office/notary.svg";
|
|---|
| [9148] | 1827 | set icon_z17;
|
|---|
| 1828 | }
|
|---|
| 1829 | node[office=political_party] {
|
|---|
| [10566] | 1830 | icon-image: "presets/office/political_party.svg";
|
|---|
| [9148] | 1831 | set icon_z17;
|
|---|
| 1832 | }
|
|---|
| 1833 | node[office=religion] {
|
|---|
| [10566] | 1834 | icon-image: "presets/office/religion.svg";
|
|---|
| [9148] | 1835 | set icon_z17;
|
|---|
| 1836 | }
|
|---|
| 1837 | node[office=research] {
|
|---|
| [10566] | 1838 | icon-image: "presets/office/research.svg";
|
|---|
| [9148] | 1839 | set icon_z17;
|
|---|
| 1840 | }
|
|---|
| 1841 | node[office=tax_advisor] {
|
|---|
| [10566] | 1842 | icon-image: "presets/office/tax_advisor.svg";
|
|---|
| [9148] | 1843 | set icon_z17;
|
|---|
| 1844 | }
|
|---|
| [9011] | 1845 | node[office=telecommunication] {
|
|---|
| [10566] | 1846 | icon-image: "presets/office/telecommunication.svg";
|
|---|
| [7454] | 1847 | set icon_z17;
|
|---|
| [7041] | 1848 | }
|
|---|
| 1849 | node[office=government] {
|
|---|
| [10566] | 1850 | icon-image: "presets/office/government.svg";
|
|---|
| [7454] | 1851 | set icon_z17;
|
|---|
| [7041] | 1852 | }
|
|---|
| 1853 |
|
|---|
| [16755] | 1854 | /*************/
|
|---|
| 1855 | /* club tags */
|
|---|
| 1856 | /*************/
|
|---|
| 1857 |
|
|---|
| 1858 | area[club] {
|
|---|
| 1859 | fill-color: club#a3e5f1;
|
|---|
| 1860 | }
|
|---|
| 1861 | node[club] {
|
|---|
| 1862 | icon-image: "presets/leisure/club.svg";
|
|---|
| 1863 | set icon_z17;
|
|---|
| 1864 | }
|
|---|
| 1865 |
|
|---|
| [7041] | 1866 | /****************/
|
|---|
| 1867 | /* leisure tags */
|
|---|
| 1868 | /****************/
|
|---|
| 1869 |
|
|---|
| [13379] | 1870 | area[leisure=bandstand],
|
|---|
| [17258] | 1871 | area[leisure=bleachers],
|
|---|
| [7041] | 1872 | area[leisure=sports_centre],
|
|---|
| [10539] | 1873 | area[leisure=fitness_centre],
|
|---|
| [7041] | 1874 | area[leisure=stadium],
|
|---|
| [7927] | 1875 | area[leisure=horse_riding],
|
|---|
| [16990] | 1876 | area[leisure=amusement_arcade],
|
|---|
| 1877 | area[leisure=adult_gaming_centre],
|
|---|
| [15549] | 1878 | area[leisure=hackerspace],
|
|---|
| [15809] | 1879 | area[leisure=outdoor_seating],
|
|---|
| [13789] | 1880 | area[leisure=resort],
|
|---|
| [10822] | 1881 | area[leisure=beach_resort],
|
|---|
| [7041] | 1882 | area[leisure=water_park] {
|
|---|
| 1883 | fill-color: leisure#c7f1a3;
|
|---|
| 1884 | }
|
|---|
| [13379] | 1885 | node[leisure=bandstand] {
|
|---|
| 1886 | icon-image: "presets/leisure/bandstand.svg";
|
|---|
| 1887 | set icon_z17;
|
|---|
| 1888 | }
|
|---|
| [17258] | 1889 | node[leisure=bleachers] {
|
|---|
| 1890 | icon-image: "presets/leisure/bleachers.svg";
|
|---|
| 1891 | set icon_z17;
|
|---|
| 1892 | }
|
|---|
| [7041] | 1893 | node[leisure=sports_centre] {
|
|---|
| [10808] | 1894 | icon-image: "presets/sport/sports_centre.svg";
|
|---|
| [7454] | 1895 | set icon_z17;
|
|---|
| [7041] | 1896 | }
|
|---|
| [10539] | 1897 | node[leisure=fitness_centre] {
|
|---|
| [10808] | 1898 | icon-image: "presets/sport/fitness_centre.svg";
|
|---|
| [10539] | 1899 | set icon_z17;
|
|---|
| 1900 | }
|
|---|
| [7041] | 1901 | node[leisure=stadium] {
|
|---|
| [10808] | 1902 | icon-image: "presets/sport/stadium.svg";
|
|---|
| [7454] | 1903 | set icon_z17;
|
|---|
| [7041] | 1904 | }
|
|---|
| [8143] | 1905 | node[leisure=horse_riding] {
|
|---|
| [10808] | 1906 | icon-image: "presets/leisure/horse_riding.svg";
|
|---|
| [8143] | 1907 | set icon_z17;
|
|---|
| 1908 | }
|
|---|
| [16990] | 1909 | node[leisure=amusement_arcade] {
|
|---|
| 1910 | icon-image: "presets/leisure/amusement_arcade.svg";
|
|---|
| 1911 | set icon_z17;
|
|---|
| 1912 | }
|
|---|
| 1913 | node[leisure=adult_gaming_centre] {
|
|---|
| 1914 | icon-image: "presets/leisure/adult_gaming_centre.svg";
|
|---|
| 1915 | set icon_z17;
|
|---|
| 1916 | }
|
|---|
| [15549] | 1917 | node[leisure=hackerspace] {
|
|---|
| 1918 | icon-image: "presets/leisure/hackerspace.svg";
|
|---|
| 1919 | set icon_z17;
|
|---|
| 1920 | }
|
|---|
| [15809] | 1921 | node[leisure=outdoor_seating] {
|
|---|
| 1922 | icon-image: "presets/leisure/outdoor_seating.svg";
|
|---|
| 1923 | set icon_z17;
|
|---|
| 1924 | }
|
|---|
| [13789] | 1925 | node[leisure=resort] {
|
|---|
| 1926 | icon-image: "presets/leisure/resort.svg";
|
|---|
| 1927 | set icon_z17;
|
|---|
| 1928 | }
|
|---|
| [10822] | 1929 | node[leisure=beach_resort] {
|
|---|
| 1930 | icon-image: "presets/leisure/beach_resort.svg";
|
|---|
| 1931 | set icon_z17;
|
|---|
| 1932 | }
|
|---|
| [8143] | 1933 | node[leisure=water_park] {
|
|---|
| [10808] | 1934 | icon-image: "presets/leisure/water_park.svg";
|
|---|
| [8143] | 1935 | set icon_z17;
|
|---|
| 1936 | }
|
|---|
| [7041] | 1937 | way[leisure=track] {
|
|---|
| 1938 | width: 2;
|
|---|
| [8143] | 1939 | color: leisuretrack#d4f4b9;
|
|---|
| [7041] | 1940 | }
|
|---|
| [14808] | 1941 | way[leisure=track][area?],
|
|---|
| 1942 | relation[leisure=track][!area?!]:closed {
|
|---|
| 1943 | fill-color: leisuretrack#d4f4b9;
|
|---|
| 1944 | }
|
|---|
| [7041] | 1945 | node[leisure=track] {
|
|---|
| [10808] | 1946 | icon-image: "presets/sport/track.svg";
|
|---|
| [7454] | 1947 | set icon_z17;
|
|---|
| [7041] | 1948 | }
|
|---|
| [8143] | 1949 | area[leisure=pitch] {
|
|---|
| 1950 | fill-color: pitch#baee8d;
|
|---|
| 1951 | }
|
|---|
| [7041] | 1952 | node[leisure=pitch] {
|
|---|
| [10808] | 1953 | icon-image: "presets/sport/pitch.svg";
|
|---|
| [7454] | 1954 | set icon_z17;
|
|---|
| [7041] | 1955 | }
|
|---|
| 1956 | area[leisure=marina] {
|
|---|
| 1957 | fill-color: marina#0070cf;
|
|---|
| 1958 | }
|
|---|
| 1959 | node[leisure=marina] {
|
|---|
| [10808] | 1960 | icon-image: "presets/nautical/marina.svg";
|
|---|
| [7454] | 1961 | set icon_z17;
|
|---|
| [7041] | 1962 | }
|
|---|
| [7975] | 1963 | way[leisure=slipway] {
|
|---|
| 1964 | width: 2;
|
|---|
| 1965 | color: leisure#c7f1a3;
|
|---|
| 1966 | }
|
|---|
| 1967 | node[leisure=slipway] {
|
|---|
| [10808] | 1968 | icon-image: "presets/nautical/slipway.svg";
|
|---|
| [7975] | 1969 | set icon_z17;
|
|---|
| 1970 | }
|
|---|
| [7041] | 1971 | area[leisure=fishing],
|
|---|
| [10005] | 1972 | area[leisure=bird_hide],
|
|---|
| [7041] | 1973 | area[leisure=nature_reserve],
|
|---|
| 1974 | area[leisure=park],
|
|---|
| 1975 | area[leisure=playground],
|
|---|
| 1976 | area[leisure=garden],
|
|---|
| [7598] | 1977 | area[leisure=firepit] {
|
|---|
| [7041] | 1978 | fill-color: leisure#c7f1a3;
|
|---|
| 1979 | }
|
|---|
| 1980 | node[leisure=fishing] {
|
|---|
| [10808] | 1981 | icon-image: "presets/sport/fishing.svg";
|
|---|
| [7454] | 1982 | set icon_z17;
|
|---|
| [7041] | 1983 | }
|
|---|
| [10005] | 1984 | node[leisure=bird_hide] {
|
|---|
| [10565] | 1985 | icon-image: "presets/leisure/bird_hide.svg";
|
|---|
| [10005] | 1986 | set icon_z17;
|
|---|
| 1987 | }
|
|---|
| [7041] | 1988 | node[leisure=park] {
|
|---|
| [10706] | 1989 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 1990 | set icon_z17;
|
|---|
| [7041] | 1991 | }
|
|---|
| 1992 | node[leisure=playground] {
|
|---|
| [10706] | 1993 | icon-image: "presets/leisure/playground.svg";
|
|---|
| [7454] | 1994 | set icon_z17;
|
|---|
| [7041] | 1995 | }
|
|---|
| 1996 | node[leisure=garden] {
|
|---|
| [10808] | 1997 | icon-image: "presets/leisure/garden.svg";
|
|---|
| [7454] | 1998 | set icon_z17;
|
|---|
| [7041] | 1999 | }
|
|---|
| 2000 | node[leisure=common] {
|
|---|
| [15086] | 2001 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 2002 | set icon_z17;
|
|---|
| [7041] | 2003 | }
|
|---|
| [7598] | 2004 | node[leisure=firepit] {
|
|---|
| [10565] | 2005 | icon-image: "presets/leisure/firepit.svg";
|
|---|
| [10013] | 2006 | set icon_z17;
|
|---|
| [7598] | 2007 | }
|
|---|
| [7875] | 2008 | node[leisure=picnic_table] {
|
|---|
| [10808] | 2009 | icon-image: "presets/leisure/picnic.svg";
|
|---|
| [7875] | 2010 | set icon_z17;
|
|---|
| 2011 | }
|
|---|
| [7148] | 2012 | area[leisure=swimming_pool] {
|
|---|
| 2013 | fill-color: swimming_pool#51c4ef;
|
|---|
| 2014 | }
|
|---|
| [7041] | 2015 | node[leisure=swimming_pool] {
|
|---|
| [10706] | 2016 | icon-image: "presets/sport/swimming.svg";
|
|---|
| [7454] | 2017 | set icon_z17;
|
|---|
| [7041] | 2018 | }
|
|---|
| [16500] | 2019 | area[playground]:closed {
|
|---|
| 2020 | fill-color: playground#c7f1a3;
|
|---|
| 2021 | }
|
|---|
| 2022 | way[playground] {
|
|---|
| 2023 | width: 2;
|
|---|
| 2024 | color: playground#c7f1a3;
|
|---|
| 2025 | }
|
|---|
| 2026 | node[playground] {
|
|---|
| 2027 | icon-image: "presets/leisure/playground_device.svg";
|
|---|
| 2028 | set icon_z17;
|
|---|
| 2029 | }
|
|---|
| [9851] | 2030 | area[leisure=fitness_station],
|
|---|
| [7148] | 2031 | area[leisure=miniature_golf],
|
|---|
| 2032 | area[leisure=dog_park],
|
|---|
| 2033 | area[leisure=ice_rink],
|
|---|
| 2034 | area[leisure=sauna] {
|
|---|
| 2035 | fill-color: leisure#c7f1a3;
|
|---|
| 2036 | }
|
|---|
| [9851] | 2037 | node[leisure=fitness_station] {
|
|---|
| [10565] | 2038 | icon-image: "presets/leisure/fitness_station.svg";
|
|---|
| [9851] | 2039 | set icon_z17;
|
|---|
| 2040 | }
|
|---|
| [7041] | 2041 | node[leisure=miniature_golf] {
|
|---|
| [10565] | 2042 | icon-image: "presets/sport/miniature_golf.svg";
|
|---|
| [7454] | 2043 | set icon_z17;
|
|---|
| [7041] | 2044 | }
|
|---|
| 2045 | node[leisure=dog_park] {
|
|---|
| [10808] | 2046 | icon-image: "presets/leisure/dogpark.svg";
|
|---|
| [7454] | 2047 | set icon_z17;
|
|---|
| [7041] | 2048 | }
|
|---|
| 2049 | node[leisure=ice_rink] {
|
|---|
| [10808] | 2050 | icon-image: "presets/sport/ice_hockey.svg";
|
|---|
| [7454] | 2051 | set icon_z17;
|
|---|
| [7041] | 2052 | }
|
|---|
| 2053 | node[leisure=sauna] {
|
|---|
| [10808] | 2054 | icon-image: "presets/leisure/sauna.svg";
|
|---|
| [7454] | 2055 | set icon_z17;
|
|---|
| [7041] | 2056 | }
|
|---|
| [9640] | 2057 | area[leisure=golf_course] {
|
|---|
| 2058 | fill-color: leisure#c7f1a3;
|
|---|
| 2059 | }
|
|---|
| 2060 | node[leisure=golf_course] {
|
|---|
| [10565] | 2061 | icon-image: "presets/sport/golf/golf.svg";
|
|---|
| [9640] | 2062 | set icon_z17;
|
|---|
| 2063 | }
|
|---|
| [7041] | 2064 |
|
|---|
| [9640] | 2065 | /*************/
|
|---|
| 2066 | /* golf tags */
|
|---|
| 2067 | /*************/
|
|---|
| 2068 | area[golf=tee] {
|
|---|
| 2069 | fill-color: golf#c7f1a3;
|
|---|
| 2070 | }
|
|---|
| 2071 | node[golf=tee] {
|
|---|
| [10565] | 2072 | icon-image: "presets/sport/golf/tee.svg";
|
|---|
| [9640] | 2073 | set icon_z17;
|
|---|
| 2074 | }
|
|---|
| 2075 | way[golf=hole] {
|
|---|
| 2076 | width: 1;
|
|---|
| 2077 | dashes: 10,10;
|
|---|
| 2078 | color: golf_hole#808080;
|
|---|
| 2079 | }
|
|---|
| 2080 | node[golf=pin] {
|
|---|
| [10565] | 2081 | icon-image: "presets/sport/golf/pin.svg";
|
|---|
| [9640] | 2082 | set icon_z17;
|
|---|
| 2083 | }
|
|---|
| 2084 | area[golf=bunker] {
|
|---|
| 2085 | fill-color: golf_bunker#ffab00;
|
|---|
| 2086 | }
|
|---|
| 2087 | area[golf=water_hazard],
|
|---|
| 2088 | area[golf=lateral_water_hazard] {
|
|---|
| 2089 | fill-color: golf_water_hazard#0000ff;
|
|---|
| 2090 | }
|
|---|
| 2091 | area[golf=green] {
|
|---|
| 2092 | fill-color: golf_green#00e700;
|
|---|
| 2093 | }
|
|---|
| 2094 | area[golf=fairway] {
|
|---|
| 2095 | fill-color: golf_fairway#009a00;
|
|---|
| 2096 | }
|
|---|
| 2097 | area[golf=rough] {
|
|---|
| 2098 | fill-color: golf_rough#006700;
|
|---|
| 2099 | }
|
|---|
| 2100 | area[golf=driving_range] {
|
|---|
| 2101 | fill-color: golf_driving_range#c7f1a3;
|
|---|
| 2102 | }
|
|---|
| 2103 | node[golf=driving_range] {
|
|---|
| [10565] | 2104 | icon-image: "presets/sport/golf/driving_range.svg";
|
|---|
| [9640] | 2105 | set icon_z17;
|
|---|
| 2106 | }
|
|---|
| 2107 |
|
|---|
| [7790] | 2108 | /********************/
|
|---|
| 2109 | /* advertising tags */
|
|---|
| 2110 | /********************/
|
|---|
| 2111 |
|
|---|
| 2112 | node[advertising=column] {
|
|---|
| [10565] | 2113 | icon-image: "presets/leisure/advertising_column.svg";
|
|---|
| [7790] | 2114 | set icon_z17;
|
|---|
| 2115 | }
|
|---|
| [11976] | 2116 | area[advertising=column] {
|
|---|
| 2117 | fill-color: advertising#880000;
|
|---|
| 2118 | }
|
|---|
| [7790] | 2119 | node[advertising=billboard] {
|
|---|
| [10565] | 2120 | icon-image: "presets/leisure/billboard.svg";
|
|---|
| [7790] | 2121 | set icon_z17;
|
|---|
| 2122 | }
|
|---|
| [17529] | 2123 | node[advertising=poster_box] {
|
|---|
| 2124 | icon-image: "presets/leisure/poster_box.svg";
|
|---|
| 2125 | set icon_z17;
|
|---|
| 2126 | }
|
|---|
| 2127 | way[advertising=billboard],
|
|---|
| 2128 | way[advertising=poster_box] {
|
|---|
| [14560] | 2129 | width: 2;
|
|---|
| 2130 | color: advertising#880000;
|
|---|
| 2131 | }
|
|---|
| [7790] | 2132 |
|
|---|
| [7041] | 2133 | /*************/
|
|---|
| 2134 | /* shop tags */
|
|---|
| 2135 | /*************/
|
|---|
| 2136 |
|
|---|
| 2137 | area[shop=supermarket],
|
|---|
| 2138 | area[shop=convenience],
|
|---|
| 2139 | area[shop=bakery],
|
|---|
| 2140 | area[shop=butcher],
|
|---|
| 2141 | area[shop=bicycle],
|
|---|
| 2142 | area[shop=doityourself],
|
|---|
| 2143 | area[shop=dry_cleaning],
|
|---|
| 2144 | area[shop=laundry],
|
|---|
| 2145 | area[shop=outdoor],
|
|---|
| 2146 | area[shop=kiosk],
|
|---|
| 2147 | area[shop=alcohol],
|
|---|
| 2148 | area[shop=beverages],
|
|---|
| 2149 | area[shop=books],
|
|---|
| 2150 | area[shop=boutique],
|
|---|
| 2151 | area[shop=car],
|
|---|
| 2152 | area[shop=car_repair],
|
|---|
| 2153 | area[shop=tyres],
|
|---|
| 2154 | area[shop=chemist],
|
|---|
| [9420] | 2155 | area[shop=tobacco],
|
|---|
| [15466] | 2156 | area[shop=e-cigarette],
|
|---|
| [7041] | 2157 | area[shop=clothes],
|
|---|
| 2158 | area[shop=computer],
|
|---|
| 2159 | area[shop=confectionery],
|
|---|
| [17070] | 2160 | area[shop=chocolate],
|
|---|
| [10897] | 2161 | area[shop=pastry],
|
|---|
| [7041] | 2162 | area[shop=copyshop],
|
|---|
| 2163 | area[shop=curtain],
|
|---|
| 2164 | area[shop=cycle_repair],
|
|---|
| 2165 | area[shop=department_store],
|
|---|
| 2166 | area[shop=deli],
|
|---|
| [15188] | 2167 | area[shop=doors],
|
|---|
| [7041] | 2168 | area[shop=electronics],
|
|---|
| 2169 | area[shop=erotic],
|
|---|
| 2170 | area[shop=furniture],
|
|---|
| 2171 | area[shop=fabric],
|
|---|
| 2172 | area[shop=florist],
|
|---|
| 2173 | area[shop=frame],
|
|---|
| [14575] | 2174 | area[shop=gas],
|
|---|
| [17561] | 2175 | area[shop=general],
|
|---|
| [7041] | 2176 | area[shop=gift],
|
|---|
| 2177 | area[shop=greengrocer],
|
|---|
| 2178 | area[shop=garden_centre],
|
|---|
| 2179 | area[shop=hairdresser],
|
|---|
| 2180 | area[shop=hardware],
|
|---|
| 2181 | area[shop=hearing_aids],
|
|---|
| 2182 | area[shop=hifi],
|
|---|
| [9718] | 2183 | area[shop=houseware],
|
|---|
| [16715] | 2184 | area[shop=pottery],
|
|---|
| [7041] | 2185 | area[shop=jewelry],
|
|---|
| 2186 | area[shop=kitchen],
|
|---|
| 2187 | area[shop=mall],
|
|---|
| [14874] | 2188 | area[shop=massage],
|
|---|
| [7041] | 2189 | area[shop=mobile_phone],
|
|---|
| [15092] | 2190 | area[shop=watches],
|
|---|
| [7041] | 2191 | area[shop=motorcycle],
|
|---|
| 2192 | area[shop=musical_instrument],
|
|---|
| 2193 | area[shop=newsagent],
|
|---|
| 2194 | area[shop=optician],
|
|---|
| [8053] | 2195 | area[shop=medical_supply],
|
|---|
| [7041] | 2196 | area[shop=paint],
|
|---|
| [15188] | 2197 | area[shop=party],
|
|---|
| [7041] | 2198 | area[shop=pawnbroker],
|
|---|
| 2199 | area[shop=seafood],
|
|---|
| [11346] | 2200 | area[shop=dairy],
|
|---|
| [12083] | 2201 | area[shop=cheese],
|
|---|
| [7041] | 2202 | area[shop=shoes],
|
|---|
| 2203 | area[shop=sports],
|
|---|
| 2204 | area[shop=stationery],
|
|---|
| 2205 | area[shop=tailor],
|
|---|
| 2206 | area[shop=travel_agency],
|
|---|
| [15536] | 2207 | area[shop=scuba_diving],
|
|---|
| [17069] | 2208 | area[shop=fishing],
|
|---|
| [7041] | 2209 | area[shop=toys],
|
|---|
| 2210 | area[shop=vacuum_cleaner],
|
|---|
| 2211 | area[shop=variety_store],
|
|---|
| [12612] | 2212 | area[shop=charity],
|
|---|
| [16930] | 2213 | area[shop=second_hand],
|
|---|
| [7041] | 2214 | area[shop=video],
|
|---|
| 2215 | area[shop=bookmaker],
|
|---|
| 2216 | area[shop=lottery],
|
|---|
| [7296] | 2217 | area[shop=pet],
|
|---|
| [15434] | 2218 | area[shop=pet_grooming],
|
|---|
| [8868] | 2219 | area[shop=photo],
|
|---|
| [7296] | 2220 | area[shop=ticket],
|
|---|
| [14959] | 2221 | area[shop=carpet],
|
|---|
| [7296] | 2222 | area[shop=interior_decoration],
|
|---|
| 2223 | area[shop=car_parts],
|
|---|
| 2224 | area[shop=video_games],
|
|---|
| 2225 | area[shop=bed],
|
|---|
| 2226 | area[shop=beauty],
|
|---|
| [9550] | 2227 | area[shop=cosmetics],
|
|---|
| 2228 | area[shop=perfumery],
|
|---|
| [17071] | 2229 | area[shop=herbalist],
|
|---|
| [7296] | 2230 | area[shop=tea],
|
|---|
| 2231 | area[shop=coffee],
|
|---|
| [17124] | 2232 | area[shop=frozen_food],
|
|---|
| [7600] | 2233 | area[shop=antiques],
|
|---|
| [17072] | 2234 | area[shop=swimming_pool],
|
|---|
| [16265] | 2235 | area[shop=storage_rental],
|
|---|
| [7685] | 2236 | area[shop=music],
|
|---|
| [15528] | 2237 | area[shop=weapons],
|
|---|
| [7686] | 2238 | area[shop=funeral_directors],
|
|---|
| 2239 | area[shop=wine],
|
|---|
| [7705] | 2240 | area[shop=farm],
|
|---|
| 2241 | area[shop=tattoo],
|
|---|
| 2242 | area[shop=art],
|
|---|
| [16714] | 2243 | area[shop=lighting],
|
|---|
| 2244 | area[shop=security],
|
|---|
| 2245 | area[shop=wholesale],
|
|---|
| 2246 | area[shop=trade],
|
|---|
| [7296] | 2247 | area[shop=bag] {
|
|---|
| [7041] | 2248 | fill-color: shop#00005f;
|
|---|
| 2249 | }
|
|---|
| 2250 | node[shop=supermarket] {
|
|---|
| [10565] | 2251 | icon-image: "presets/shop/supermarket.svg";
|
|---|
| [7454] | 2252 | set icon_z17;
|
|---|
| [7041] | 2253 | }
|
|---|
| 2254 | node[shop=convenience] {
|
|---|
| [10808] | 2255 | icon-image: "presets/shop/convenience.svg";
|
|---|
| [7454] | 2256 | set icon_z17;
|
|---|
| [7041] | 2257 | }
|
|---|
| 2258 | node[shop=bakery] {
|
|---|
| [10808] | 2259 | icon-image: "presets/shop/groceries/bakery.svg";
|
|---|
| [7454] | 2260 | set icon_z17;
|
|---|
| [7041] | 2261 | }
|
|---|
| 2262 | node[shop=butcher] {
|
|---|
| [10808] | 2263 | icon-image: "presets/shop/groceries/butcher.svg";
|
|---|
| [7454] | 2264 | set icon_z17;
|
|---|
| [7041] | 2265 | }
|
|---|
| 2266 | node[shop=bicycle] {
|
|---|
| [10706] | 2267 | icon-image: "presets/shop/bicycle.svg";
|
|---|
| [7454] | 2268 | set icon_z17;
|
|---|
| [7041] | 2269 | }
|
|---|
| 2270 | node[shop=doityourself] {
|
|---|
| [10706] | 2271 | icon-image: "presets/shop/diy_store.svg";
|
|---|
| [7454] | 2272 | set icon_z17;
|
|---|
| [7041] | 2273 | }
|
|---|
| 2274 | node[shop=dry_cleaning],
|
|---|
| 2275 | node[shop=laundry] {
|
|---|
| [10706] | 2276 | icon-image: "presets/shop/laundry.svg";
|
|---|
| [7454] | 2277 | set icon_z17;
|
|---|
| [7041] | 2278 | }
|
|---|
| 2279 | node[shop=outdoor] {
|
|---|
| [10706] | 2280 | icon-image: "presets/shop/outdoor.svg";
|
|---|
| [7454] | 2281 | set icon_z17;
|
|---|
| [7041] | 2282 | }
|
|---|
| 2283 | node[shop=kiosk] {
|
|---|
| [10706] | 2284 | icon-image: "presets/shop/kiosk.svg";
|
|---|
| [7454] | 2285 | set icon_z17;
|
|---|
| [7041] | 2286 | }
|
|---|
| 2287 | node[shop=beverages] {
|
|---|
| [10706] | 2288 | icon-image: "presets/shop/beverages.svg";
|
|---|
| [7454] | 2289 | set icon_z17;
|
|---|
| [7041] | 2290 | }
|
|---|
| [7950] | 2291 | node[shop=alcohol] {
|
|---|
| [10706] | 2292 | icon-image: "presets/shop/alcohol.svg";
|
|---|
| [7950] | 2293 | set icon_z17;
|
|---|
| 2294 | }
|
|---|
| [7041] | 2295 | node[shop=books] {
|
|---|
| [10565] | 2296 | icon-image: "presets/shop/book.svg";
|
|---|
| [7454] | 2297 | set icon_z17;
|
|---|
| [7041] | 2298 | }
|
|---|
| 2299 | node[shop=boutique] {
|
|---|
| [10808] | 2300 | icon-image: "presets/shop/boutique.svg";
|
|---|
| [7454] | 2301 | set icon_z17;
|
|---|
| [7041] | 2302 | }
|
|---|
| [10911] | 2303 | node[shop=car] {
|
|---|
| [10706] | 2304 | icon-image: "presets/shop/vehicle.svg";
|
|---|
| [7454] | 2305 | set icon_z17;
|
|---|
| [7041] | 2306 | }
|
|---|
| 2307 | node[shop=car_repair] {
|
|---|
| [10706] | 2308 | icon-image: "presets/vehicle/repair_shop.svg";
|
|---|
| [7454] | 2309 | set icon_z17;
|
|---|
| [7041] | 2310 | }
|
|---|
| 2311 | node[shop=tyres] {
|
|---|
| [10706] | 2312 | icon-image: "presets/vehicle/tyres.svg";
|
|---|
| [7454] | 2313 | set icon_z17;
|
|---|
| [7041] | 2314 | }
|
|---|
| 2315 | node[shop=chemist] {
|
|---|
| [10706] | 2316 | icon-image: "presets/shop/chemist.svg";
|
|---|
| [7454] | 2317 | set icon_z17;
|
|---|
| [7041] | 2318 | }
|
|---|
| [9420] | 2319 | node[shop=tobacco] {
|
|---|
| [10565] | 2320 | icon-image: "presets/shop/tobacco.svg";
|
|---|
| [9420] | 2321 | set icon_z17;
|
|---|
| 2322 | }
|
|---|
| [15466] | 2323 | node[shop=e-cigarette] {
|
|---|
| 2324 | icon-image: "presets/shop/e-cigarette.svg";
|
|---|
| 2325 | set icon_z17;
|
|---|
| 2326 | }
|
|---|
| [7041] | 2327 | node[shop=clothes] {
|
|---|
| [10706] | 2328 | icon-image: "presets/shop/clothes.svg";
|
|---|
| [7454] | 2329 | set icon_z17;
|
|---|
| [7041] | 2330 | }
|
|---|
| 2331 | node[shop=computer] {
|
|---|
| [10706] | 2332 | icon-image: "presets/shop/computer.svg";
|
|---|
| [7454] | 2333 | set icon_z17;
|
|---|
| [7041] | 2334 | }
|
|---|
| 2335 | node[shop=confectionery] {
|
|---|
| [10706] | 2336 | icon-image: "presets/shop/groceries/confectionery.svg";
|
|---|
| [7454] | 2337 | set icon_z17;
|
|---|
| [7041] | 2338 | }
|
|---|
| [17070] | 2339 | node[shop=chocolate] {
|
|---|
| 2340 | icon-image: "presets/shop/groceries/chocolate.svg";
|
|---|
| 2341 | set icon_z17;
|
|---|
| 2342 | }
|
|---|
| [10897] | 2343 | node[shop=pastry] {
|
|---|
| 2344 | icon-image: "presets/shop/groceries/pastry.svg";
|
|---|
| 2345 | set icon_z17;
|
|---|
| 2346 | }
|
|---|
| [7041] | 2347 | node[shop=copyshop] {
|
|---|
| [10808] | 2348 | icon-image: "presets/shop/copyshop.svg";
|
|---|
| [7454] | 2349 | set icon_z17;
|
|---|
| [7041] | 2350 | }
|
|---|
| 2351 | node[shop=curtain] {
|
|---|
| [10808] | 2352 | icon-image: "presets/shop/curtain.svg";
|
|---|
| [7454] | 2353 | set icon_z17;
|
|---|
| [7041] | 2354 | }
|
|---|
| 2355 | node[shop=cycle_repair] {
|
|---|
| [10706] | 2356 | icon-image: "presets/shop/bicycle.svg";
|
|---|
| [7454] | 2357 | set icon_z17;
|
|---|
| [7041] | 2358 | }
|
|---|
| 2359 | node[shop=department_store] {
|
|---|
| [10706] | 2360 | icon-image: "presets/shop/mall.svg";
|
|---|
| [7454] | 2361 | set icon_z17;
|
|---|
| [7041] | 2362 | }
|
|---|
| 2363 | node[shop=deli] {
|
|---|
| [10808] | 2364 | icon-image: "presets/shop/groceries/deli.svg";
|
|---|
| [7454] | 2365 | set icon_z17;
|
|---|
| [7041] | 2366 | }
|
|---|
| [15188] | 2367 | node[shop=doors] {
|
|---|
| 2368 | icon-image: "presets/shop/doors.svg";
|
|---|
| 2369 | set icon_z17;
|
|---|
| 2370 | }
|
|---|
| [7041] | 2371 | node[shop=electronics] {
|
|---|
| [10706] | 2372 | icon-image: "presets/shop/electronics.svg";
|
|---|
| [7454] | 2373 | set icon_z17;
|
|---|
| [7041] | 2374 | }
|
|---|
| 2375 | node[shop=erotic] {
|
|---|
| [10808] | 2376 | icon-image: "presets/shop/erotic.svg";
|
|---|
| [7454] | 2377 | set icon_z17;
|
|---|
| [7041] | 2378 | }
|
|---|
| 2379 | node[shop=furniture] {
|
|---|
| [10706] | 2380 | icon-image: "presets/shop/furniture.svg";
|
|---|
| [7454] | 2381 | set icon_z17;
|
|---|
| [7041] | 2382 | }
|
|---|
| 2383 | node[shop=fabric] {
|
|---|
| [10808] | 2384 | icon-image: "presets/shop/fabric.svg";
|
|---|
| [7454] | 2385 | set icon_z17;
|
|---|
| [7041] | 2386 | }
|
|---|
| 2387 | node[shop=florist] {
|
|---|
| [10706] | 2388 | icon-image: "presets/shop/florist.svg";
|
|---|
| [7454] | 2389 | set icon_z17;
|
|---|
| [7041] | 2390 | }
|
|---|
| 2391 | node[shop=frame] {
|
|---|
| [10808] | 2392 | icon-image: "presets/shop/frame.svg";
|
|---|
| [7454] | 2393 | set icon_z17;
|
|---|
| [7041] | 2394 | }
|
|---|
| [14575] | 2395 | node[shop=gas] {
|
|---|
| 2396 | icon-image: "presets/shop/gas.svg";
|
|---|
| 2397 | set icon_z17;
|
|---|
| 2398 | }
|
|---|
| [17561] | 2399 | node[shop=general] {
|
|---|
| 2400 | icon-image: "presets/shop/mall.svg";
|
|---|
| 2401 | set icon_z17;
|
|---|
| 2402 | }
|
|---|
| [7041] | 2403 | node[shop=gift] {
|
|---|
| [10706] | 2404 | icon-image: "presets/shop/present.svg";
|
|---|
| [7454] | 2405 | set icon_z17;
|
|---|
| [7041] | 2406 | }
|
|---|
| 2407 | node[shop=greengrocer] {
|
|---|
| [10808] | 2408 | icon-image: "presets/shop/groceries/greengrocer.svg";
|
|---|
| [7454] | 2409 | set icon_z17;
|
|---|
| [7041] | 2410 | }
|
|---|
| 2411 | node[shop=garden_centre] {
|
|---|
| [10706] | 2412 | icon-image: "presets/shop/garden_centre.svg";
|
|---|
| [7454] | 2413 | set icon_z17;
|
|---|
| [7041] | 2414 | }
|
|---|
| 2415 | node[shop=hairdresser] {
|
|---|
| [10706] | 2416 | icon-image: "presets/shop/hairdresser.svg";
|
|---|
| [7454] | 2417 | set icon_z17;
|
|---|
| [7041] | 2418 | }
|
|---|
| 2419 | node[shop=hardware] {
|
|---|
| [10808] | 2420 | icon-image: "presets/shop/hardware.svg";
|
|---|
| [7454] | 2421 | set icon_z17;
|
|---|
| [7041] | 2422 | }
|
|---|
| 2423 | node[shop=hearing_aids] {
|
|---|
| [10808] | 2424 | icon-image: "presets/shop/hearing_aids.svg";
|
|---|
| [7454] | 2425 | set icon_z17;
|
|---|
| [7041] | 2426 | }
|
|---|
| 2427 | node[shop=hifi] {
|
|---|
| [10565] | 2428 | icon-image: "presets/shop/hifi.svg";
|
|---|
| [7454] | 2429 | set icon_z17;
|
|---|
| [7041] | 2430 | }
|
|---|
| [9718] | 2431 | node[shop=houseware] {
|
|---|
| [10565] | 2432 | icon-image: "presets/shop/houseware.svg";
|
|---|
| [9718] | 2433 | set icon_z17;
|
|---|
| 2434 | }
|
|---|
| [16715] | 2435 | node[shop=pottery] {
|
|---|
| 2436 | icon-image: "presets/shop/pottery.svg";
|
|---|
| 2437 | set icon_z17;
|
|---|
| 2438 | }
|
|---|
| [7041] | 2439 | node[shop=jewelry] {
|
|---|
| [10706] | 2440 | icon-image: "presets/shop/jewelry.svg";
|
|---|
| [7454] | 2441 | set icon_z17;
|
|---|
| [7041] | 2442 | }
|
|---|
| 2443 | node[shop=kitchen] {
|
|---|
| [10808] | 2444 | icon-image: "presets/shop/kitchen.svg";
|
|---|
| [7454] | 2445 | set icon_z17;
|
|---|
| [7041] | 2446 | }
|
|---|
| 2447 | node[shop=mall] {
|
|---|
| [10706] | 2448 | icon-image: "presets/shop/mall.svg";
|
|---|
| [7454] | 2449 | set icon_z17;
|
|---|
| [7041] | 2450 | }
|
|---|
| [14874] | 2451 | node[shop=massage] {
|
|---|
| 2452 | icon-image: "presets/shop/massage.svg";
|
|---|
| 2453 | set icon_z17;
|
|---|
| 2454 | }
|
|---|
| [7041] | 2455 | node[shop=mobile_phone] {
|
|---|
| [10808] | 2456 | icon-image: "presets/shop/mobile_phone.svg";
|
|---|
| [7454] | 2457 | set icon_z17;
|
|---|
| [7041] | 2458 | }
|
|---|
| [15092] | 2459 | node[shop=watches] {
|
|---|
| 2460 | icon-image: "presets/shop/watches.svg";
|
|---|
| 2461 | set icon_z17;
|
|---|
| 2462 | }
|
|---|
| [7041] | 2463 | node[shop=motorcycle] {
|
|---|
| [10706] | 2464 | icon-image: "presets/vehicle/motorbike.svg";
|
|---|
| [7454] | 2465 | set icon_z17;
|
|---|
| [7041] | 2466 | }
|
|---|
| 2467 | node[shop=musical_instrument] {
|
|---|
| [10808] | 2468 | icon-image: "presets/shop/musical_instrument.svg";
|
|---|
| [7454] | 2469 | set icon_z17;
|
|---|
| [7041] | 2470 | }
|
|---|
| 2471 | node[shop=newsagent] {
|
|---|
| [10565] | 2472 | icon-image: "presets/shop/news.svg";
|
|---|
| [7454] | 2473 | set icon_z17;
|
|---|
| [7041] | 2474 | }
|
|---|
| 2475 | node[shop=optician] {
|
|---|
| [10565] | 2476 | icon-image: "presets/shop/optician.svg";
|
|---|
| [7454] | 2477 | set icon_z17;
|
|---|
| [7041] | 2478 | }
|
|---|
| [8053] | 2479 | node[shop=medical_supply] {
|
|---|
| [10565] | 2480 | icon-image: "presets/shop/medical_supply.svg";
|
|---|
| [8053] | 2481 | set icon_z17;
|
|---|
| 2482 | }
|
|---|
| [7041] | 2483 | node[shop=paint] {
|
|---|
| [10808] | 2484 | icon-image: "presets/shop/paint.svg";
|
|---|
| [7454] | 2485 | set icon_z17;
|
|---|
| [7041] | 2486 | }
|
|---|
| [15188] | 2487 | node[shop=party] {
|
|---|
| 2488 | icon-image: "presets/shop/party.svg";
|
|---|
| 2489 | set icon_z17;
|
|---|
| 2490 | }
|
|---|
| [7041] | 2491 | node[shop=pawnbroker] {
|
|---|
| [10706] | 2492 | icon-image: "presets/shop/pawnbroker.svg";
|
|---|
| [7454] | 2493 | set icon_z17;
|
|---|
| [7041] | 2494 | }
|
|---|
| 2495 | node[shop=seafood] {
|
|---|
| [10808] | 2496 | icon-image: "presets/shop/groceries/seafood.svg";
|
|---|
| [7454] | 2497 | set icon_z17;
|
|---|
| [7041] | 2498 | }
|
|---|
| [11346] | 2499 | node[shop=dairy] {
|
|---|
| 2500 | icon-image: "presets/shop/groceries/dairy.svg";
|
|---|
| 2501 | set icon_z17;
|
|---|
| 2502 | }
|
|---|
| [12083] | 2503 | node[shop=cheese] {
|
|---|
| 2504 | icon-image: "presets/shop/groceries/cheese.svg";
|
|---|
| 2505 | set icon_z17;
|
|---|
| 2506 | }
|
|---|
| [7041] | 2507 | node[shop=shoes] {
|
|---|
| [10706] | 2508 | icon-image: "presets/shop/shoes.svg";
|
|---|
| [7454] | 2509 | set icon_z17;
|
|---|
| [7041] | 2510 | }
|
|---|
| 2511 | node[shop=sports] {
|
|---|
| [10706] | 2512 | icon-image: "presets/sport/multi.svg";
|
|---|
| [7454] | 2513 | set icon_z17;
|
|---|
| [7041] | 2514 | }
|
|---|
| 2515 | node[shop=stationery] {
|
|---|
| [10808] | 2516 | icon-image: "presets/shop/stationery.svg";
|
|---|
| [7454] | 2517 | set icon_z17;
|
|---|
| [7041] | 2518 | }
|
|---|
| 2519 | node[shop=tailor] {
|
|---|
| [10706] | 2520 | icon-image: "presets/shop/tailor.svg";
|
|---|
| [7454] | 2521 | set icon_z17;
|
|---|
| [7041] | 2522 | }
|
|---|
| 2523 | node[shop=travel_agency] {
|
|---|
| [10808] | 2524 | icon-image: "presets/shop/travel_agency.svg";
|
|---|
| [7454] | 2525 | set icon_z17;
|
|---|
| [7041] | 2526 | }
|
|---|
| [15536] | 2527 | node[shop=scuba_diving] {
|
|---|
| 2528 | icon-image: "presets/shop/scuba_diving.svg";
|
|---|
| 2529 | set icon_z17;
|
|---|
| 2530 | }
|
|---|
| [17069] | 2531 | node[shop=fishing] {
|
|---|
| 2532 | icon-image: "presets/shop/fishing.svg";
|
|---|
| 2533 | set icon_z17;
|
|---|
| 2534 | }
|
|---|
| [7041] | 2535 | node[shop=toys] {
|
|---|
| [10706] | 2536 | icon-image: "presets/shop/toys.svg";
|
|---|
| [7454] | 2537 | set icon_z17;
|
|---|
| [7041] | 2538 | }
|
|---|
| 2539 | node[shop=vacuum_cleaner] {
|
|---|
| [10808] | 2540 | icon-image: "presets/shop/vacuum_cleaner.svg";
|
|---|
| [7454] | 2541 | set icon_z17;
|
|---|
| [7041] | 2542 | }
|
|---|
| 2543 | node[shop=variety_store] {
|
|---|
| [10808] | 2544 | icon-image: "presets/shop/variety_store.svg";
|
|---|
| [7454] | 2545 | set icon_z17;
|
|---|
| [7041] | 2546 | }
|
|---|
| [12612] | 2547 | node[shop=charity] {
|
|---|
| 2548 | icon-image: "presets/shop/charity.svg";
|
|---|
| 2549 | set icon_z17;
|
|---|
| 2550 | }
|
|---|
| [16930] | 2551 | node[shop=second_hand] {
|
|---|
| 2552 | icon-image: "presets/shop/second_hand.svg";
|
|---|
| 2553 | set icon_z17;
|
|---|
| 2554 | }
|
|---|
| [7041] | 2555 | node[shop=video] {
|
|---|
| [10808] | 2556 | icon-image: "presets/shop/video.svg";
|
|---|
| [7454] | 2557 | set icon_z17;
|
|---|
| [7041] | 2558 | }
|
|---|
| 2559 | node[shop=bookmaker] {
|
|---|
| [10706] | 2560 | icon-image: "presets/shop/lottery.svg";
|
|---|
| [7454] | 2561 | set icon_z17;
|
|---|
| [7041] | 2562 | }
|
|---|
| 2563 | node[shop=lottery] {
|
|---|
| [10706] | 2564 | icon-image: "presets/shop/lottery.svg";
|
|---|
| [7454] | 2565 | set icon_z17;
|
|---|
| [7041] | 2566 | }
|
|---|
| [7296] | 2567 | node[shop=pet] {
|
|---|
| [10565] | 2568 | icon-image: "presets/shop/pet.svg";
|
|---|
| [7454] | 2569 | set icon_z17;
|
|---|
| [7296] | 2570 | }
|
|---|
| [15434] | 2571 | node[shop=pet_grooming] {
|
|---|
| 2572 | icon-image: "presets/shop/pet_grooming.svg";
|
|---|
| 2573 | set icon_z17;
|
|---|
| 2574 | }
|
|---|
| [8868] | 2575 | node[shop=photo] {
|
|---|
| [10565] | 2576 | icon-image: "presets/shop/photo.svg";
|
|---|
| [8868] | 2577 | set icon_z17;
|
|---|
| 2578 | }
|
|---|
| [7296] | 2579 | node[shop=ticket] {
|
|---|
| [10565] | 2580 | icon-image: "presets/shop/ticket.svg";
|
|---|
| [7454] | 2581 | set icon_z17;
|
|---|
| [7296] | 2582 | }
|
|---|
| [14959] | 2583 | node[shop=carpet] {
|
|---|
| 2584 | icon-image: "presets/shop/carpet.svg";
|
|---|
| 2585 | set icon_z17;
|
|---|
| 2586 | }
|
|---|
| [7296] | 2587 | node[shop=interior_decoration] {
|
|---|
| [10565] | 2588 | icon-image: "presets/shop/interior_decoration.svg";
|
|---|
| [7454] | 2589 | set icon_z17;
|
|---|
| [7296] | 2590 | }
|
|---|
| 2591 | node[shop=car_parts] {
|
|---|
| [10565] | 2592 | icon-image: "presets/vehicle/car_parts.svg";
|
|---|
| [7454] | 2593 | set icon_z17;
|
|---|
| [7296] | 2594 | }
|
|---|
| 2595 | node[shop=video_games] {
|
|---|
| [10808] | 2596 | icon-image: "presets/shop/video_games.svg";
|
|---|
| [7454] | 2597 | set icon_z17;
|
|---|
| [7296] | 2598 | }
|
|---|
| 2599 | node[shop=bed] {
|
|---|
| [10565] | 2600 | icon-image: "presets/shop/bed.svg";
|
|---|
| [7454] | 2601 | set icon_z17;
|
|---|
| [7296] | 2602 | }
|
|---|
| 2603 | node[shop=beauty] {
|
|---|
| [10565] | 2604 | icon-image: "presets/shop/beauty.svg";
|
|---|
| [7454] | 2605 | set icon_z17;
|
|---|
| [7296] | 2606 | }
|
|---|
| [9550] | 2607 | node[shop=cosmetics] {
|
|---|
| [10565] | 2608 | icon-image: "presets/shop/cosmetics.svg";
|
|---|
| [9550] | 2609 | set icon_z17;
|
|---|
| 2610 | }
|
|---|
| 2611 | node[shop=perfumery] {
|
|---|
| [10565] | 2612 | icon-image: "presets/shop/perfumery.svg";
|
|---|
| [9550] | 2613 | set icon_z17;
|
|---|
| 2614 | }
|
|---|
| [17071] | 2615 | node[shop=herbalist] {
|
|---|
| 2616 | icon-image: "presets/shop/groceries/herbalist.svg";
|
|---|
| 2617 | set icon_z17;
|
|---|
| 2618 | }
|
|---|
| [7296] | 2619 | node[shop=tea] {
|
|---|
| [10565] | 2620 | icon-image: "presets/shop/groceries/tea.svg";
|
|---|
| [7454] | 2621 | set icon_z17;
|
|---|
| [7296] | 2622 | }
|
|---|
| 2623 | node[shop=coffee] {
|
|---|
| [10565] | 2624 | icon-image: "presets/shop/groceries/coffee.svg";
|
|---|
| [7454] | 2625 | set icon_z17;
|
|---|
| [7296] | 2626 | }
|
|---|
| [17124] | 2627 | node[shop=frozen_food] {
|
|---|
| 2628 | icon-image: "presets/shop/groceries/frozen_food.svg";
|
|---|
| 2629 | set icon_z17;
|
|---|
| 2630 | }
|
|---|
| [7600] | 2631 | node[shop=antiques] {
|
|---|
| [10565] | 2632 | icon-image: "presets/shop/antique.svg";
|
|---|
| [7600] | 2633 | set icon_z17;
|
|---|
| 2634 | }
|
|---|
| [17072] | 2635 | node[shop=swimming_pool] {
|
|---|
| 2636 | icon-image: "presets/shop/swimming_pool.svg";
|
|---|
| 2637 | set icon_z17;
|
|---|
| 2638 | }
|
|---|
| [16265] | 2639 | node[shop=storage_rental] {
|
|---|
| 2640 | icon-image: "presets/shop/storage_rental.svg";
|
|---|
| 2641 | set icon_z17;
|
|---|
| 2642 | }
|
|---|
| [7685] | 2643 | node[shop=music] {
|
|---|
| [10565] | 2644 | icon-image: "presets/shop/music.svg";
|
|---|
| [7685] | 2645 | set icon_z17;
|
|---|
| 2646 | }
|
|---|
| [15528] | 2647 | node[shop=weapons] {
|
|---|
| 2648 | icon-image: "presets/shop/weapons.svg";
|
|---|
| 2649 | set icon_z17;
|
|---|
| 2650 | }
|
|---|
| [7686] | 2651 | node[shop=funeral_directors] {
|
|---|
| [10565] | 2652 | icon-image: "presets/shop/funeral_directors.svg";
|
|---|
| [7686] | 2653 | set icon_z17;
|
|---|
| 2654 | }
|
|---|
| 2655 | node[shop=wine] {
|
|---|
| [10565] | 2656 | icon-image: "presets/shop/wine.svg";
|
|---|
| [7686] | 2657 | set icon_z17;
|
|---|
| 2658 | }
|
|---|
| [7705] | 2659 | node[shop=farm] {
|
|---|
| [10808] | 2660 | icon-image: "presets/shop/groceries/farm.svg";
|
|---|
| [7705] | 2661 | set icon_z17;
|
|---|
| 2662 | }
|
|---|
| 2663 | node[shop=tattoo] {
|
|---|
| [10565] | 2664 | icon-image: "presets/shop/tattoo.svg";
|
|---|
| [7705] | 2665 | set icon_z17;
|
|---|
| 2666 | }
|
|---|
| 2667 | node[shop=art] {
|
|---|
| [10565] | 2668 | icon-image: "presets/shop/art.svg";
|
|---|
| [7705] | 2669 | set icon_z17;
|
|---|
| 2670 | }
|
|---|
| [16714] | 2671 | node[shop=lighting] {
|
|---|
| 2672 | icon-image: "presets/shop/lighting.svg";
|
|---|
| 2673 | set icon_z17;
|
|---|
| 2674 | }
|
|---|
| 2675 | node[shop=security] {
|
|---|
| 2676 | icon-image: "presets/shop/security.svg";
|
|---|
| 2677 | set icon_z17;
|
|---|
| 2678 | }
|
|---|
| 2679 | node[shop=wholesale] {
|
|---|
| 2680 | icon-image: "presets/shop/wholesale.svg";
|
|---|
| 2681 | set icon_z17;
|
|---|
| 2682 | }
|
|---|
| 2683 | node[shop=trade] {
|
|---|
| 2684 | icon-image: "presets/shop/trade.svg";
|
|---|
| 2685 | set icon_z17;
|
|---|
| 2686 | }
|
|---|
| [7296] | 2687 | node[shop=bag] {
|
|---|
| [10565] | 2688 | icon-image: "presets/shop/bag.svg";
|
|---|
| [7454] | 2689 | set icon_z17;
|
|---|
| [7296] | 2690 | }
|
|---|
| [7041] | 2691 |
|
|---|
| [9523] | 2692 | /******************/
|
|---|
| 2693 | /* emergency tags */
|
|---|
| 2694 | /******************/
|
|---|
| 2695 | area[emergency=ambulance_station],
|
|---|
| 2696 | area[emergency=water_tank] {
|
|---|
| 2697 | fill-color: emergency#eeeeee;
|
|---|
| 2698 | }
|
|---|
| 2699 | node[emergency=ambulance_station] {
|
|---|
| [10565] | 2700 | icon-image: "presets/emergency/ambulance_station.svg";
|
|---|
| [9523] | 2701 | set icon_z17;
|
|---|
| 2702 | }
|
|---|
| 2703 | node[emergency=water_tank] {
|
|---|
| [10565] | 2704 | icon-image: "presets/emergency/water_tank.svg";
|
|---|
| [9523] | 2705 | set icon_z17;
|
|---|
| 2706 | }
|
|---|
| [17027] | 2707 | node[emergency=suction_point] {
|
|---|
| 2708 | icon-image: "presets/emergency/suction_point.svg";
|
|---|
| 2709 | set icon_z17;
|
|---|
| 2710 | }
|
|---|
| [15308] | 2711 | node[emergency=emergency_ward_entrance] {
|
|---|
| 2712 | icon-image: "presets/emergency/emergency_ward_entrance.svg";
|
|---|
| 2713 | set icon_z17;
|
|---|
| 2714 | }
|
|---|
| [9523] | 2715 | node[emergency=phone] {
|
|---|
| [10706] | 2716 | icon-image: "presets/vehicle/emergency_phone.svg";
|
|---|
| [9523] | 2717 | set icon_z17;
|
|---|
| 2718 | }
|
|---|
| 2719 | node[emergency=defibrillator] {
|
|---|
| [10706] | 2720 | icon-image: "presets/emergency/aed.svg";
|
|---|
| [9523] | 2721 | set icon_z17;
|
|---|
| 2722 | }
|
|---|
| 2723 | node[emergency=fire_hydrant] {
|
|---|
| [10706] | 2724 | icon-image: "presets/service/fire_hydrant.svg";
|
|---|
| [9523] | 2725 | set icon_z17;
|
|---|
| 2726 | }
|
|---|
| 2727 | node[emergency=fire_extinguisher] {
|
|---|
| [10565] | 2728 | icon-image: "presets/emergency/fire_extinguisher.svg";
|
|---|
| [9523] | 2729 | set icon_z17;
|
|---|
| 2730 | }
|
|---|
| 2731 | node[emergency=fire_hose] {
|
|---|
| [10565] | 2732 | icon-image: "presets/emergency/fire_hose.svg";
|
|---|
| [9523] | 2733 | set icon_z17;
|
|---|
| 2734 | }
|
|---|
| 2735 | node[emergency=assembly_point] {
|
|---|
| [10565] | 2736 | icon-image: "presets/emergency/assembly_point.svg";
|
|---|
| [9523] | 2737 | set icon_z17;
|
|---|
| 2738 | }
|
|---|
| 2739 | node[emergency=siren] {
|
|---|
| [10565] | 2740 | icon-image: "presets/emergency/siren.svg";
|
|---|
| [9523] | 2741 | set icon_z17;
|
|---|
| 2742 | }
|
|---|
| 2743 |
|
|---|
| [7041] | 2744 | /****************/
|
|---|
| [15307] | 2745 | /* police tags */
|
|---|
| 2746 | /****************/
|
|---|
| 2747 |
|
|---|
| 2748 | area[police=barracks],
|
|---|
| 2749 | area[police=car_pound],
|
|---|
| 2750 | area[police=checkpoint],
|
|---|
| 2751 | area[police=detention],
|
|---|
| 2752 | area[police=naval_base],
|
|---|
| 2753 | area[police=offices],
|
|---|
| 2754 | area[police=range],
|
|---|
| 2755 | area[police=storage],
|
|---|
| 2756 | area[police=training_area],
|
|---|
| 2757 | area[police=yes] {
|
|---|
| 2758 | fill-color: police#ecba52;
|
|---|
| 2759 | }
|
|---|
| 2760 | node[police=barracks],
|
|---|
| 2761 | node[police=car_pound],
|
|---|
| 2762 | node[police=checkpoint],
|
|---|
| 2763 | node[police=detention],
|
|---|
| 2764 | node[police=naval_base],
|
|---|
| 2765 | node[police=offices],
|
|---|
| 2766 | node[police=range],
|
|---|
| 2767 | node[police=storage],
|
|---|
| 2768 | node[police=training_node],
|
|---|
| 2769 | node[police=yes] {
|
|---|
| 2770 | icon-image: "presets/service/police_non_public.svg";
|
|---|
| 2771 | set icon_z17;
|
|---|
| 2772 | }
|
|---|
| 2773 |
|
|---|
| [16496] | 2774 | /*******************/
|
|---|
| 2775 | /* healthcare tags */
|
|---|
| 2776 | /*******************/
|
|---|
| 2777 |
|
|---|
| 2778 | area[healthcare=laboratory] {
|
|---|
| 2779 | fill-color: healthcare#3771c8;
|
|---|
| 2780 | }
|
|---|
| 2781 | node[healthcare=laboratory] {
|
|---|
| 2782 | icon-image: "presets/health/laboratory.svg";
|
|---|
| 2783 | set icon_z17;
|
|---|
| 2784 | }
|
|---|
| 2785 |
|
|---|
| [15307] | 2786 | /****************/
|
|---|
| [7041] | 2787 | /* amenity tags */
|
|---|
| 2788 | /****************/
|
|---|
| 2789 |
|
|---|
| 2790 | area[amenity=pub],
|
|---|
| 2791 | area[amenity=biergarten],
|
|---|
| 2792 | area[amenity=nightclub],
|
|---|
| [16480] | 2793 | area[amenity=gambling],
|
|---|
| [7041] | 2794 | area[amenity=stripclub],
|
|---|
| [8501] | 2795 | area[amenity=casino],
|
|---|
| [7041] | 2796 | area[amenity=brothel],
|
|---|
| 2797 | area[amenity=cafe],
|
|---|
| 2798 | area[amenity=restaurant],
|
|---|
| 2799 | area[amenity=food_court],
|
|---|
| 2800 | area[amenity=fast_food],
|
|---|
| 2801 | area[amenity=bar],
|
|---|
| 2802 | area[amenity=ice_cream] {
|
|---|
| 2803 | fill-color: amenity#ecba52;
|
|---|
| 2804 | }
|
|---|
| 2805 | node[amenity=pub] {
|
|---|
| [10808] | 2806 | icon-image: "presets/food/pub.svg";
|
|---|
| [7454] | 2807 | set icon_z17;
|
|---|
| [7041] | 2808 | }
|
|---|
| 2809 | node[amenity=biergarten] {
|
|---|
| [10808] | 2810 | icon-image: "presets/food/biergarten.svg";
|
|---|
| [7454] | 2811 | set icon_z17;
|
|---|
| [7041] | 2812 | }
|
|---|
| 2813 | node[amenity=nightclub] {
|
|---|
| [10808] | 2814 | icon-image: "presets/leisure/nightclub.svg";
|
|---|
| [7454] | 2815 | set icon_z17;
|
|---|
| [7041] | 2816 | }
|
|---|
| [16480] | 2817 | node[amenity=gambling] {
|
|---|
| 2818 | icon-image: "presets/leisure/gambling.svg";
|
|---|
| 2819 | set icon_z17;
|
|---|
| 2820 | }
|
|---|
| [7041] | 2821 | node[amenity=stripclub] {
|
|---|
| [10808] | 2822 | icon-image: "presets/leisure/stripclub.svg";
|
|---|
| [7454] | 2823 | set icon_z17;
|
|---|
| [7041] | 2824 | }
|
|---|
| [8501] | 2825 | node[amenity=casino] {
|
|---|
| [10565] | 2826 | icon-image: "presets/leisure/casino.svg";
|
|---|
| [8501] | 2827 | set icon_z17;
|
|---|
| 2828 | }
|
|---|
| [7041] | 2829 | node[amenity=brothel] {
|
|---|
| [10808] | 2830 | icon-image: "presets/leisure/brothel.svg";
|
|---|
| [7454] | 2831 | set icon_z17;
|
|---|
| [7041] | 2832 | }
|
|---|
| 2833 | node[amenity=cafe] {
|
|---|
| [10808] | 2834 | icon-image: "presets/food/cafe.svg";
|
|---|
| [7454] | 2835 | set icon_z17;
|
|---|
| [7041] | 2836 | }
|
|---|
| [8434] | 2837 | node[amenity=restaurant] {
|
|---|
| [10565] | 2838 | icon-image: "presets/food/restaurant.svg";
|
|---|
| [8434] | 2839 | set icon_z17;
|
|---|
| 2840 | }
|
|---|
| [7041] | 2841 | node[amenity=food_court] {
|
|---|
| [10808] | 2842 | icon-image: "presets/food/food_court.svg";
|
|---|
| [7454] | 2843 | set icon_z17;
|
|---|
| [7041] | 2844 | }
|
|---|
| 2845 | node[amenity=fast_food] {
|
|---|
| [10808] | 2846 | icon-image: "presets/food/fast_food.svg";
|
|---|
| [7454] | 2847 | set icon_z17;
|
|---|
| [7041] | 2848 | }
|
|---|
| 2849 | node[amenity=bar] {
|
|---|
| [10706] | 2850 | icon-image: "presets/food/bar.svg";
|
|---|
| [7454] | 2851 | set icon_z17;
|
|---|
| [7041] | 2852 | }
|
|---|
| 2853 | node[amenity=ice_cream] {
|
|---|
| [10808] | 2854 | icon-image: "presets/food/ice_cream.svg";
|
|---|
| [7454] | 2855 | set icon_z17;
|
|---|
| [7041] | 2856 | }
|
|---|
| [8667] | 2857 | area[amenity=bicycle_parking]:closed {
|
|---|
| 2858 | fill-color: amenity_traffic#f7efb7;
|
|---|
| 2859 | }
|
|---|
| [8362] | 2860 | way[amenity=bicycle_parking] {
|
|---|
| 2861 | width: 2;
|
|---|
| 2862 | color: amenity_traffic#f7efb7;
|
|---|
| 2863 | }
|
|---|
| [13979] | 2864 | area[amenity=parking_space] {
|
|---|
| 2865 | fill-color: parking_space#f7efb8;
|
|---|
| 2866 | }
|
|---|
| [7041] | 2867 | area[amenity=parking],
|
|---|
| 2868 | area[amenity=motorcycle_parking],
|
|---|
| 2869 | area[amenity=bicycle_rental],
|
|---|
| [7928] | 2870 | area[amenity=bicycle_repair_station],
|
|---|
| [7041] | 2871 | area[amenity=car_rental],
|
|---|
| [15302] | 2872 | area[amenity=car_pooling],
|
|---|
| [7041] | 2873 | area[amenity=car_sharing],
|
|---|
| 2874 | area[amenity=car_wash],
|
|---|
| 2875 | area[amenity=taxi],
|
|---|
| [7977] | 2876 | area[amenity=fuel] {
|
|---|
| [7041] | 2877 | fill-color: amenity_traffic#f7efb7;
|
|---|
| 2878 | }
|
|---|
| 2879 | node[amenity=parking_space] {
|
|---|
| [10565] | 2880 | icon-image: "presets/vehicle/parking/parking_space.svg";
|
|---|
| [7454] | 2881 | set icon_z17;
|
|---|
| [7763] | 2882 | }
|
|---|
| 2883 | node[amenity=parking] {
|
|---|
| [10706] | 2884 | icon-image: "presets/vehicle/parking/parking.svg";
|
|---|
| [7454] | 2885 | set icon_z17;
|
|---|
| [7041] | 2886 | }
|
|---|
| [7766] | 2887 | node[amenity=parking_entrance] {
|
|---|
| [10706] | 2888 | icon-image: "presets/vehicle/parking/parking.svg";
|
|---|
| [7766] | 2889 | set icon_z17;
|
|---|
| 2890 | }
|
|---|
| 2891 | node[amenity=parking_entrance][parking=multi-storey],
|
|---|
| [7763] | 2892 | node[amenity=parking][parking=multi-storey] {
|
|---|
| [10706] | 2893 | icon-image: "presets/vehicle/parking/multi-storey.svg";
|
|---|
| [7454] | 2894 | set icon_z17;
|
|---|
| [7041] | 2895 | }
|
|---|
| [7766] | 2896 | node[amenity=parking_entrance][parking=underground],
|
|---|
| [7763] | 2897 | node[amenity=parking][parking=underground] {
|
|---|
| [10706] | 2898 | icon-image: "presets/vehicle/parking/underground.svg";
|
|---|
| [7763] | 2899 | set icon_z17;
|
|---|
| 2900 | }
|
|---|
| [7041] | 2901 | node[amenity=motorcycle_parking] {
|
|---|
| [10706] | 2902 | icon-image: "presets/vehicle/parking/motorbike.svg";
|
|---|
| [7454] | 2903 | set icon_z17;
|
|---|
| [7041] | 2904 | }
|
|---|
| 2905 | node[amenity=bicycle_parking] {
|
|---|
| [10706] | 2906 | icon-image: "presets/vehicle/parking/bicycle.svg";
|
|---|
| [7454] | 2907 | set icon_z17;
|
|---|
| [7041] | 2908 | }
|
|---|
| [7635] | 2909 | node[park_ride][park_ride!=no] {
|
|---|
| [10565] | 2910 | icon-image: "presets/vehicle/parking/park_ride.svg";
|
|---|
| [7454] | 2911 | set icon_z17;
|
|---|
| [7041] | 2912 | }
|
|---|
| 2913 | node[amenity=parking_space][wheelchair?] {
|
|---|
| [10706] | 2914 | icon-image: "presets/vehicle/parking/handicapped.svg";
|
|---|
| [7454] | 2915 | set icon_z17;
|
|---|
| [7041] | 2916 | }
|
|---|
| 2917 | node[amenity=bicycle_rental] {
|
|---|
| [10706] | 2918 | icon-image: "presets/vehicle/bicycle_rental.svg";
|
|---|
| [7454] | 2919 | set icon_z17;
|
|---|
| [7041] | 2920 | }
|
|---|
| [7928] | 2921 | node[amenity=bicycle_repair_station] {
|
|---|
| [10565] | 2922 | icon-image: "presets/vehicle/bicycle_repair_station.svg";
|
|---|
| [7928] | 2923 | set icon_z17;
|
|---|
| 2924 | }
|
|---|
| [7041] | 2925 | node[amenity=car_rental] {
|
|---|
| [10706] | 2926 | icon-image: "presets/vehicle/car_rental.svg";
|
|---|
| [7454] | 2927 | set icon_z17;
|
|---|
| [7041] | 2928 | }
|
|---|
| [15302] | 2929 | node[amenity=car_pooling] {
|
|---|
| 2930 | icon-image: "presets/vehicle/car_pooling.svg";
|
|---|
| 2931 | set icon_z17;
|
|---|
| 2932 | }
|
|---|
| [7041] | 2933 | node[amenity=car_sharing] {
|
|---|
| [10706] | 2934 | icon-image: "presets/vehicle/car_sharing.svg";
|
|---|
| [7454] | 2935 | set icon_z17;
|
|---|
| [7041] | 2936 | }
|
|---|
| 2937 | node[amenity=car_wash] {
|
|---|
| [10706] | 2938 | icon-image: "presets/vehicle/car_wash.svg";
|
|---|
| [7454] | 2939 | set icon_z17;
|
|---|
| [7041] | 2940 | }
|
|---|
| 2941 | node[amenity=taxi] {
|
|---|
| [10706] | 2942 | icon-image: "presets/transport/taxi.svg";
|
|---|
| [7454] | 2943 | set icon_z17;
|
|---|
| [7041] | 2944 | }
|
|---|
| 2945 | node[amenity=fuel] {
|
|---|
| [10706] | 2946 | icon-image: "presets/vehicle/fuel.svg";
|
|---|
| [7454] | 2947 | set icon_z17;
|
|---|
| [7041] | 2948 | }
|
|---|
| 2949 | node[amenity=charging_station] {
|
|---|
| [10808] | 2950 | icon-image: "presets/vehicle/charging_station.svg";
|
|---|
| [7454] | 2951 | set icon_z17;
|
|---|
| [7041] | 2952 | }
|
|---|
| 2953 | node[amenity=grit_bin] {
|
|---|
| [10565] | 2954 | icon-image: "presets/misc/grit_bin.svg";
|
|---|
| [7454] | 2955 | set icon_z17;
|
|---|
| [7041] | 2956 | }
|
|---|
| 2957 | node[amenity=telephone] {
|
|---|
| [10706] | 2958 | icon-image: "presets/service/telephone.svg";
|
|---|
| [7454] | 2959 | set icon_z17;
|
|---|
| [7041] | 2960 | }
|
|---|
| 2961 | node[amenity=clock] {
|
|---|
| [10565] | 2962 | icon-image: "presets/service/clock.svg";
|
|---|
| [7454] | 2963 | set icon_z17;
|
|---|
| [7041] | 2964 | }
|
|---|
| [11583] | 2965 | node[amenity=photo_booth] {
|
|---|
| 2966 | icon-image: "presets/service/photo_booth.svg";
|
|---|
| 2967 | set icon_z17;
|
|---|
| 2968 | }
|
|---|
| [7041] | 2969 | area[amenity=toilets],
|
|---|
| [7598] | 2970 | area[amenity=shower],
|
|---|
| [11585] | 2971 | area[amenity=internet_cafe],
|
|---|
| [8190] | 2972 | area[amenity=recycling],
|
|---|
| 2973 | area[amenity=sanitary_dump_station] {
|
|---|
| [7041] | 2974 | fill-color: amenity_light#f7efb7;
|
|---|
| 2975 | }
|
|---|
| 2976 | node[amenity=toilets] {
|
|---|
| [10706] | 2977 | icon-image: "presets/service/toilets.svg";
|
|---|
| [7454] | 2978 | set icon_z17;
|
|---|
| [7041] | 2979 | }
|
|---|
| [7598] | 2980 | node[amenity=shower] {
|
|---|
| [10565] | 2981 | icon-image: "presets/service/shower.svg";
|
|---|
| [10013] | 2982 | set icon_z17;
|
|---|
| [7598] | 2983 | }
|
|---|
| [11585] | 2984 | node[amenity=internet_cafe] {
|
|---|
| 2985 | icon-image: "presets/service/internet_cafe.svg";
|
|---|
| 2986 | set icon_z17;
|
|---|
| 2987 | }
|
|---|
| [7041] | 2988 | node[amenity=recycling] {
|
|---|
| [10565] | 2989 | icon-image: "presets/service/recycling/recycling.svg";
|
|---|
| [7454] | 2990 | set icon_z17;
|
|---|
| [7041] | 2991 | }
|
|---|
| [8411] | 2992 | node[amenity=recycling][recycling_type=container] {
|
|---|
| [10565] | 2993 | icon-image: "presets/service/recycling/recycling_container.svg";
|
|---|
| [8411] | 2994 | }
|
|---|
| 2995 | node[amenity=recycling][recycling_type=centre] {
|
|---|
| [10565] | 2996 | icon-image: "presets/service/recycling/recycling_centre.svg";
|
|---|
| [8411] | 2997 | }
|
|---|
| [7041] | 2998 | node[amenity=waste_basket] {
|
|---|
| [10810] | 2999 | icon-image: "presets/service/recycling/waste_basket.svg";
|
|---|
| [7454] | 3000 | set icon_z17;
|
|---|
| [7041] | 3001 | }
|
|---|
| 3002 | node[amenity=waste_disposal] {
|
|---|
| [10814] | 3003 | icon-image: "presets/service/recycling/waste_disposal.svg";
|
|---|
| [7454] | 3004 | set icon_z17;
|
|---|
| [7041] | 3005 | }
|
|---|
| [8190] | 3006 | node[amenity=sanitary_dump_station] {
|
|---|
| [10565] | 3007 | icon-image: "presets/service/recycling/sanitary_dump_station.svg";
|
|---|
| [8190] | 3008 | set icon_z17;
|
|---|
| 3009 | }
|
|---|
| [7041] | 3010 | area[amenity=townhall],
|
|---|
| 3011 | area[amenity=community_centre] {
|
|---|
| 3012 | fill-color: amenity_light#f7efb7;
|
|---|
| 3013 | }
|
|---|
| [7927] | 3014 | node[amenity=townhall] {
|
|---|
| [10808] | 3015 | icon-image: "presets/service/townhall.svg";
|
|---|
| [7927] | 3016 | set icon_z17;
|
|---|
| 3017 | }
|
|---|
| [7041] | 3018 | node[amenity=community_centre] {
|
|---|
| [10808] | 3019 | icon-image: "presets/service/community_centre.svg";
|
|---|
| [7454] | 3020 | set icon_z17;
|
|---|
| [7041] | 3021 | }
|
|---|
| [7737] | 3022 | area[amenity=water_point],
|
|---|
| [7041] | 3023 | area[amenity=fountain] {
|
|---|
| 3024 | fill-color: light_water#00005f;
|
|---|
| 3025 | }
|
|---|
| 3026 | node[amenity=drinking_water] {
|
|---|
| [10808] | 3027 | icon-image: "presets/food/drinking_water.svg";
|
|---|
| [7454] | 3028 | set icon_z17;
|
|---|
| [7041] | 3029 | }
|
|---|
| [7737] | 3030 | node[amenity=water_point] {
|
|---|
| [10706] | 3031 | icon-image: "presets/accommodation/water.svg";
|
|---|
| [7737] | 3032 | set icon_z17;
|
|---|
| 3033 | }
|
|---|
| [7041] | 3034 | node[amenity=fountain] {
|
|---|
| [10808] | 3035 | icon-image: "presets/misc/fountain.svg";
|
|---|
| [7454] | 3036 | set icon_z17;
|
|---|
| [7041] | 3037 | }
|
|---|
| [17142] | 3038 | area[amenity=animal_boarding],
|
|---|
| [7041] | 3039 | area[amenity=place_of_worship],
|
|---|
| [17064] | 3040 | area[amenity=monastery],
|
|---|
| [7041] | 3041 | area[amenity=grave_yard],
|
|---|
| 3042 | area[amenity=crematorium],
|
|---|
| 3043 | area[amenity=post_office],
|
|---|
| 3044 | area[amenity=studio],
|
|---|
| [15697] | 3045 | area[landuse=school],
|
|---|
| [7041] | 3046 | area[amenity=school],
|
|---|
| 3047 | area[amenity=university],
|
|---|
| 3048 | area[amenity=college],
|
|---|
| 3049 | area[amenity=kindergarten],
|
|---|
| [17068] | 3050 | area[amenity=language_school],
|
|---|
| [7041] | 3051 | area[amenity=driving_school] {
|
|---|
| 3052 | fill-color: amenity_light#f7efb7;
|
|---|
| 3053 | }
|
|---|
| [17142] | 3054 | node[amenity=animal_boarding] {
|
|---|
| 3055 | icon-image: "presets/accommodation/animal_boarding.svg";
|
|---|
| 3056 | set icon_z17;
|
|---|
| 3057 | }
|
|---|
| [7041] | 3058 | node[amenity=place_of_worship] {
|
|---|
| [10706] | 3059 | icon-image: "presets/religion/religion.svg";
|
|---|
| [7454] | 3060 | set icon_z17;
|
|---|
| [7041] | 3061 | }
|
|---|
| [7359] | 3062 | node[amenity=place_of_worship][religion=bahai] {
|
|---|
| [10706] | 3063 | icon-image: "presets/religion/bahai.svg";
|
|---|
| [7454] | 3064 | set icon_z17;
|
|---|
| [7041] | 3065 | }
|
|---|
| [7359] | 3066 | node[amenity=place_of_worship][religion=buddhist] {
|
|---|
| [10706] | 3067 | icon-image: "presets/religion/buddhism.svg";
|
|---|
| [7454] | 3068 | set icon_z17;
|
|---|
| [7041] | 3069 | }
|
|---|
| [14867] | 3070 | node[amenity=place_of_worship][religion=caodaism][!is_prop_set(icon-image)] {
|
|---|
| 3071 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| 3072 | set icon_z17;
|
|---|
| 3073 | }
|
|---|
| [7359] | 3074 | node[amenity=place_of_worship][religion=christian] {
|
|---|
| [10706] | 3075 | icon-image: "presets/religion/church.svg";
|
|---|
| [7454] | 3076 | set icon_z17;
|
|---|
| [7041] | 3077 | }
|
|---|
| [14867] | 3078 | node[amenity=place_of_worship][religion=confucian] {
|
|---|
| 3079 | icon-image: "presets/religion/confucian.svg";
|
|---|
| 3080 | set icon_z17;
|
|---|
| 3081 | }
|
|---|
| [7359] | 3082 | node[amenity=place_of_worship][religion=hindu] {
|
|---|
| [10706] | 3083 | icon-image: "presets/religion/hinduism.svg";
|
|---|
| [7454] | 3084 | set icon_z17;
|
|---|
| [7041] | 3085 | }
|
|---|
| [7359] | 3086 | node[amenity=place_of_worship][religion=jain] {
|
|---|
| [10706] | 3087 | icon-image: "presets/religion/jainism.svg";
|
|---|
| [7454] | 3088 | set icon_z17;
|
|---|
| [7041] | 3089 | }
|
|---|
| [7359] | 3090 | node[amenity=place_of_worship][religion=jewish] {
|
|---|
| [10706] | 3091 | icon-image: "presets/religion/jewish.svg";
|
|---|
| [7454] | 3092 | set icon_z17;
|
|---|
| [7041] | 3093 | }
|
|---|
| [7359] | 3094 | node[amenity=place_of_worship][religion=muslim] {
|
|---|
| [10706] | 3095 | icon-image: "presets/religion/muslim.svg";
|
|---|
| [7454] | 3096 | set icon_z17;
|
|---|
| [7041] | 3097 | }
|
|---|
| [14867] | 3098 | node[amenity=place_of_worship][religion=shinto] {
|
|---|
| 3099 | icon-image: "presets/religion/shinto.svg";
|
|---|
| 3100 | set icon_z17;
|
|---|
| 3101 | }
|
|---|
| [7359] | 3102 | node[amenity=place_of_worship][religion=sikh] {
|
|---|
| [10706] | 3103 | icon-image: "presets/religion/sikhism.svg";
|
|---|
| [7454] | 3104 | set icon_z17;
|
|---|
| [7041] | 3105 | }
|
|---|
| [9892] | 3106 | node[amenity=place_of_worship][religion=spiritualist][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 3107 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 3108 | set icon_z17;
|
|---|
| [7041] | 3109 | }
|
|---|
| [7359] | 3110 | node[amenity=place_of_worship][religion=taoist] {
|
|---|
| [10706] | 3111 | icon-image: "presets/religion/taoism.svg";
|
|---|
| [7454] | 3112 | set icon_z17;
|
|---|
| [7041] | 3113 | }
|
|---|
| [14867] | 3114 | node[amenity=place_of_worship][religion=tenrikyo] {
|
|---|
| 3115 | icon-image: "presets/religion/tenrikyo.svg";
|
|---|
| 3116 | set icon_z17;
|
|---|
| 3117 | }
|
|---|
| 3118 | node[amenity=place_of_worship][religion=unitarian_universalist][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 3119 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 3120 | set icon_z17;
|
|---|
| [7041] | 3121 | }
|
|---|
| [9892] | 3122 | node[amenity=place_of_worship][religion=zoroastrian][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 3123 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 3124 | set icon_z17;
|
|---|
| [7041] | 3125 | }
|
|---|
| [17064] | 3126 | node[amenity=monastery] {
|
|---|
| 3127 | icon-image: "presets/religion/monastery.svg";
|
|---|
| 3128 | set icon_z17;
|
|---|
| 3129 | }
|
|---|
| [7041] | 3130 | node[amenity=grave_yard] {
|
|---|
| [10707] | 3131 | icon-image: "presets/landuse/graveyard.svg";
|
|---|
| [7454] | 3132 | set icon_z17;
|
|---|
| [7041] | 3133 | }
|
|---|
| [9892] | 3134 | node[amenity=crematorium][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 3135 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 3136 | set icon_z17;
|
|---|
| [7041] | 3137 | }
|
|---|
| 3138 | node[amenity=post_office] {
|
|---|
| [10808] | 3139 | icon-image: "presets/service/post_office.svg";
|
|---|
| [7454] | 3140 | set icon_z17;
|
|---|
| [7041] | 3141 | }
|
|---|
| 3142 | node[amenity=post_box] {
|
|---|
| [10808] | 3143 | icon-image: "presets/service/post_box.svg";
|
|---|
| [7454] | 3144 | set icon_z17;
|
|---|
| [7041] | 3145 | }
|
|---|
| 3146 | node[amenity=studio] {
|
|---|
| [10808] | 3147 | icon-image: "presets/service/studio.svg";
|
|---|
| [7454] | 3148 | set icon_z17;
|
|---|
| [7041] | 3149 | }
|
|---|
| 3150 | node[amenity=school] {
|
|---|
| [10808] | 3151 | icon-image: "presets/education/school.svg";
|
|---|
| [7454] | 3152 | set icon_z17;
|
|---|
| [7041] | 3153 | }
|
|---|
| 3154 | node[amenity=university] {
|
|---|
| [10808] | 3155 | icon-image: "presets/education/university.svg";
|
|---|
| [7454] | 3156 | set icon_z17;
|
|---|
| [7041] | 3157 | }
|
|---|
| 3158 | node[amenity=college] {
|
|---|
| [10808] | 3159 | icon-image: "presets/education/college.svg";
|
|---|
| [7454] | 3160 | set icon_z17;
|
|---|
| [7041] | 3161 | }
|
|---|
| 3162 | node[amenity=kindergarten] {
|
|---|
| [10706] | 3163 | icon-image: "presets/education/kindergarten.svg";
|
|---|
| [7454] | 3164 | set icon_z17;
|
|---|
| [7041] | 3165 | }
|
|---|
| [17068] | 3166 | node[amenity=language_school] {
|
|---|
| 3167 | icon-image: "presets/education/language_school.svg";
|
|---|
| 3168 | set icon_z17;
|
|---|
| 3169 | }
|
|---|
| [7041] | 3170 | node[amenity=driving_school] {
|
|---|
| [10808] | 3171 | icon-image: "presets/education/driving_school.svg";
|
|---|
| [7454] | 3172 | set icon_z17;
|
|---|
| [7041] | 3173 | }
|
|---|
| 3174 | area[amenity=pharmacy],
|
|---|
| 3175 | area[amenity=hospital],
|
|---|
| 3176 | area[amenity=clinic],
|
|---|
| [7927] | 3177 | area[amenity=nursing_home],
|
|---|
| 3178 | area[amenity=social_facility],
|
|---|
| [7041] | 3179 | area[amenity=baby_hatch],
|
|---|
| 3180 | area[amenity=doctors],
|
|---|
| 3181 | area[amenity=dentist],
|
|---|
| [17142] | 3182 | area[amenity=animal_shelter],
|
|---|
| [7041] | 3183 | area[amenity=veterinary] {
|
|---|
| 3184 | fill-color: health#eeeeee;
|
|---|
| 3185 | }
|
|---|
| 3186 | node[amenity=pharmacy] {
|
|---|
| [10565] | 3187 | icon-image: "presets/health/pharmacy.svg";
|
|---|
| [7454] | 3188 | set icon_z17;
|
|---|
| [7041] | 3189 | }
|
|---|
| [9286] | 3190 | node[amenity=hospital] {
|
|---|
| [10565] | 3191 | icon-image: "presets/health/hospital.svg";
|
|---|
| [9286] | 3192 | set icon_z17;
|
|---|
| 3193 | }
|
|---|
| [7041] | 3194 | node[amenity=clinic] {
|
|---|
| [10565] | 3195 | icon-image: "presets/health/clinic.svg";
|
|---|
| [7454] | 3196 | set icon_z17;
|
|---|
| [7041] | 3197 | }
|
|---|
| [12613] | 3198 | node[amenity=social_facility][social_facility=nursing_home],
|
|---|
| [9286] | 3199 | node[amenity=nursing_home] {
|
|---|
| [10565] | 3200 | icon-image: "presets/social_facility/nursing_home.svg";
|
|---|
| [9286] | 3201 | set icon_z17;
|
|---|
| 3202 | }
|
|---|
| [9285] | 3203 | node[amenity=social_facility][social_facility=group_home] {
|
|---|
| [10565] | 3204 | icon-image: "presets/social_facility/group_home.svg";
|
|---|
| [7454] | 3205 | set icon_z17;
|
|---|
| [7041] | 3206 | }
|
|---|
| [9285] | 3207 | node[amenity=social_facility][social_facility=assisted_living] {
|
|---|
| [10565] | 3208 | icon-image: "presets/social_facility/assisted_living.svg";
|
|---|
| [9285] | 3209 | set icon_z17;
|
|---|
| 3210 | }
|
|---|
| 3211 | node[amenity=social_facility][social_facility=outreach] {
|
|---|
| [10565] | 3212 | icon-image: "presets/social_facility/outreach.svg";
|
|---|
| [9285] | 3213 | set icon_z17;
|
|---|
| 3214 | }
|
|---|
| 3215 | node[amenity=social_facility][social_facility=shelter] {
|
|---|
| [10565] | 3216 | icon-image: "presets/social_facility/shelter.svg";
|
|---|
| [9285] | 3217 | set icon_z17;
|
|---|
| 3218 | }
|
|---|
| 3219 | node[amenity=social_facility][social_facility=food_bank] {
|
|---|
| [10565] | 3220 | icon-image: "presets/social_facility/food_bank.svg";
|
|---|
| [9285] | 3221 | set icon_z17;
|
|---|
| 3222 | }
|
|---|
| [7041] | 3223 | node[amenity=baby_hatch] {
|
|---|
| [10565] | 3224 | icon-image: "presets/health/baby_hatch.svg";
|
|---|
| [7454] | 3225 | set icon_z17;
|
|---|
| [7041] | 3226 | }
|
|---|
| 3227 | node[amenity=doctors] {
|
|---|
| [10565] | 3228 | icon-image: "presets/health/doctors.svg";
|
|---|
| [7454] | 3229 | set icon_z17;
|
|---|
| [7041] | 3230 | }
|
|---|
| 3231 | node[amenity=dentist] {
|
|---|
| [10565] | 3232 | icon-image: "presets/health/dentist.svg";
|
|---|
| [7454] | 3233 | set icon_z17;
|
|---|
| [7041] | 3234 | }
|
|---|
| [17142] | 3235 | node[amenity=animal_shelter] {
|
|---|
| 3236 | icon-image: "presets/health/animal_shelter.svg";
|
|---|
| 3237 | set icon_z17;
|
|---|
| 3238 | }
|
|---|
| [7041] | 3239 | node[amenity=veterinary] {
|
|---|
| [10565] | 3240 | icon-image: "presets/health/veterinary.svg";
|
|---|
| [7454] | 3241 | set icon_z17;
|
|---|
| [7041] | 3242 | }
|
|---|
| 3243 | area[amenity=library],
|
|---|
| [16483] | 3244 | area[amenity=public_bookcase],
|
|---|
| [7041] | 3245 | area[amenity=police],
|
|---|
| [8025] | 3246 | area[amenity=ranger_station],
|
|---|
| [7041] | 3247 | area[amenity=fire_station],
|
|---|
| 3248 | area[amenity=bus_station],
|
|---|
| 3249 | area[amenity=ferry_terminal],
|
|---|
| 3250 | area[amenity=theatre],
|
|---|
| 3251 | area[amenity=cinema],
|
|---|
| [15689] | 3252 | area[amenity=dive_centre],
|
|---|
| [16479] | 3253 | area[amenity=public_bath],
|
|---|
| [7041] | 3254 | area[amenity=arts_centre],
|
|---|
| 3255 | area[amenity=courthouse],
|
|---|
| 3256 | area[amenity=prison],
|
|---|
| 3257 | area[amenity=bank],
|
|---|
| 3258 | area[amenity=bureau_de_change],
|
|---|
| [15199] | 3259 | area[amenity=money_transfer],
|
|---|
| [11233] | 3260 | area[amenity=bbq],
|
|---|
| 3261 | area[amenity=watering_place] {
|
|---|
| [7041] | 3262 | fill-color: amenity_light#f7efb7;
|
|---|
| 3263 | }
|
|---|
| 3264 | node[amenity=library] {
|
|---|
| [10808] | 3265 | icon-image: "presets/education/library.svg";
|
|---|
| [7454] | 3266 | set icon_z17;
|
|---|
| [7041] | 3267 | }
|
|---|
| [16483] | 3268 | node[amenity=public_bookcase] {
|
|---|
| 3269 | icon-image: "presets/education/public_bookcase.svg";
|
|---|
| 3270 | set icon_z17;
|
|---|
| 3271 | }
|
|---|
| [7041] | 3272 | node[amenity=police] {
|
|---|
| [10706] | 3273 | icon-image: "presets/service/police.svg";
|
|---|
| [7454] | 3274 | set icon_z17;
|
|---|
| [7041] | 3275 | }
|
|---|
| [8025] | 3276 | node[amenity=ranger_station] {
|
|---|
| [10565] | 3277 | icon-image: "presets/service/ranger_station.svg";
|
|---|
| [8025] | 3278 | set icon_z17;
|
|---|
| 3279 | }
|
|---|
| [7041] | 3280 | node[amenity=fire_station] {
|
|---|
| [10706] | 3281 | icon-image: "presets/service/firebrigade.svg";
|
|---|
| [7454] | 3282 | set icon_z17;
|
|---|
| [7041] | 3283 | }
|
|---|
| 3284 | node[amenity=bus_station] {
|
|---|
| [10706] | 3285 | icon-image: "presets/transport/bus_old.svg";
|
|---|
| [7454] | 3286 | set icon_z17;
|
|---|
| [7041] | 3287 | }
|
|---|
| 3288 | node[amenity=ferry_terminal] {
|
|---|
| [10565] | 3289 | icon-image: "presets/nautical/ferry.svg";
|
|---|
| [7454] | 3290 | set icon_z17;
|
|---|
| [7041] | 3291 | }
|
|---|
| 3292 | node[amenity=theatre] {
|
|---|
| [10808] | 3293 | icon-image: "presets/leisure/theater.svg";
|
|---|
| [7454] | 3294 | set icon_z17;
|
|---|
| [7041] | 3295 | }
|
|---|
| 3296 | node[amenity=cinema] {
|
|---|
| [10706] | 3297 | icon-image: "presets/leisure/cinema.svg";
|
|---|
| [7454] | 3298 | set icon_z17;
|
|---|
| [7041] | 3299 | }
|
|---|
| [15689] | 3300 | node[amenity=dive_centre] {
|
|---|
| 3301 | icon-image: "presets/leisure/dive_centre.svg";
|
|---|
| 3302 | set icon_z17;
|
|---|
| 3303 | }
|
|---|
| [16479] | 3304 | node[amenity=public_bath] {
|
|---|
| 3305 | icon-image: "presets/leisure/public_bath.svg";
|
|---|
| 3306 | set icon_z17;
|
|---|
| 3307 | }
|
|---|
| [7041] | 3308 | node[amenity=arts_centre] {
|
|---|
| [10808] | 3309 | icon-image: "presets/sightseeing/arts_centre.svg";
|
|---|
| [7454] | 3310 | set icon_z17;
|
|---|
| [7041] | 3311 | }
|
|---|
| 3312 | node[amenity=courthouse] {
|
|---|
| [10706] | 3313 | icon-image: "presets/service/courthouse.svg";
|
|---|
| [7454] | 3314 | set icon_z17;
|
|---|
| [7041] | 3315 | }
|
|---|
| 3316 | node[amenity=prison] {
|
|---|
| [10706] | 3317 | icon-image: "presets/service/prison.svg";
|
|---|
| [7454] | 3318 | set icon_z17;
|
|---|
| [7041] | 3319 | }
|
|---|
| 3320 | node[amenity=bank] {
|
|---|
| [10706] | 3321 | icon-image: "presets/money/bank.svg";
|
|---|
| [7454] | 3322 | set icon_z17;
|
|---|
| [7041] | 3323 | }
|
|---|
| 3324 | node[amenity=bureau_de_change] {
|
|---|
| [10706] | 3325 | icon-image: "presets/money/exchange.svg";
|
|---|
| [7454] | 3326 | set icon_z17;
|
|---|
| [7041] | 3327 | }
|
|---|
| [15199] | 3328 | node[amenity=money_transfer] {
|
|---|
| 3329 | icon-image: "presets/money/money_transfer.svg";
|
|---|
| 3330 | set icon_z17;
|
|---|
| 3331 | }
|
|---|
| [7041] | 3332 | node[amenity=atm] {
|
|---|
| [10706] | 3333 | icon-image: "presets/money/atm.svg";
|
|---|
| [7454] | 3334 | set icon_z17;
|
|---|
| [7041] | 3335 | }
|
|---|
| 3336 | way[amenity=bench] {
|
|---|
| 3337 | width: 2;
|
|---|
| 3338 | color: amenity_light#f7efb7;
|
|---|
| 3339 | }
|
|---|
| 3340 | node[amenity=bench] {
|
|---|
| [10808] | 3341 | icon-image: "presets/leisure/bench.svg";
|
|---|
| [7454] | 3342 | set icon_z17;
|
|---|
| [7041] | 3343 | }
|
|---|
| 3344 | node[amenity=bbq] {
|
|---|
| [10808] | 3345 | icon-image: "presets/leisure/bbq.svg";
|
|---|
| [7454] | 3346 | set icon_z17;
|
|---|
| [7041] | 3347 | }
|
|---|
| [8865] | 3348 | node[amenity=compressed_air] {
|
|---|
| [10565] | 3349 | icon-image: "presets/vehicle/compressed_air.svg";
|
|---|
| [8865] | 3350 | set icon_z17;
|
|---|
| 3351 | }
|
|---|
| [11233] | 3352 | node[amenity=watering_place] {
|
|---|
| 3353 | icon-image: "presets/misc/watering_place.svg";
|
|---|
| 3354 | set icon_z17;
|
|---|
| 3355 | }
|
|---|
| [7041] | 3356 | area[amenity=shelter],
|
|---|
| 3357 | area[amenity=marketplace],
|
|---|
| [7977] | 3358 | area[amenity=wlan] {
|
|---|
| [7041] | 3359 | fill-color: amenity_light#f7efb7;
|
|---|
| 3360 | }
|
|---|
| 3361 | node[amenity=shelter] {
|
|---|
| [10707] | 3362 | icon-image: "presets/accommodation/shelter.svg";
|
|---|
| [7454] | 3363 | set icon_z17;
|
|---|
| [7041] | 3364 | }
|
|---|
| [7541] | 3365 | node[amenity=shelter][shelter_type=public_transport] {
|
|---|
| [10808] | 3366 | icon-image: "presets/accommodation/shelter_public_transport.svg";
|
|---|
| [7541] | 3367 | set icon_z17;
|
|---|
| 3368 | }
|
|---|
| 3369 | node[amenity=shelter][shelter_type=picnic_shelter] {
|
|---|
| [10808] | 3370 | icon-image: "presets/accommodation/shelter_picnic.svg";
|
|---|
| [7541] | 3371 | set icon_z17;
|
|---|
| 3372 | }
|
|---|
| 3373 | node[amenity=shelter][shelter_type=basic_hut] {
|
|---|
| [10808] | 3374 | icon-image: "presets/accommodation/basic_hut.svg";
|
|---|
| [7541] | 3375 | set icon_z17;
|
|---|
| 3376 | }
|
|---|
| [7927] | 3377 | node[amenity=shelter][shelter_type=lean_to] {
|
|---|
| [10565] | 3378 | icon-image: "presets/accommodation/shelter_lean_to.svg";
|
|---|
| [7927] | 3379 | set icon_z17;
|
|---|
| 3380 | }
|
|---|
| [7041] | 3381 | node[amenity=hunting_stand] {
|
|---|
| [10808] | 3382 | icon-image: "presets/landmark/hunting_stand.svg";
|
|---|
| [7454] | 3383 | set icon_z17;
|
|---|
| [7041] | 3384 | }
|
|---|
| 3385 | node[amenity=marketplace] {
|
|---|
| [10808] | 3386 | icon-image: "presets/shop/marketplace.svg";
|
|---|
| [7454] | 3387 | set icon_z17;
|
|---|
| [7041] | 3388 | }
|
|---|
| 3389 | node[amenity=vending_machine] {
|
|---|
| [10706] | 3390 | icon-image: "presets/transport/ticket-machine.svg";
|
|---|
| [7454] | 3391 | set icon_z17;
|
|---|
| [7041] | 3392 | }
|
|---|
| 3393 | node[vending=excrement_bags] {
|
|---|
| [10808] | 3394 | icon-image: "presets/service/excrement_bags.svg";
|
|---|
| [7454] | 3395 | set icon_z17;
|
|---|
| [7041] | 3396 | }
|
|---|
| 3397 |
|
|---|
| 3398 | /**************/
|
|---|
| 3399 | /* craft tags */
|
|---|
| 3400 | /**************/
|
|---|
| 3401 |
|
|---|
| [9681] | 3402 | area[craft=carpenter],
|
|---|
| 3403 | area[craft=shoemaker],
|
|---|
| 3404 | area[craft=photographer],
|
|---|
| 3405 | area[craft=metal_construction],
|
|---|
| 3406 | area[craft=electrician],
|
|---|
| 3407 | area[craft=brewery],
|
|---|
| 3408 | area[craft=plumber],
|
|---|
| 3409 | area[craft=sawmill],
|
|---|
| 3410 | area[craft=gardener],
|
|---|
| 3411 | area[craft=winery],
|
|---|
| 3412 | area[craft=hvac],
|
|---|
| [7041] | 3413 | area[craft=painter],
|
|---|
| [9681] | 3414 | area[craft=stonemason],
|
|---|
| 3415 | area[craft=handicraft],
|
|---|
| [7041] | 3416 | area[craft=pottery],
|
|---|
| [9681] | 3417 | area[craft=key_cutter],
|
|---|
| 3418 | area[craft=caterer],
|
|---|
| 3419 | area[craft=roofer],
|
|---|
| 3420 | area[craft=beekeeper],
|
|---|
| 3421 | area[craft=blacksmith],
|
|---|
| 3422 | area[craft=locksmith],
|
|---|
| 3423 | area[craft=window_construction],
|
|---|
| 3424 | area[craft=upholsterer],
|
|---|
| 3425 | area[craft=tiler] {
|
|---|
| [7041] | 3426 | fill-color: craft#999900;
|
|---|
| 3427 | }
|
|---|
| [15341] | 3428 | node[craft=carpenter] {
|
|---|
| 3429 | icon-image: "presets/craft/carpenter.svg";
|
|---|
| [7454] | 3430 | set icon_z17;
|
|---|
| [7041] | 3431 | }
|
|---|
| [15648] | 3432 | node[craft=shoemaker] {
|
|---|
| 3433 | icon-image: "presets/craft/shoemaker.svg";
|
|---|
| [9681] | 3434 | set icon_z17;
|
|---|
| 3435 | }
|
|---|
| [16250] | 3436 | node[craft=photographer] {
|
|---|
| 3437 | icon-image: "presets/craft/photographer.svg";
|
|---|
| [9681] | 3438 | set icon_z17;
|
|---|
| 3439 | }
|
|---|
| [15341] | 3440 | node[craft=metal_construction] {
|
|---|
| 3441 | icon-image: "presets/craft/metal_construction.svg";
|
|---|
| [9681] | 3442 | set icon_z17;
|
|---|
| [14363] | 3443 | }node[craft=electrician] {
|
|---|
| 3444 | icon-image: "presets/craft/electrician.svg";
|
|---|
| [9681] | 3445 | set icon_z17;
|
|---|
| 3446 | }
|
|---|
| [17019] | 3447 | node[craft=brewery] {
|
|---|
| 3448 | icon-image: "presets/craft/brewery.svg";
|
|---|
| [9681] | 3449 | set icon_z17;
|
|---|
| 3450 | }
|
|---|
| [7041] | 3451 | node[craft=plumber] {
|
|---|
| [10808] | 3452 | icon-image: "presets/craft/plumber.svg";
|
|---|
| [7454] | 3453 | set icon_z17;
|
|---|
| [7041] | 3454 | }
|
|---|
| [14998] | 3455 | node[craft=sawmill] {
|
|---|
| 3456 | icon-image: "presets/craft/sawmill.svg";
|
|---|
| [7454] | 3457 | set icon_z17;
|
|---|
| [7041] | 3458 | }
|
|---|
| [15648] | 3459 | node[craft=gardener] {
|
|---|
| 3460 | icon-image: "presets/craft/gardener.svg";
|
|---|
| [9681] | 3461 | set icon_z17;
|
|---|
| 3462 | }
|
|---|
| [17019] | 3463 | node[craft=winery] {
|
|---|
| 3464 | icon-image: "presets/craft/winery.svg";
|
|---|
| [9681] | 3465 | set icon_z17;
|
|---|
| 3466 | }
|
|---|
| [15170] | 3467 | node[craft=hvac] {
|
|---|
| 3468 | icon-image: "presets/craft/hvac.svg";
|
|---|
| [9681] | 3469 | set icon_z17;
|
|---|
| 3470 | }
|
|---|
| 3471 | node[craft=painter] {
|
|---|
| [10808] | 3472 | icon-image: "presets/craft/painter.svg";
|
|---|
| [9681] | 3473 | set icon_z17;
|
|---|
| 3474 | }
|
|---|
| [15931] | 3475 | node[craft=stonemason] {
|
|---|
| 3476 | icon-image: "presets/craft/stonemason.svg";
|
|---|
| [7454] | 3477 | set icon_z17;
|
|---|
| [7041] | 3478 | }
|
|---|
| [17019] | 3479 | node[craft=handicraft] {
|
|---|
| 3480 | icon-image: "presets/craft/handicraft.svg";
|
|---|
| [7454] | 3481 | set icon_z17;
|
|---|
| [7041] | 3482 | }
|
|---|
| [9681] | 3483 | node[craft=pottery] {
|
|---|
| [10808] | 3484 | icon-image: "presets/craft/pottery.svg";
|
|---|
| [9681] | 3485 | set icon_z17;
|
|---|
| 3486 | }
|
|---|
| [13833] | 3487 | node[craft=key_cutter] {
|
|---|
| [13835] | 3488 | icon-image: "presets/craft/key_cutter.svg";
|
|---|
| [9681] | 3489 | set icon_z17;
|
|---|
| 3490 | }
|
|---|
| [17030] | 3491 | node[craft=caterer] {
|
|---|
| 3492 | icon-image: "presets/craft/caterer.svg";
|
|---|
| [9681] | 3493 | set icon_z17;
|
|---|
| 3494 | }
|
|---|
| [10727] | 3495 | node[craft=roofer] {
|
|---|
| 3496 | icon-image: "presets/craft/roofer.svg";
|
|---|
| [9681] | 3497 | set icon_z17;
|
|---|
| 3498 | }
|
|---|
| [10825] | 3499 | node[craft=beekeeper] {
|
|---|
| 3500 | icon-image: "presets/craft/beekeeper.svg";
|
|---|
| [9681] | 3501 | set icon_z17;
|
|---|
| 3502 | }
|
|---|
| [15955] | 3503 | node[craft=blacksmith] {
|
|---|
| 3504 | icon-image: "presets/craft/blacksmith.svg";
|
|---|
| [9681] | 3505 | set icon_z17;
|
|---|
| 3506 | }
|
|---|
| [13833] | 3507 | node[craft=locksmith] {
|
|---|
| [13835] | 3508 | icon-image: "presets/craft/locksmith.svg";
|
|---|
| [9681] | 3509 | set icon_z17;
|
|---|
| 3510 | }
|
|---|
| [7041] | 3511 | node[craft=window_construction] {
|
|---|
| [10808] | 3512 | icon-image: "presets/craft/window_construction.svg";
|
|---|
| [7454] | 3513 | set icon_z17;
|
|---|
| [7041] | 3514 | }
|
|---|
| [15648] | 3515 | node[craft=upholsterer] {
|
|---|
| 3516 | icon-image: "presets/craft/upholsterer.svg";
|
|---|
| [9681] | 3517 | set icon_z17;
|
|---|
| 3518 | }
|
|---|
| 3519 | node[craft=tiler] {
|
|---|
| [10808] | 3520 | icon-image: "presets/craft/tiler.svg";
|
|---|
| [9681] | 3521 | set icon_z17;
|
|---|
| 3522 | }
|
|---|
| [7041] | 3523 |
|
|---|
| 3524 | /****************/
|
|---|
| 3525 | /* tourism tags */
|
|---|
| 3526 | /****************/
|
|---|
| 3527 |
|
|---|
| 3528 | area[tourism=hotel],
|
|---|
| 3529 | area[tourism=motel],
|
|---|
| 3530 | area[tourism=guest_house],
|
|---|
| [11265] | 3531 | area[tourism=apartment],
|
|---|
| [7041] | 3532 | area[tourism=hostel],
|
|---|
| 3533 | area[tourism=chalet],
|
|---|
| 3534 | area[tourism=alpine_hut],
|
|---|
| [9302] | 3535 | area[tourism=wilderness_hut],
|
|---|
| [7041] | 3536 | area[tourism=camp_site],
|
|---|
| [15541] | 3537 | area[tourism=camp_pitch],
|
|---|
| [7041] | 3538 | area[tourism=caravan_site] {
|
|---|
| [9302] | 3539 | fill-color: hotel#feced0;
|
|---|
| [7041] | 3540 | }
|
|---|
| 3541 | node[tourism=hotel] {
|
|---|
| [10565] | 3542 | icon-image: "presets/accommodation/hotel.svg";
|
|---|
| [7454] | 3543 | set icon_z17;
|
|---|
| [7041] | 3544 | }
|
|---|
| 3545 | node[tourism=motel] {
|
|---|
| [10565] | 3546 | icon-image: "presets/accommodation/motel.svg";
|
|---|
| [7454] | 3547 | set icon_z17;
|
|---|
| [7041] | 3548 | }
|
|---|
| 3549 | node[tourism=guest_house] {
|
|---|
| [10706] | 3550 | icon-image: "presets/accommodation/guest_house.svg";
|
|---|
| [7454] | 3551 | set icon_z17;
|
|---|
| [7041] | 3552 | }
|
|---|
| [11265] | 3553 | node[tourism=apartment] {
|
|---|
| 3554 | icon-image: "presets/accommodation/apartment.svg";
|
|---|
| 3555 | set icon_z17;
|
|---|
| 3556 | }
|
|---|
| [7041] | 3557 | node[tourism=hostel] {
|
|---|
| [10565] | 3558 | icon-image: "presets/accommodation/hostel.svg";
|
|---|
| [7454] | 3559 | set icon_z17;
|
|---|
| [7041] | 3560 | }
|
|---|
| 3561 | node[tourism=chalet] {
|
|---|
| [10706] | 3562 | icon-image: "presets/accommodation/chalet.svg";
|
|---|
| [7454] | 3563 | set icon_z17;
|
|---|
| [7041] | 3564 | }
|
|---|
| 3565 | node[tourism=alpine_hut] {
|
|---|
| [10808] | 3566 | icon-image: "presets/accommodation/alpine_hut.svg";
|
|---|
| [7454] | 3567 | set icon_z17;
|
|---|
| [7041] | 3568 | }
|
|---|
| [7541] | 3569 | node[tourism=wilderness_hut] {
|
|---|
| [10808] | 3570 | icon-image: "presets/accommodation/wilderness_hut.svg";
|
|---|
| [7541] | 3571 | set icon_z17;
|
|---|
| 3572 | }
|
|---|
| [7041] | 3573 | node[tourism=camp_site] {
|
|---|
| [10706] | 3574 | icon-image: "presets/accommodation/camping.svg";
|
|---|
| [7454] | 3575 | set icon_z17;
|
|---|
| [7041] | 3576 | }
|
|---|
| [15541] | 3577 | node[tourism=camp_pitch] {
|
|---|
| 3578 | icon-image: "presets/accommodation/camp_pitch.svg";
|
|---|
| 3579 | set icon_z17;
|
|---|
| 3580 | }
|
|---|
| [7041] | 3581 | node[tourism=caravan_site] {
|
|---|
| [10706] | 3582 | icon-image: "presets/accommodation/caravan.svg";
|
|---|
| [7454] | 3583 | set icon_z17;
|
|---|
| [7041] | 3584 | }
|
|---|
| [11584] | 3585 | area[tourism=attraction]:closed {
|
|---|
| 3586 | fill-color: tourism#e180a2;
|
|---|
| 3587 | }
|
|---|
| 3588 | way[tourism=attraction] {
|
|---|
| 3589 | width: 2;
|
|---|
| 3590 | color: tourism#e180a2;
|
|---|
| 3591 | }
|
|---|
| 3592 | node[tourism=attraction] {
|
|---|
| 3593 | icon-image: "presets/sightseeing/attraction.svg";
|
|---|
| 3594 | set icon_z17;
|
|---|
| 3595 | }
|
|---|
| [7041] | 3596 | area[tourism=picnic_site],
|
|---|
| 3597 | area[tourism=viewpoint],
|
|---|
| 3598 | area[tourism=theme_park],
|
|---|
| 3599 | area[tourism=zoo],
|
|---|
| [17814] | 3600 | area[tourism=gallery],
|
|---|
| [7041] | 3601 | area[tourism=museum] {
|
|---|
| 3602 | fill-color: tourism#e180a2;
|
|---|
| 3603 | }
|
|---|
| 3604 | node[tourism=picnic_site] {
|
|---|
| [10808] | 3605 | icon-image: "presets/leisure/picnic.svg";
|
|---|
| [7454] | 3606 | set icon_z17;
|
|---|
| [7041] | 3607 | }
|
|---|
| 3608 | node[tourism=viewpoint] {
|
|---|
| [10706] | 3609 | icon-image: "presets/sightseeing/viewpoint.svg";
|
|---|
| [7454] | 3610 | set icon_z17;
|
|---|
| [7041] | 3611 | }
|
|---|
| 3612 | node[tourism=theme_park] {
|
|---|
| [10706] | 3613 | icon-image: "presets/leisure/theme_park.svg";
|
|---|
| [7454] | 3614 | set icon_z17;
|
|---|
| [7041] | 3615 | }
|
|---|
| 3616 | node[tourism=zoo] {
|
|---|
| [10706] | 3617 | icon-image: "presets/leisure/zoo.svg";
|
|---|
| [7454] | 3618 | set icon_z17;
|
|---|
| [7041] | 3619 | }
|
|---|
| [8747] | 3620 | area[tourism=artwork]:closed {
|
|---|
| 3621 | fill-color: tourism#e180a2;
|
|---|
| 3622 | }
|
|---|
| [7041] | 3623 | way[tourism=artwork] {
|
|---|
| 3624 | width: 2;
|
|---|
| 3625 | color: tourism#e180a2;
|
|---|
| 3626 | }
|
|---|
| 3627 | node[tourism=artwork] {
|
|---|
| [10808] | 3628 | icon-image: "presets/sightseeing/arts_centre.svg";
|
|---|
| [7454] | 3629 | set icon_z17;
|
|---|
| [7041] | 3630 | }
|
|---|
| [17814] | 3631 | node[tourism=gallery] {
|
|---|
| 3632 | icon-image: "presets/sightseeing/gallery.svg";
|
|---|
| 3633 | set icon_z17;
|
|---|
| 3634 | }
|
|---|
| [7041] | 3635 | node[tourism=museum] {
|
|---|
| [10565] | 3636 | icon-image: "presets/sightseeing/museum.svg";
|
|---|
| [7454] | 3637 | set icon_z17;
|
|---|
| [7041] | 3638 | }
|
|---|
| 3639 |
|
|---|
| 3640 | /********************/
|
|---|
| [14181] | 3641 | /* attraction tags */
|
|---|
| 3642 | /********************/
|
|---|
| 3643 |
|
|---|
| 3644 | area[attraction=animal] {
|
|---|
| 3645 | fill-color: attraction#ffbfd3;
|
|---|
| 3646 | color: attraction#ffbfd3; /* color explizitly needed here to overwrite the color already set by (a lot of wrongly tagged) tourism=attraction */
|
|---|
| 3647 | }
|
|---|
| 3648 | node[attraction=animal] {
|
|---|
| 3649 | icon-image: "presets/attraction/animal.svg";
|
|---|
| 3650 | set icon_z17;
|
|---|
| 3651 | }
|
|---|
| 3652 |
|
|---|
| 3653 | /********************/
|
|---|
| [7041] | 3654 | /* information tags */
|
|---|
| 3655 | /********************/
|
|---|
| 3656 |
|
|---|
| 3657 | area[tourism=information] {
|
|---|
| 3658 | fill-color: tourism#e180a2;
|
|---|
| 3659 | }
|
|---|
| 3660 | node[tourism=information] {
|
|---|
| [10706] | 3661 | icon-image: "presets/misc/information/information.svg";
|
|---|
| [7454] | 3662 | set icon_z17;
|
|---|
| [7041] | 3663 | }
|
|---|
| [7996] | 3664 | node[tourism=information][information=guidepost] {
|
|---|
| [10706] | 3665 | icon-image: "presets/misc/information/guidepost.svg";
|
|---|
| [7454] | 3666 | set icon_z17;
|
|---|
| [7041] | 3667 | }
|
|---|
| [16249] | 3668 | node[tourism=information][information=route_marker] {
|
|---|
| 3669 | icon-image: "presets/misc/information/route_marker.svg";
|
|---|
| 3670 | set icon_z17;
|
|---|
| 3671 | }
|
|---|
| 3672 | node[tourism=information][information=audioguide] {
|
|---|
| 3673 | icon-image: "presets/misc/information/audioguide.svg";
|
|---|
| 3674 | set icon_z17;
|
|---|
| 3675 | }
|
|---|
| [7996] | 3676 | area[tourism=information][information=office] {
|
|---|
| [7041] | 3677 | fill-color: tourism#e180a2;
|
|---|
| 3678 | }
|
|---|
| [7996] | 3679 | node[tourism=information][information=office] {
|
|---|
| [10706] | 3680 | icon-image: "presets/misc/information/informationoffice.svg";
|
|---|
| [7454] | 3681 | set icon_z17;
|
|---|
| [7041] | 3682 | }
|
|---|
| [7996] | 3683 | node[tourism=information][information=map] {
|
|---|
| [10706] | 3684 | icon-image: "presets/misc/information/map.svg";
|
|---|
| [7454] | 3685 | set icon_z17;
|
|---|
| [7041] | 3686 | }
|
|---|
| [7996] | 3687 | node[tourism=information][information=board] {
|
|---|
| [10706] | 3688 | icon-image: "presets/misc/information/board.svg";
|
|---|
| [7454] | 3689 | set icon_z17;
|
|---|
| [7041] | 3690 | }
|
|---|
| 3691 |
|
|---|
| 3692 | /*****************/
|
|---|
| 3693 | /* historic tags */
|
|---|
| 3694 | /*****************/
|
|---|
| 3695 |
|
|---|
| 3696 | area[historic=castle],
|
|---|
| [15931] | 3697 | area[historic=fort],
|
|---|
| [7041] | 3698 | area[historic=monument],
|
|---|
| 3699 | area[historic=memorial],
|
|---|
| [12993] | 3700 | area[historic=tomb],
|
|---|
| [7041] | 3701 | area[historic=archaeological_site],
|
|---|
| 3702 | area[historic=ruins],
|
|---|
| 3703 | area[historic=battlefield],
|
|---|
| [7960] | 3704 | area[geological=palaeontological_site],
|
|---|
| [16748] | 3705 | area[historic=city_gate],
|
|---|
| 3706 | area[historic=manor],
|
|---|
| 3707 | area[historic=church],
|
|---|
| [17064] | 3708 | area[historic=monastery],
|
|---|
| [16748] | 3709 | area[historic=charcoal_pile],
|
|---|
| 3710 | area[historic=mine],
|
|---|
| 3711 | area[historic=mine_shaft],
|
|---|
| 3712 | area[historic=shieling],
|
|---|
| [7041] | 3713 | area[historic=wayside_cross],
|
|---|
| 3714 | area[historic=wayside_shrine],
|
|---|
| [16748] | 3715 | area[historic=boundary_stone],
|
|---|
| 3716 | area[historic=milestone] {
|
|---|
| [7041] | 3717 | fill-color: historic#663300;
|
|---|
| 3718 | }
|
|---|
| [15931] | 3719 | node[historic=fort] {
|
|---|
| 3720 | icon-image: "presets/sightseeing/fort.svg";
|
|---|
| 3721 | set icon_z17;
|
|---|
| 3722 | }
|
|---|
| [7041] | 3723 | node[historic=castle] {
|
|---|
| [10565] | 3724 | icon-image: "presets/sightseeing/castle.svg";
|
|---|
| [7454] | 3725 | set icon_z17;
|
|---|
| [7041] | 3726 | }
|
|---|
| 3727 | node[historic=monument] {
|
|---|
| [10706] | 3728 | icon-image: "presets/sightseeing/monument.svg";
|
|---|
| [7454] | 3729 | set icon_z17;
|
|---|
| [7041] | 3730 | }
|
|---|
| 3731 | node[historic=memorial] {
|
|---|
| [10706] | 3732 | icon-image: "presets/sightseeing/memorial.svg";
|
|---|
| [7454] | 3733 | set icon_z17;
|
|---|
| [7041] | 3734 | }
|
|---|
| 3735 | node[historic=archaeological_site] {
|
|---|
| [10706] | 3736 | icon-image: "presets/sightseeing/archaeological.svg";
|
|---|
| [7454] | 3737 | set icon_z17;
|
|---|
| [7041] | 3738 | }
|
|---|
| 3739 | node[historic=ruins] {
|
|---|
| [10706] | 3740 | icon-image: "presets/sightseeing/ruins.svg";
|
|---|
| [7454] | 3741 | set icon_z17;
|
|---|
| [7041] | 3742 | }
|
|---|
| 3743 | node[historic=battlefield] {
|
|---|
| [10706] | 3744 | icon-image: "presets/sightseeing/battlefield.svg";
|
|---|
| [7454] | 3745 | set icon_z17;
|
|---|
| [7041] | 3746 | }
|
|---|
| [7960] | 3747 | node[geological=palaeontological_site] {
|
|---|
| [10814] | 3748 | icon-image: "presets/sightseeing/palaeontological_site.svg";
|
|---|
| [7454] | 3749 | set icon_z17;
|
|---|
| [7041] | 3750 | }
|
|---|
| [16748] | 3751 | area[historic=citywalls]:closed {
|
|---|
| 3752 | fill-color: historic#663300;
|
|---|
| 3753 | }
|
|---|
| 3754 | way[historic=citywalls] {
|
|---|
| 3755 | width: 2;
|
|---|
| 3756 | color: historic#663300;
|
|---|
| 3757 | }
|
|---|
| 3758 | node[historic=city_gate] {
|
|---|
| 3759 | icon-image: "presets/sightseeing/city_gate.svg";
|
|---|
| 3760 | set icon_z17;
|
|---|
| 3761 | }
|
|---|
| 3762 | node[historic=manor] {
|
|---|
| 3763 | icon-image: "presets/sightseeing/manor.svg";
|
|---|
| 3764 | set icon_z17;
|
|---|
| 3765 | }
|
|---|
| 3766 | node[historic=church] {
|
|---|
| 3767 | icon-image: "presets/religion/historic_church.svg";
|
|---|
| 3768 | set icon_z17;
|
|---|
| 3769 | }
|
|---|
| [17064] | 3770 | node[historic=monastery] {
|
|---|
| 3771 | icon-image: "presets/sightseeing/monastery.svg";
|
|---|
| 3772 | set icon_z17;
|
|---|
| 3773 | }
|
|---|
| [16748] | 3774 | node[historic=charcoal_pile] {
|
|---|
| 3775 | icon-image: "presets/misc/charcoal_pile.svg";
|
|---|
| 3776 | set icon_z17;
|
|---|
| 3777 | }
|
|---|
| 3778 | node[historic=mine],
|
|---|
| 3779 | node[historic=mine_shaft] {
|
|---|
| 3780 | icon-image: "presets/landmark/historic_mine.svg";
|
|---|
| 3781 | set icon_z17;
|
|---|
| 3782 | }
|
|---|
| 3783 | node[historic=shieling] {
|
|---|
| 3784 | icon-image: "presets/landmark/shieling.svg";
|
|---|
| 3785 | set icon_z17;
|
|---|
| 3786 | }
|
|---|
| [7041] | 3787 | node[historic=wayside_cross] {
|
|---|
| [10706] | 3788 | icon-image: "presets/religion/wayside_cross.svg";
|
|---|
| [7454] | 3789 | set icon_z17;
|
|---|
| [7041] | 3790 | }
|
|---|
| 3791 | node[historic=wayside_shrine] {
|
|---|
| [10706] | 3792 | icon-image: "presets/religion/wayside_shrine.svg";
|
|---|
| [7454] | 3793 | set icon_z17;
|
|---|
| [7041] | 3794 | }
|
|---|
| 3795 | node[historic=boundary_stone] {
|
|---|
| [10808] | 3796 | icon-image: "presets/landmark/boundary_stone.svg";
|
|---|
| [7454] | 3797 | set icon_z17;
|
|---|
| [7041] | 3798 | }
|
|---|
| [16748] | 3799 | node[historic=milestone] {
|
|---|
| 3800 | icon-image: "presets/landmark/milestone.svg";
|
|---|
| 3801 | set icon_z17;
|
|---|
| 3802 | }
|
|---|
| [13052] | 3803 | area[cemetery=grave] {
|
|---|
| 3804 | fill-color: grave#663300;
|
|---|
| 3805 | }
|
|---|
| 3806 | node[cemetery=grave] {
|
|---|
| 3807 | icon-image: "presets/misc/grave.svg";
|
|---|
| 3808 | set icon_z17;
|
|---|
| 3809 | }
|
|---|
| [15169] | 3810 | area[cemetery=sector] {
|
|---|
| 3811 | fill-color: cemetery_sector#dbf8e6;
|
|---|
| 3812 | }
|
|---|
| 3813 | node[cemetery=sector] {
|
|---|
| 3814 | icon-image: "presets/misc/cemetery_sector.svg";
|
|---|
| 3815 | set icon_z17;
|
|---|
| 3816 | }
|
|---|
| [13052] | 3817 | node[historic=tomb] {
|
|---|
| 3818 | icon-image: "presets/misc/tomb.svg";
|
|---|
| 3819 | set icon_z17;
|
|---|
| 3820 | }
|
|---|
| [7041] | 3821 |
|
|---|
| 3822 | /****************/
|
|---|
| 3823 | /* landuse tags */
|
|---|
| 3824 | /****************/
|
|---|
| 3825 |
|
|---|
| [7564] | 3826 | area[landuse],
|
|---|
| 3827 | area[leisure],
|
|---|
| 3828 | area[amenity],
|
|---|
| 3829 | area[place],
|
|---|
| 3830 | area[natural],
|
|---|
| 3831 | area[man_made] {
|
|---|
| 3832 | z-index: -2; /* put areas that can have other areas inside (e.g. building) a little lower, see #9606 */
|
|---|
| 3833 | }
|
|---|
| [8045] | 3834 | area[landuse=farmland] {
|
|---|
| 3835 | fill-color: farmland#b8e0b1;
|
|---|
| 3836 | }
|
|---|
| 3837 | area[landuse=meadow] {
|
|---|
| 3838 | fill-color: meadow#b1e0b6;
|
|---|
| 3839 | }
|
|---|
| [7041] | 3840 | area[landuse=vineyard],
|
|---|
| 3841 | area[landuse=orchard] {
|
|---|
| 3842 | fill-color: green#b1e0c2;
|
|---|
| 3843 | }
|
|---|
| 3844 | area[landuse=quarry] {
|
|---|
| 3845 | fill-color: quarry#888888;
|
|---|
| 3846 | }
|
|---|
| 3847 | area[landuse=landfill] {
|
|---|
| 3848 | fill-color: landfill#663300;
|
|---|
| 3849 | }
|
|---|
| 3850 | area[landuse=basin],
|
|---|
| 3851 | area[landuse=reservoir] {
|
|---|
| 3852 | fill-color: basin#0000bf;
|
|---|
| 3853 | }
|
|---|
| 3854 | area[landuse=forest] {
|
|---|
| 3855 | fill-color: forest#b1efc8;
|
|---|
| 3856 | }
|
|---|
| [8045] | 3857 | area[landuse=allotments] {
|
|---|
| 3858 | fill-color: allotments#5dbf80;
|
|---|
| 3859 | }
|
|---|
| [7041] | 3860 | area[landuse=greenhouse_horticulture],
|
|---|
| [8045] | 3861 | area[landuse=plant_nursery] {
|
|---|
| [7041] | 3862 | fill-color: green#b1e0c2;
|
|---|
| 3863 | }
|
|---|
| [13008] | 3864 | area[landuse=salt_pond] {
|
|---|
| 3865 | fill-color: salt_pond#eeeeee;
|
|---|
| 3866 | }
|
|---|
| [10798] | 3867 | area[landuse=aquaculture] {
|
|---|
| 3868 | fill-color: aquaculture#189dff;
|
|---|
| 3869 | }
|
|---|
| [15697] | 3870 | area[landuse=flowerbed] {
|
|---|
| 3871 | fill-color: flowerbed#91c956;
|
|---|
| 3872 | }
|
|---|
| [8045] | 3873 | area[landuse=grass] {
|
|---|
| 3874 | fill-color: grass#97ca96;
|
|---|
| 3875 | }
|
|---|
| [7041] | 3876 | area[landuse=residential] {
|
|---|
| 3877 | fill-color: residential#f0f0f0;
|
|---|
| 3878 | }
|
|---|
| 3879 | area[landuse=garages] {
|
|---|
| [7409] | 3880 | fill-color: garages#d6c8aa;
|
|---|
| [7041] | 3881 | }
|
|---|
| 3882 | area[landuse=farmyard] {
|
|---|
| 3883 | fill-color: farmyard#f0f0f0;
|
|---|
| 3884 | }
|
|---|
| 3885 | area[landuse=retail],
|
|---|
| 3886 | area[landuse=commercial] {
|
|---|
| 3887 | fill-color: retail#ffc4ee;
|
|---|
| 3888 | }
|
|---|
| 3889 | area[landuse=industrial] {
|
|---|
| 3890 | fill-color: industrial#ecd8ff;
|
|---|
| 3891 | }
|
|---|
| 3892 | area[landuse=brownfield] {
|
|---|
| 3893 | fill-color: brownfield#ecba32;
|
|---|
| 3894 | }
|
|---|
| 3895 | area[landuse=greenfield] {
|
|---|
| 3896 | fill-color: greenfield#b1ec5c;
|
|---|
| 3897 | }
|
|---|
| 3898 | area[landuse=railway] {
|
|---|
| 3899 | fill-color: railland#888888;
|
|---|
| 3900 | }
|
|---|
| 3901 | area[landuse=construction] {
|
|---|
| 3902 | fill-color: construction#ffff00;
|
|---|
| 3903 | width: 1;
|
|---|
| 3904 | dashes: 9,9;
|
|---|
| 3905 | }
|
|---|
| 3906 | area[landuse=military] {
|
|---|
| 3907 | fill-color: military#b62c2c;
|
|---|
| 3908 | }
|
|---|
| [7311] | 3909 | area[landuse=religious] {
|
|---|
| 3910 | fill-color: religious#ffd454;
|
|---|
| 3911 | }
|
|---|
| [7041] | 3912 | area[landuse=cemetery] {
|
|---|
| 3913 | fill-color: cemetery#b1efc8;
|
|---|
| 3914 | }
|
|---|
| 3915 | area[landuse=village_green] {
|
|---|
| 3916 | fill-color: green#b1e0c2;
|
|---|
| 3917 | }
|
|---|
| 3918 | area[landuse=recreation_ground] {
|
|---|
| 3919 | fill-color: green#b1e0c2;
|
|---|
| 3920 | }
|
|---|
| [7711] | 3921 | node[landuse] {
|
|---|
| [10706] | 3922 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 3923 | set icon_z17;
|
|---|
| [7041] | 3924 | }
|
|---|
| 3925 |
|
|---|
| 3926 | /*****************/
|
|---|
| 3927 | /* military tags */
|
|---|
| 3928 | /*****************/
|
|---|
| 3929 |
|
|---|
| 3930 | area[military=airfield],
|
|---|
| 3931 | area[military=bunker],
|
|---|
| 3932 | area[military=barracks],
|
|---|
| 3933 | area[military=danger_area],
|
|---|
| 3934 | area[military=range] {
|
|---|
| 3935 | fill-color: military#b62c2c;
|
|---|
| 3936 | }
|
|---|
| 3937 | node[military=airfield] {
|
|---|
| [10706] | 3938 | icon-image: "presets/transport/airport/airfield.svg";
|
|---|
| [7454] | 3939 | set icon_z17;
|
|---|
| [7041] | 3940 | }
|
|---|
| 3941 | node[military=bunker] {
|
|---|
| [10706] | 3942 | icon-image: "presets/landmark/bunker.svg";
|
|---|
| [7454] | 3943 | set icon_z17;
|
|---|
| [7041] | 3944 | }
|
|---|
| [9892] | 3945 | node[military=barracks][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 3946 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7454] | 3947 | set icon_z17;
|
|---|
| [7041] | 3948 | }
|
|---|
| 3949 | node[military=danger_area] {
|
|---|
| [10706] | 3950 | icon-image: "presets/misc/danger.svg";
|
|---|
| [7454] | 3951 | set icon_z17;
|
|---|
| [7041] | 3952 | }
|
|---|
| 3953 | node[military=range] {
|
|---|
| [10706] | 3954 | icon-image: "presets/sport/range.svg";
|
|---|
| [7454] | 3955 | set icon_z17;
|
|---|
| [7041] | 3956 | }
|
|---|
| 3957 |
|
|---|
| 3958 | /****************/
|
|---|
| 3959 | /* railway tags */
|
|---|
| 3960 | /****************/
|
|---|
| 3961 |
|
|---|
| [10429] | 3962 | area[railway=station] {
|
|---|
| [7041] | 3963 | fill-color: railwaypoint#f7efb7;
|
|---|
| 3964 | }
|
|---|
| [10429] | 3965 | node[railway=station] {
|
|---|
| [10706] | 3966 | icon-image: "presets/transport/railway_station.svg";
|
|---|
| [7454] | 3967 | set icon_z17;
|
|---|
| [7041] | 3968 | }
|
|---|
| 3969 | node[railway=halt] {
|
|---|
| [10808] | 3970 | icon-image: "presets/transport/railway_halt.svg";
|
|---|
| [7454] | 3971 | set icon_z17;
|
|---|
| [7041] | 3972 | }
|
|---|
| 3973 | node[railway=tram_stop] {
|
|---|
| [10706] | 3974 | icon-image: "presets/transport/tram.svg";
|
|---|
| [7454] | 3975 | set icon_z17;
|
|---|
| [7041] | 3976 | }
|
|---|
| 3977 | node[railway=subway_entrance] {
|
|---|
| [10808] | 3978 | icon-image: "presets/transport/underground.svg";
|
|---|
| [7454] | 3979 | set icon_z17;
|
|---|
| [7041] | 3980 | }
|
|---|
| 3981 | node[railway=crossing] {
|
|---|
| [10565] | 3982 | icon-image: "presets/transport/railway/crossing.svg";
|
|---|
| [7454] | 3983 | set icon_z17;
|
|---|
| [7041] | 3984 | }
|
|---|
| 3985 | node[railway=level_crossing] {
|
|---|
| [10565] | 3986 | icon-image: "presets/transport/railway/level_crossing.svg";
|
|---|
| [7454] | 3987 | set icon_z17;
|
|---|
| [7041] | 3988 | }
|
|---|
| 3989 | way[railway=rail] {
|
|---|
| 3990 | width: 2;
|
|---|
| 3991 | color: rail#404040;
|
|---|
| 3992 | dashes: 9,9;
|
|---|
| 3993 | dashes-background-color: raildashed#ffffff;
|
|---|
| 3994 | }
|
|---|
| [10091] | 3995 | way[railway=rail][service=crossover],
|
|---|
| [7041] | 3996 | way[railway=rail][service=siding] {
|
|---|
| 3997 | width: 1;
|
|---|
| 3998 | }
|
|---|
| 3999 | way[railway=rail][service=yard],
|
|---|
| 4000 | way[railway=rail][service=spur] {
|
|---|
| 4001 | width: 1;
|
|---|
| [10091] | 4002 | color: railyard#552200;
|
|---|
| [7041] | 4003 | }
|
|---|
| [15314] | 4004 | /* draw tram and light_rail on top of other way (highway=*) or
|
|---|
| [7041] | 4005 | as a standalone style */
|
|---|
| [10091] | 4006 | way[highway][railway=tram]::core_railway,
|
|---|
| 4007 | way[!highway][railway=tram] {
|
|---|
| [15314] | 4008 | z-index: 1;
|
|---|
| [7041] | 4009 | modifier: false; /* don't draw default way if there is no line on default layer */
|
|---|
| 4010 | width: 1;
|
|---|
| 4011 | color: railover#202020;
|
|---|
| 4012 | dashes: 9,9;
|
|---|
| 4013 | casing-width: 1;
|
|---|
| 4014 | casing-color: otherrail#808080;
|
|---|
| 4015 | casing-linecap: round;
|
|---|
| 4016 | casing-dashes: 9,9;
|
|---|
| 4017 | }
|
|---|
| [10091] | 4018 | way[highway][railway=tram][service=crossover]::core_railway,
|
|---|
| 4019 | way[!highway][railway=tram][service=crossover],
|
|---|
| 4020 | way[highway][railway=tram][service=siding]::core_railway,
|
|---|
| 4021 | way[!highway][railway=tram][service=siding],
|
|---|
| 4022 | way[highway][railway=tram][service=yard]::core_railway,
|
|---|
| 4023 | way[!highway][railway=tram][service=yard],
|
|---|
| 4024 | way[highway][railway=tram][service=spur]::core_railway,
|
|---|
| 4025 | way[!highway][railway=tram][service=spur] {
|
|---|
| 4026 | dashes: 6,6;
|
|---|
| 4027 | casing-dashes: 6,6;
|
|---|
| 4028 | }
|
|---|
| 4029 |
|
|---|
| [15314] | 4030 | way[highway][railway=light_rail]::core_railway,
|
|---|
| 4031 | way[!highway][railway=light_rail] {
|
|---|
| 4032 | z-index: 1;
|
|---|
| 4033 | modifier: false; /* don't draw default way if there is no line on default layer */
|
|---|
| [7041] | 4034 | width: 2;
|
|---|
| 4035 | color: otherrail#808080;
|
|---|
| 4036 | dashes: 9,9;
|
|---|
| 4037 | }
|
|---|
| 4038 | way[railway=subway] {
|
|---|
| 4039 | width: 1;
|
|---|
| 4040 | color: subway#606060;
|
|---|
| 4041 | dashes: 9,9;
|
|---|
| 4042 | }
|
|---|
| 4043 | way[railway=preserved] {
|
|---|
| 4044 | width: 1;
|
|---|
| 4045 | color: oldrail#404040;
|
|---|
| 4046 | dashes: 9,9;
|
|---|
| 4047 | }
|
|---|
| [10091] | 4048 | way[railway=light_rail][service=crossover],
|
|---|
| 4049 | way[railway=light_rail][service=siding],
|
|---|
| 4050 | way[railway=light_rail][service=yard],
|
|---|
| 4051 | way[railway=light_rail][service=spur],
|
|---|
| 4052 | way[railway=subway][service=crossover],
|
|---|
| 4053 | way[railway=subway][service=siding],
|
|---|
| 4054 | way[railway=subway][service=yard],
|
|---|
| 4055 | way[railway=subway][service=spur],
|
|---|
| 4056 | way[railway=preserved][service=crossover],
|
|---|
| 4057 | way[railway=preserved][service=siding],
|
|---|
| 4058 | way[railway=preserved][service=yard],
|
|---|
| 4059 | way[railway=preserved][service=spur] {
|
|---|
| 4060 | dashes: 6,6;
|
|---|
| 4061 | }
|
|---|
| [7041] | 4062 | /* disused often appears together with highway=xy */
|
|---|
| 4063 | /* -> draw on separate layer with higher z-index, but use */
|
|---|
| 4064 | /* modifier: false; to suppress default line when used alone. */
|
|---|
| [7612] | 4065 | /* use default layer when used without highway=* to display bridge correctly */
|
|---|
| 4066 | way[railway=disused][highway]::core_railway,
|
|---|
| 4067 | way[railway=disused][!highway],
|
|---|
| 4068 | way[railway=abandoned][highway]::core_railway,
|
|---|
| 4069 | way[railway=abandoned][!highway] {
|
|---|
| [7041] | 4070 | width: 1;
|
|---|
| 4071 | modifier: false;
|
|---|
| 4072 | z-index: 1;
|
|---|
| 4073 | color: oldrail#404040;
|
|---|
| 4074 | dashes: 9,9;
|
|---|
| 4075 | }
|
|---|
| 4076 | way[railway=narrow_gauge],
|
|---|
| 4077 | way[railway=monorail] {
|
|---|
| 4078 | width: 1;
|
|---|
| 4079 | color: rail#404040;
|
|---|
| 4080 | dashes: 9,9;
|
|---|
| 4081 | }
|
|---|
| [10091] | 4082 | way[railway=narrow_gauge][service=crossover],
|
|---|
| 4083 | way[railway=narrow_gauge][service=siding],
|
|---|
| 4084 | way[railway=narrow_gauge][service=yard],
|
|---|
| 4085 | way[railway=narrow_gauge][service=spur],
|
|---|
| 4086 | way[railway=monorail][service=crossover],
|
|---|
| 4087 | way[railway=monorail][service=siding],
|
|---|
| 4088 | way[railway=monorail][service=yard],
|
|---|
| 4089 | way[railway=monorail][service=spur] {
|
|---|
| 4090 | dashes: 6,6;
|
|---|
| 4091 | }
|
|---|
| [7977] | 4092 | area[railway=turntable] {
|
|---|
| [7041] | 4093 | fill-color: rail#404040;
|
|---|
| 4094 | }
|
|---|
| 4095 | node[railway=turntable] {
|
|---|
| [10565] | 4096 | icon-image: "presets/transport/railway/turntable.svg";
|
|---|
| [7454] | 4097 | set icon_z17;
|
|---|
| [7041] | 4098 | }
|
|---|
| 4099 | node[railway=buffer_stop] {
|
|---|
| [10565] | 4100 | icon-image: "presets/transport/railway/buffer_stop.svg";
|
|---|
| [7454] | 4101 | set icon_z17;
|
|---|
| [7041] | 4102 | }
|
|---|
| 4103 | area[railway=platform]:closed {
|
|---|
| 4104 | fill-color: rail#404040;
|
|---|
| 4105 | }
|
|---|
| 4106 | way[railway=platform] {
|
|---|
| 4107 | width: 2;
|
|---|
| 4108 | color: rail#404040;
|
|---|
| 4109 | }
|
|---|
| 4110 | way[railway=funicular] {
|
|---|
| 4111 | width: 1;
|
|---|
| 4112 | color: rail#404040;
|
|---|
| 4113 | dashes: 9,9;
|
|---|
| 4114 | }
|
|---|
| [7977] | 4115 | node[railway=switch] {
|
|---|
| [10565] | 4116 | icon-image: "presets/transport/railway/switch.svg";
|
|---|
| [7977] | 4117 | set icon_z17;
|
|---|
| 4118 | }
|
|---|
| [15188] | 4119 | node[railway=railway_crossing] {
|
|---|
| 4120 | icon-image: "presets/transport/railway/railway_crossing.svg";
|
|---|
| 4121 | set icon_z17;
|
|---|
| 4122 | }
|
|---|
| [9092] | 4123 | node[railway=signal] {
|
|---|
| [10565] | 4124 | icon-image: "presets/transport/railway/signal.svg";
|
|---|
| [9092] | 4125 | set icon_z17;
|
|---|
| 4126 | }
|
|---|
| [8725] | 4127 | node[railway=milestone] {
|
|---|
| [10565] | 4128 | icon-image: "presets/transport/railway/milestone.svg";
|
|---|
| [8725] | 4129 | set icon_z17;
|
|---|
| 4130 | }
|
|---|
| [7041] | 4131 | node[railway=rail], node[railway=tram], node[railway=light_rail],
|
|---|
| 4132 | node[railway=subway], node[railway=preserved],
|
|---|
| 4133 | node[railway=disused], node[railway=abandoned],
|
|---|
| 4134 | node[railway=narrow_gauge], node[railway=monorail],
|
|---|
| 4135 | node[railway=platform], node[railway=funicular],
|
|---|
| 4136 | node[service=yard], node[service=siding], node[service=spur] {
|
|---|
| [10706] | 4137 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 4138 | set icon_z17;
|
|---|
| [7041] | 4139 | }
|
|---|
| [7638] | 4140 | way[railway=construction][!highway] {
|
|---|
| 4141 | width: 1;
|
|---|
| 4142 | color: construction#ffff00;
|
|---|
| 4143 | dashes: 9,9;
|
|---|
| 4144 | }
|
|---|
| 4145 | way[railway=construction][construction=rail] {
|
|---|
| 4146 | width: 2;
|
|---|
| 4147 | color: rail#404040;
|
|---|
| 4148 | dashes: 9,9;
|
|---|
| 4149 | dashes-background-color: construction#ffff00;
|
|---|
| 4150 | }
|
|---|
| [15314] | 4151 | way[railway=construction][construction=light_rail][highway]::core_railway,
|
|---|
| 4152 | way[railway=construction][construction=light_rail][!highway] {
|
|---|
| 4153 | z-index: 1;
|
|---|
| [7638] | 4154 | width: 2;
|
|---|
| [15314] | 4155 | dashes: 9,9;
|
|---|
| 4156 | color: construction#ffff00;
|
|---|
| [7638] | 4157 | }
|
|---|
| 4158 | way[railway=construction][construction=tram][highway]::core_railway,
|
|---|
| 4159 | way[railway=construction][construction=tram][!highway] {
|
|---|
| 4160 | z-index: 1;
|
|---|
| 4161 | width: 1;
|
|---|
| 4162 | color: railover#202020;
|
|---|
| 4163 | dashes: 9,9;
|
|---|
| 4164 | casing-width: 1;
|
|---|
| 4165 | casing-color: construction#ffff00;
|
|---|
| 4166 | casing-linecap: round;
|
|---|
| 4167 | casing-dashes: 9,9;
|
|---|
| 4168 | }
|
|---|
| [7041] | 4169 |
|
|---|
| 4170 | /****************/
|
|---|
| 4171 | /* aeroway tags */
|
|---|
| 4172 | /****************/
|
|---|
| 4173 |
|
|---|
| [7977] | 4174 | area[aeroway=aerodrome] {
|
|---|
| [7041] | 4175 | fill-color: aeroway#660000;
|
|---|
| 4176 | width: 2;
|
|---|
| 4177 | dashes: 9,9;
|
|---|
| 4178 | }
|
|---|
| [9048] | 4179 | node[aeroway=aerodrome][military!=airfield] {
|
|---|
| [10706] | 4180 | icon-image: "presets/transport/airport.svg";
|
|---|
| [7454] | 4181 | set icon_z17;
|
|---|
| [7041] | 4182 | }
|
|---|
| 4183 | area[aeroway=terminal] {
|
|---|
| 4184 | fill-color: terminal#bb0000;
|
|---|
| 4185 | }
|
|---|
| 4186 | node[aeroway=terminal] {
|
|---|
| [10706] | 4187 | icon-image: "presets/transport/airport/terminal.svg";
|
|---|
| [7454] | 4188 | set icon_z17;
|
|---|
| [7041] | 4189 | }
|
|---|
| 4190 | area[aeroway=helipad] {
|
|---|
| 4191 | fill-color: aeroway_dark#330000;
|
|---|
| 4192 | }
|
|---|
| 4193 | node[aeroway=helipad] {
|
|---|
| [10706] | 4194 | icon-image: "presets/transport/airport/helipad.svg";
|
|---|
| [7454] | 4195 | set icon_z17;
|
|---|
| [7041] | 4196 | }
|
|---|
| [7603] | 4197 | area[aeroway=runway]:closed {
|
|---|
| [7440] | 4198 | fill-color: aeroway_dark#330000;
|
|---|
| 4199 | }
|
|---|
| [7041] | 4200 | way[aeroway=runway] {
|
|---|
| 4201 | width: 3;
|
|---|
| 4202 | color: aeroway_dark#330000;
|
|---|
| 4203 | }
|
|---|
| [7603] | 4204 | area[aeroway=taxiway]:closed {
|
|---|
| [7440] | 4205 | fill-color: aeroway#660000;
|
|---|
| 4206 | }
|
|---|
| [7041] | 4207 | way[aeroway=taxiway] {
|
|---|
| [8062] | 4208 | width: 2;
|
|---|
| 4209 | color: aeroway#660000;
|
|---|
| 4210 | }
|
|---|
| 4211 | way[aeroway=parking_position] {
|
|---|
| 4212 | width: 1;
|
|---|
| 4213 | color: aeroway#660000;
|
|---|
| 4214 | }
|
|---|
| [8021] | 4215 | node[aeroway=parking_position] {
|
|---|
| [10808] | 4216 | icon-image: "presets/transport/airport/parking_position.svg";
|
|---|
| [8021] | 4217 | set icon_z17;
|
|---|
| [7041] | 4218 | }
|
|---|
| [8062] | 4219 | area[aeroway=apron],
|
|---|
| 4220 | area[aeroway=hangar] {
|
|---|
| 4221 | fill-color: aeroway_light#990000;
|
|---|
| [7041] | 4222 | }
|
|---|
| [7977] | 4223 | node[aeroway=apron],
|
|---|
| 4224 | node[aeroway=runway],
|
|---|
| 4225 | node[aeroway=taxiway] {
|
|---|
| [10706] | 4226 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 4227 | set icon_z17;
|
|---|
| [7041] | 4228 | }
|
|---|
| [11005] | 4229 | node[aeroway=holding_position] {
|
|---|
| 4230 | icon-image: "presets/transport/airport/holding_position.svg";
|
|---|
| 4231 | set icon_z17;
|
|---|
| 4232 | }
|
|---|
| [7041] | 4233 | node[aeroway=hangar] {
|
|---|
| [10706] | 4234 | icon-image: "presets/transport/airport/hangar.svg";
|
|---|
| [7454] | 4235 | set icon_z17;
|
|---|
| [8062] | 4236 | }
|
|---|
| 4237 | node[aeroway=gate] {
|
|---|
| [10706] | 4238 | icon-image: "presets/transport/airport/gate.svg";
|
|---|
| [8062] | 4239 | set icon_z17;
|
|---|
| 4240 | }
|
|---|
| [12417] | 4241 | node[airmark=beacon] {
|
|---|
| 4242 | icon-image: "presets/transport/airport/airmark_beacon.svg";
|
|---|
| 4243 | set icon_z17;
|
|---|
| 4244 | }
|
|---|
| 4245 | node[aeroway=navigationaid] {
|
|---|
| 4246 | icon-image: "presets/transport/airport/navigationaid.svg";
|
|---|
| 4247 | set icon_z17;
|
|---|
| 4248 | }
|
|---|
| [15930] | 4249 | node[aeroway=navigationaid][navigationaid=papi] {
|
|---|
| 4250 | icon-image: "presets/transport/airport/papi.svg";
|
|---|
| 4251 | set icon_z17;
|
|---|
| 4252 | }
|
|---|
| 4253 | node[aeroway=navigationaid][navigationaid=vasi] {
|
|---|
| 4254 | icon-image: "presets/transport/airport/vasi.svg";
|
|---|
| 4255 | set icon_z17;
|
|---|
| 4256 | }
|
|---|
| [7041] | 4257 | node[aeroway=windsock] {
|
|---|
| [10706] | 4258 | icon-image: "presets/transport/airport/windsock.svg";
|
|---|
| [7454] | 4259 | set icon_z17;
|
|---|
| [7041] | 4260 | }
|
|---|
| 4261 |
|
|---|
| 4262 | /******************/
|
|---|
| 4263 | /* aerialway tags */
|
|---|
| 4264 | /******************/
|
|---|
| 4265 |
|
|---|
| 4266 | way[aerialway=cable_car],
|
|---|
| 4267 | way[aerialway=gondola] {
|
|---|
| 4268 | width: 1;
|
|---|
| 4269 | color: aerialway#663300;
|
|---|
| 4270 | dashes: 9,9;
|
|---|
| 4271 | }
|
|---|
| 4272 | way[aerialway=chair_lift] {
|
|---|
| 4273 | width: 1;
|
|---|
| 4274 | color: aerialway#663300;
|
|---|
| 4275 | dashes: 6,6;
|
|---|
| 4276 | }
|
|---|
| [7915] | 4277 | way[aerialway=mixed_lift] {
|
|---|
| 4278 | width: 1;
|
|---|
| 4279 | color: aerialway#663300;
|
|---|
| 4280 | dashes: 6,6,9,6;
|
|---|
| [7041] | 4281 | }
|
|---|
| [7915] | 4282 | way[aerialway=j-bar],
|
|---|
| 4283 | way[aerialway=t-bar],
|
|---|
| 4284 | way[aerialway=platter],
|
|---|
| 4285 | way[aerialway=rope_tow],
|
|---|
| [7041] | 4286 | way[aerialway=drag_lift] {
|
|---|
| 4287 | width: 1;
|
|---|
| 4288 | color: aerialway#663300;
|
|---|
| 4289 | dashes: 3,3;
|
|---|
| 4290 | }
|
|---|
| [7915] | 4291 | way[aerialway=magic_carpet] {
|
|---|
| 4292 | width: 1;
|
|---|
| 4293 | color: aerialway#663300;
|
|---|
| 4294 | dashes: 3,3;
|
|---|
| [7041] | 4295 | }
|
|---|
| [7915] | 4296 | way[aerialway=goods] {
|
|---|
| 4297 | width: 1;
|
|---|
| 4298 | color: aerialway#663300;
|
|---|
| 4299 | dashes: 2,2;
|
|---|
| 4300 | }
|
|---|
| [15433] | 4301 | way[aerialway=zip_line] {
|
|---|
| 4302 | width: 1;
|
|---|
| 4303 | color: aerialway#663300;
|
|---|
| 4304 | dashes: 3,3;
|
|---|
| 4305 | }
|
|---|
| [7915] | 4306 | area[aerialway=station] {
|
|---|
| [7041] | 4307 | fill-color: aerialway#663300;
|
|---|
| 4308 | }
|
|---|
| 4309 | node[aerialway=station] {
|
|---|
| [10706] | 4310 | icon-image: "presets/transport/aerialway/station.svg";
|
|---|
| [7454] | 4311 | set icon_z17;
|
|---|
| [7041] | 4312 | }
|
|---|
| 4313 | node[aerialway=pylon] {
|
|---|
| [10565] | 4314 | icon-image: "presets/transport/aerialway/pylon.svg";
|
|---|
| [7454] | 4315 | set icon_z17;
|
|---|
| [7041] | 4316 | }
|
|---|
| [7915] | 4317 | node[aerialway=cable_car],
|
|---|
| 4318 | node[aerialway=gondola],
|
|---|
| 4319 | node[aerialway=chair_lift],
|
|---|
| 4320 | node[aerialway=mixed_lift],
|
|---|
| 4321 | node[aerialway=drag_lift],
|
|---|
| 4322 | node[aerialway=t-bar],
|
|---|
| 4323 | node[aerialway=j-bar],
|
|---|
| 4324 | node[aerialway=platter],
|
|---|
| 4325 | node[aerialway=magic_carpet],
|
|---|
| 4326 | node[aerialway=rope_tow],
|
|---|
| [15433] | 4327 | node[aerialway=goods],
|
|---|
| 4328 | node[aerialway=zip_line] {
|
|---|
| [10706] | 4329 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 4330 | set icon_z17;
|
|---|
| [7041] | 4331 | }
|
|---|
| 4332 |
|
|---|
| [10429] | 4333 | /*************************/
|
|---|
| 4334 | /* public_transport tags */
|
|---|
| 4335 | /*************************/
|
|---|
| 4336 |
|
|---|
| 4337 | node[highway=bus_stop] {
|
|---|
| [10808] | 4338 | icon-image: "presets/transport/bus_small.svg";
|
|---|
| [10429] | 4339 | set icon_z17;
|
|---|
| 4340 | }
|
|---|
| 4341 | node[public_transport=stop_position] {
|
|---|
| [10808] | 4342 | icon-image: "presets/transport/stop_position.svg";
|
|---|
| [10429] | 4343 | set icon_z17;
|
|---|
| 4344 | }
|
|---|
| [10502] | 4345 | node[public_transport=stop_position][share_taxi=yes] {
|
|---|
| [10565] | 4346 | icon-image: "presets/transport/share_taxi.svg";
|
|---|
| [10502] | 4347 | set icon_z17;
|
|---|
| 4348 | }
|
|---|
| [10450] | 4349 | node[public_transport=stop_position][bus=yes] {
|
|---|
| [10565] | 4350 | icon-image: "presets/transport/bus.svg";
|
|---|
| [10450] | 4351 | set icon_z17;
|
|---|
| 4352 | }
|
|---|
| [10429] | 4353 | node[public_transport=stop_position][train=yes] {
|
|---|
| [10565] | 4354 | icon-image: "presets/transport/train.svg";
|
|---|
| [10429] | 4355 | set icon_z17;
|
|---|
| 4356 | }
|
|---|
| [12991] | 4357 | node[public_transport=stop_position][light_rail=yes] {
|
|---|
| 4358 | icon-image: "presets/transport/railway/light_rail.svg";
|
|---|
| 4359 | set icon_z17;
|
|---|
| 4360 | }
|
|---|
| [10450] | 4361 | node[public_transport=stop_position][tram=yes] {
|
|---|
| [10565] | 4362 | icon-image: "presets/transport/railway/tram.svg";
|
|---|
| [10450] | 4363 | set icon_z17;
|
|---|
| 4364 | }
|
|---|
| [10429] | 4365 | node[public_transport=stop_position][subway=yes] {
|
|---|
| [10565] | 4366 | icon-image: "presets/transport/railway/subway.svg";
|
|---|
| [10429] | 4367 | set icon_z17;
|
|---|
| 4368 | }
|
|---|
| 4369 | node[public_transport=stop_position][monorail=yes] {
|
|---|
| [10565] | 4370 | icon-image: "presets/transport/railway/monorail.svg";
|
|---|
| [10429] | 4371 | set icon_z17;
|
|---|
| 4372 | }
|
|---|
| 4373 | node[public_transport=stop_position][trolleybus=yes] {
|
|---|
| [10565] | 4374 | icon-image: "presets/transport/trolleybus.svg";
|
|---|
| [10429] | 4375 | set icon_z17;
|
|---|
| 4376 | }
|
|---|
| [10501] | 4377 | node[public_transport=stop_position][funicular=yes] {
|
|---|
| [10565] | 4378 | icon-image: "presets/transport/railway/funicular.svg";
|
|---|
| [10501] | 4379 | set icon_z17;
|
|---|
| 4380 | }
|
|---|
| [10429] | 4381 | node[public_transport=stop_position][aerialway=yes] {
|
|---|
| [10706] | 4382 | icon-image: "presets/transport/aerialway/station.svg";
|
|---|
| [10429] | 4383 | set icon_z17;
|
|---|
| 4384 | }
|
|---|
| 4385 | node[public_transport=stop_position][ferry=yes] {
|
|---|
| [10565] | 4386 | icon-image: "presets/nautical/ferry.svg";
|
|---|
| [10429] | 4387 | set icon_z17;
|
|---|
| 4388 | }
|
|---|
| 4389 | area[public_transport=platform]:closed {
|
|---|
| 4390 | fill-color: service#809bc0;
|
|---|
| 4391 | }
|
|---|
| 4392 | way[public_transport=platform]!:closed {
|
|---|
| 4393 | width: 3;
|
|---|
| 4394 | color: service#809bc0;
|
|---|
| 4395 | dashes: 12,3;
|
|---|
| 4396 | }
|
|---|
| 4397 | node[public_transport=platform] {
|
|---|
| [10565] | 4398 | icon-image: "presets/transport/platform.svg";
|
|---|
| [10429] | 4399 | set icon_z17;
|
|---|
| 4400 | }
|
|---|
| 4401 | area[public_transport=station] {
|
|---|
| 4402 | fill-color: railwaypoint#f7efb7;
|
|---|
| 4403 | }
|
|---|
| 4404 | node[public_transport=station] {
|
|---|
| [10565] | 4405 | icon-image: "presets/transport/station.svg";
|
|---|
| [10429] | 4406 | set icon_z17;
|
|---|
| 4407 | }
|
|---|
| 4408 |
|
|---|
| [7581] | 4409 | /**************/
|
|---|
| 4410 | /* sport tags */
|
|---|
| 4411 | /**************/
|
|---|
| 4412 |
|
|---|
| 4413 | area[sport="9pin"],
|
|---|
| 4414 | area[sport="10pin"],
|
|---|
| 4415 | area[sport=soccer],
|
|---|
| 4416 | area[sport=australian_football],
|
|---|
| 4417 | area[sport=american_football],
|
|---|
| 4418 | area[sport=canadian_football],
|
|---|
| [7724] | 4419 | area[sport=gaelic_games],
|
|---|
| [7581] | 4420 | area[sport=rugby_league],
|
|---|
| 4421 | area[sport=rugby_union] {
|
|---|
| 4422 | fill-color: sport#bde3cb;
|
|---|
| 4423 | }
|
|---|
| 4424 | node[sport="9pin"] {
|
|---|
| [10808] | 4425 | icon-image: "presets/sport/9pin.svg";
|
|---|
| [7581] | 4426 | set icon_z17;
|
|---|
| 4427 | }
|
|---|
| 4428 | node[sport="10pin"] {
|
|---|
| [10706] | 4429 | icon-image: "presets/sport/10pin.svg";
|
|---|
| [7581] | 4430 | set icon_z17;
|
|---|
| 4431 | }
|
|---|
| 4432 | node[sport=soccer],
|
|---|
| [7724] | 4433 | node[sport=gaelic_games] {
|
|---|
| [10706] | 4434 | icon-image: "presets/sport/soccer.svg";
|
|---|
| [7581] | 4435 | set icon_z17;
|
|---|
| 4436 | }
|
|---|
| [7724] | 4437 | node[sport=australian_football],
|
|---|
| 4438 | node[sport=american_football],
|
|---|
| 4439 | node[sport=canadian_football],
|
|---|
| [7581] | 4440 | node[sport=rugby_league],
|
|---|
| 4441 | node[sport=rugby_union] {
|
|---|
| [10706] | 4442 | icon-image: "presets/sport/football.svg";
|
|---|
| [7581] | 4443 | set icon_z17;
|
|---|
| 4444 | }
|
|---|
| 4445 | area[sport=baseball],
|
|---|
| 4446 | area[sport=basketball],
|
|---|
| 4447 | area[sport=boules],
|
|---|
| 4448 | area[sport=bowls],
|
|---|
| 4449 | area[sport=canoe],
|
|---|
| 4450 | area[sport=chess],
|
|---|
| 4451 | area[sport=climbing]:closed,
|
|---|
| 4452 | area[sport=cricket],
|
|---|
| 4453 | area[sport=croquet] {
|
|---|
| 4454 | fill-color: sport#bde3cb;
|
|---|
| 4455 | }
|
|---|
| 4456 | node[sport=baseball] {
|
|---|
| [10706] | 4457 | icon-image: "presets/sport/baseball.svg";
|
|---|
| [7581] | 4458 | set icon_z17;
|
|---|
| 4459 | }
|
|---|
| 4460 | node[sport=basketball] {
|
|---|
| [10706] | 4461 | icon-image: "presets/sport/basketball.svg";
|
|---|
| [7581] | 4462 | set icon_z17;
|
|---|
| 4463 | }
|
|---|
| 4464 | node[sport=boules] {
|
|---|
| [10706] | 4465 | icon-image: "presets/sport/boule.svg";
|
|---|
| [7581] | 4466 | set icon_z17;
|
|---|
| 4467 | }
|
|---|
| 4468 | node[sport=bowls] {
|
|---|
| [10706] | 4469 | icon-image: "presets/sport/boule.svg";
|
|---|
| [7581] | 4470 | set icon_z17;
|
|---|
| 4471 | }
|
|---|
| 4472 | node[sport=canoe] {
|
|---|
| [10565] | 4473 | icon-image: "presets/sport/canoe.svg";
|
|---|
| [7581] | 4474 | set icon_z17;
|
|---|
| 4475 | }
|
|---|
| 4476 | node[sport=chess] {
|
|---|
| [10808] | 4477 | icon-image: "presets/sport/chess.svg";
|
|---|
| [7581] | 4478 | set icon_z17;
|
|---|
| 4479 | }
|
|---|
| 4480 | node[sport=climbing] {
|
|---|
| [10706] | 4481 | icon-image: "presets/sport/climbing.svg";
|
|---|
| [7581] | 4482 | set icon_z17;
|
|---|
| 4483 | }
|
|---|
| 4484 | node[sport=cricket] {
|
|---|
| [10706] | 4485 | icon-image: "presets/sport/cricket.svg";
|
|---|
| [7581] | 4486 | set icon_z17;
|
|---|
| 4487 | }
|
|---|
| 4488 | node[sport=croquet] {
|
|---|
| [10706] | 4489 | icon-image: "presets/sport/croquet.svg";
|
|---|
| [7581] | 4490 | set icon_z17;
|
|---|
| 4491 | }
|
|---|
| 4492 | area[sport=cycling],
|
|---|
| 4493 | area[sport=dog_racing],
|
|---|
| 4494 | area[sport=equestrian],
|
|---|
| 4495 | area[sport=golf],
|
|---|
| 4496 | area[sport=gymnastics],
|
|---|
| [8383] | 4497 | area[sport=field_hockey],
|
|---|
| 4498 | area[sport=ice_hockey],
|
|---|
| [16746] | 4499 | area[sport=curling],
|
|---|
| [7581] | 4500 | area[sport=horse_racing],
|
|---|
| [8279] | 4501 | area[sport=karting][highway!=raceway],
|
|---|
| 4502 | area[sport=karting][highway=raceway][area=yes],
|
|---|
| 4503 | area[sport=motocross][highway!=raceway],
|
|---|
| 4504 | area[sport=motocross][highway=raceway][area=yes],
|
|---|
| 4505 | area[sport=motor][highway!=raceway],
|
|---|
| 4506 | area[sport=motor][highway=raceway][area=yes] {
|
|---|
| [7581] | 4507 | fill-color: sport#bde3cb;
|
|---|
| 4508 | }
|
|---|
| 4509 | node[sport=cycling] {
|
|---|
| [10706] | 4510 | icon-image: "presets/sport/cycling.svg";
|
|---|
| [7581] | 4511 | set icon_z17;
|
|---|
| 4512 | }
|
|---|
| 4513 | node[sport=dog_racing] {
|
|---|
| [10808] | 4514 | icon-image: "presets/sport/dog_racing.svg";
|
|---|
| [7581] | 4515 | set icon_z17;
|
|---|
| 4516 | }
|
|---|
| 4517 | node[sport=equestrian] {
|
|---|
| [10808] | 4518 | icon-image: "presets/sport/equestrian.svg";
|
|---|
| [7581] | 4519 | set icon_z17;
|
|---|
| 4520 | }
|
|---|
| 4521 | node[sport=golf] {
|
|---|
| [10565] | 4522 | icon-image: "presets/sport/golf.svg";
|
|---|
| [7581] | 4523 | set icon_z17;
|
|---|
| 4524 | }
|
|---|
| 4525 | node[sport=gymnastics] {
|
|---|
| [10706] | 4526 | icon-image: "presets/sport/gymnastics.svg";
|
|---|
| [7581] | 4527 | set icon_z17;
|
|---|
| 4528 | }
|
|---|
| [8383] | 4529 | node[sport=field_hockey] {
|
|---|
| [10808] | 4530 | icon-image: "presets/sport/field_hockey.svg";
|
|---|
| [7581] | 4531 | set icon_z17;
|
|---|
| 4532 | }
|
|---|
| [8383] | 4533 | node[sport=ice_hockey] {
|
|---|
| [10808] | 4534 | icon-image: "presets/sport/ice_hockey.svg";
|
|---|
| [8383] | 4535 | set icon_z17;
|
|---|
| 4536 | }
|
|---|
| [16746] | 4537 | node[sport=curling] {
|
|---|
| 4538 | icon-image: "presets/sport/curling.svg";
|
|---|
| 4539 | set icon_z17;
|
|---|
| 4540 | }
|
|---|
| [7581] | 4541 | node[sport=horse_racing] {
|
|---|
| [10706] | 4542 | icon-image: "presets/sport/riding.svg";
|
|---|
| [7581] | 4543 | set icon_z17;
|
|---|
| 4544 | }
|
|---|
| 4545 | node[sport=karting] {
|
|---|
| [10808] | 4546 | icon-image: "presets/sport/karting.svg";
|
|---|
| [7581] | 4547 | set icon_z17;
|
|---|
| 4548 | }
|
|---|
| 4549 | node[sport=motocross] {
|
|---|
| [10706] | 4550 | icon-image: "presets/sport/motocross.svg";
|
|---|
| [7581] | 4551 | set icon_z17;
|
|---|
| 4552 | }
|
|---|
| 4553 | node[sport=motor] {
|
|---|
| [10808] | 4554 | icon-image: "presets/sport/motor.svg";
|
|---|
| [7581] | 4555 | set icon_z17;
|
|---|
| 4556 | }
|
|---|
| [11153] | 4557 | area[sport=athletics] {
|
|---|
| 4558 | fill-color: sport_athletics#cfebd7;
|
|---|
| 4559 | }
|
|---|
| 4560 | node[sport=athletics] {
|
|---|
| 4561 | icon-image: "presets/sport/athletics.svg";
|
|---|
| 4562 | set icon_z17;
|
|---|
| 4563 | }
|
|---|
| 4564 | area[sport=running] {
|
|---|
| 4565 | fill-color: sport_running#cfebd8;
|
|---|
| 4566 | }
|
|---|
| 4567 | node[sport=running] {
|
|---|
| 4568 | icon-image: "presets/sport/running.svg";
|
|---|
| 4569 | set icon_z17;
|
|---|
| 4570 | }
|
|---|
| 4571 | area[sport=multi] {
|
|---|
| 4572 | fill-color: sport_multi#cfebd9;
|
|---|
| 4573 | }
|
|---|
| 4574 | node[sport=multi] {
|
|---|
| 4575 | icon-image: "presets/sport/multi.svg";
|
|---|
| 4576 | set icon_z17;
|
|---|
| 4577 | }
|
|---|
| [7581] | 4578 | area[sport=pelota],
|
|---|
| 4579 | area[sport=racquet],
|
|---|
| [9835] | 4580 | area[sport=ice_skating],
|
|---|
| 4581 | area[sport=roller_skating],
|
|---|
| [7581] | 4582 | area[sport=skateboard] {
|
|---|
| 4583 | fill-color: sport#bde3cb;
|
|---|
| 4584 | }
|
|---|
| 4585 | node[sport=pelota] {
|
|---|
| [10808] | 4586 | icon-image: "presets/sport/pelota.svg";
|
|---|
| [7581] | 4587 | set icon_z17;
|
|---|
| 4588 | }
|
|---|
| 4589 | node[sport=racquet] {
|
|---|
| [10706] | 4590 | icon-image: "presets/sport/racquetball.svg";
|
|---|
| [7581] | 4591 | set icon_z17;
|
|---|
| 4592 | }
|
|---|
| [9835] | 4593 | node[sport=ice_skating] {
|
|---|
| [10808] | 4594 | icon-image: "presets/sport/ice_skating.svg";
|
|---|
| [7581] | 4595 | set icon_z17;
|
|---|
| 4596 | }
|
|---|
| [9835] | 4597 | node[sport=roller_skating] {
|
|---|
| [10565] | 4598 | icon-image: "presets/sport/roller_skating.svg";
|
|---|
| [9835] | 4599 | set icon_z17;
|
|---|
| 4600 | }
|
|---|
| 4601 | node[sport=skating] {
|
|---|
| [10706] | 4602 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [9835] | 4603 | set icon_z17;
|
|---|
| 4604 | }
|
|---|
| [7581] | 4605 | node[sport=skateboard] {
|
|---|
| [10706] | 4606 | icon-image: "presets/sport/skateboard.svg";
|
|---|
| [7581] | 4607 | set icon_z17;
|
|---|
| 4608 | }
|
|---|
| 4609 | area[sport=swimming] {
|
|---|
| 4610 | fill-color: swimming_pool#51c4ef;
|
|---|
| 4611 | }
|
|---|
| 4612 | node[sport=swimming] {
|
|---|
| [10706] | 4613 | icon-image: "presets/sport/swimming.svg";
|
|---|
| [7581] | 4614 | set icon_z17;
|
|---|
| 4615 | }
|
|---|
| 4616 | area[sport=table_tennis],
|
|---|
| 4617 | area[sport=tennis],
|
|---|
| 4618 | area[sport=paintball] {
|
|---|
| 4619 | fill-color: sport#bde3cb;
|
|---|
| 4620 | }
|
|---|
| 4621 | node[sport=table_tennis] {
|
|---|
| [10706] | 4622 | icon-image: "presets/sport/table_tennis.svg";
|
|---|
| [7581] | 4623 | set icon_z17;
|
|---|
| 4624 | }
|
|---|
| 4625 | node[sport=tennis] {
|
|---|
| [10706] | 4626 | icon-image: "presets/sport/tennis.svg";
|
|---|
| [7581] | 4627 | set icon_z17;
|
|---|
| 4628 | }
|
|---|
| [9892] | 4629 | node[sport=paintball][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 4630 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7581] | 4631 | set icon_z17;
|
|---|
| 4632 | }
|
|---|
| 4633 | area[sport=squash],
|
|---|
| 4634 | area[sport=shooting],
|
|---|
| 4635 | area[sport=volleyball],
|
|---|
| 4636 | area[sport=beachvolleyball],
|
|---|
| [8428] | 4637 | area[sport=billiards],
|
|---|
| [7581] | 4638 | area[sport=bowling],
|
|---|
| 4639 | area[sport=handball],
|
|---|
| 4640 | area[sport=rowing],
|
|---|
| 4641 | area[sport=sailing],
|
|---|
| [7630] | 4642 | area[sport=scuba_diving],
|
|---|
| [7581] | 4643 | area[sport=badminton] {
|
|---|
| 4644 | fill-color: sport#bde3cb;
|
|---|
| 4645 | }
|
|---|
| [9892] | 4646 | node[sport=squash][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 4647 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7581] | 4648 | set icon_z17;
|
|---|
| 4649 | }
|
|---|
| 4650 | node[sport=shooting] {
|
|---|
| [10706] | 4651 | icon-image: "presets/sport/range.svg";
|
|---|
| [7581] | 4652 | set icon_z17;
|
|---|
| 4653 | }
|
|---|
| 4654 | node[sport=volleyball] {
|
|---|
| [10706] | 4655 | icon-image: "presets/sport/volleyball.svg";
|
|---|
| [7581] | 4656 | set icon_z17;
|
|---|
| 4657 | }
|
|---|
| 4658 | node[sport=beachvolleyball] {
|
|---|
| [10808] | 4659 | icon-image: "presets/sport/beachvolleyball.svg";
|
|---|
| [7581] | 4660 | set icon_z17;
|
|---|
| 4661 | }
|
|---|
| [8428] | 4662 | node[sport=billiards] {
|
|---|
| [10565] | 4663 | icon-image: "presets/sport/billiards.svg";
|
|---|
| [8428] | 4664 | set icon_z17;
|
|---|
| 4665 | }
|
|---|
| [7581] | 4666 | node[sport=bowling] {
|
|---|
| [10808] | 4667 | icon-image: "presets/sport/9pin.svg";
|
|---|
| [7581] | 4668 | set icon_z17;
|
|---|
| 4669 | }
|
|---|
| 4670 | node[sport=handball] {
|
|---|
| [10706] | 4671 | icon-image: "presets/sport/handball.svg";
|
|---|
| [7581] | 4672 | set icon_z17;
|
|---|
| 4673 | }
|
|---|
| 4674 | node[sport=rowing] {
|
|---|
| [10706] | 4675 | icon-image: "presets/sport/rowing.svg";
|
|---|
| [7581] | 4676 | set icon_z17;
|
|---|
| 4677 | }
|
|---|
| [9892] | 4678 | node[sport=sailing][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 4679 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7581] | 4680 | set icon_z17;
|
|---|
| 4681 | }
|
|---|
| [7630] | 4682 | node[sport=scuba_diving] {
|
|---|
| [10565] | 4683 | icon-image: "presets/sport/scuba_diving.svg";
|
|---|
| [7581] | 4684 | set icon_z17;
|
|---|
| 4685 | }
|
|---|
| [9892] | 4686 | node[sport=badminton][!is_prop_set(icon-image)] {
|
|---|
| [10706] | 4687 | icon-image: "presets/misc/no_icon.svg";
|
|---|
| [7581] | 4688 | set icon_z17;
|
|---|
| 4689 | }
|
|---|
| 4690 | area[sport=archery],
|
|---|
| 4691 | area[sport=fishing],
|
|---|
| 4692 | area[sport=model_aerodrome],
|
|---|
| 4693 | area[sport=rc_car] {
|
|---|
| 4694 | fill-color: sport#bde3cb;
|
|---|
| 4695 | }
|
|---|
| 4696 | node[sport=archery] {
|
|---|
| [10706] | 4697 | icon-image: "presets/sport/archery.svg";
|
|---|
| [7581] | 4698 | set icon_z17;
|
|---|
| 4699 | }
|
|---|
| 4700 | node[sport=fishing] {
|
|---|
| [10808] | 4701 | icon-image: "presets/sport/fishing.svg";
|
|---|
| [7581] | 4702 | set icon_z17;
|
|---|
| 4703 | }
|
|---|
| 4704 | node[sport=model_aerodrome] {
|
|---|
| [10706] | 4705 | icon-image: "presets/transport/airport.svg";
|
|---|
| [7581] | 4706 | set icon_z17;
|
|---|
| 4707 | }
|
|---|
| 4708 | node[sport=rc_car] {
|
|---|
| [10706] | 4709 | icon-image: "presets/sport/rc_car.svg";
|
|---|
| [7581] | 4710 | set icon_z17;
|
|---|
| 4711 | }
|
|---|
| 4712 |
|
|---|
| [7041] | 4713 | /****************/
|
|---|
| 4714 | /* natural tags */
|
|---|
| 4715 | /****************/
|
|---|
| 4716 |
|
|---|
| 4717 | area[natural=spring] {
|
|---|
| 4718 | fill-color: light_water#00005f;
|
|---|
| 4719 | }
|
|---|
| 4720 | node[natural=spring] {
|
|---|
| [10706] | 4721 | icon-image: "presets/landmark/spring.svg";
|
|---|
| [7454] | 4722 | set icon_z17;
|
|---|
| [7041] | 4723 | }
|
|---|
| 4724 | node[natural=saddle] {
|
|---|
| [10706] | 4725 | icon-image: "presets/landmark/saddle.svg";
|
|---|
| [7470] | 4726 | set icon_z0;
|
|---|
| 4727 | set text_z0;
|
|---|
| [7041] | 4728 | }
|
|---|
| 4729 | node[natural=peak] {
|
|---|
| [10706] | 4730 | icon-image: "presets/landmark/peak.svg";
|
|---|
| [7470] | 4731 | set icon_z0;
|
|---|
| 4732 | set text_z0;
|
|---|
| [7041] | 4733 | }
|
|---|
| [7460] | 4734 | node[natural=peak][tourism=viewpoint] {
|
|---|
| [10565] | 4735 | icon-image: "presets/sightseeing/peak_viewpoint.svg";
|
|---|
| [7470] | 4736 | set icon_z0;
|
|---|
| 4737 | set text_z0;
|
|---|
| [7460] | 4738 | }
|
|---|
| [7041] | 4739 | area[natural=glacier] {
|
|---|
| 4740 | fill-color: glacier#ffffff;
|
|---|
| 4741 | }
|
|---|
| 4742 | node[natural=volcano] {
|
|---|
| [10706] | 4743 | icon-image: "presets/landmark/volcano.svg";
|
|---|
| [7470] | 4744 | set icon_z0;
|
|---|
| 4745 | set text_z0;
|
|---|
| [7041] | 4746 | }
|
|---|
| 4747 | area[natural=cliff]:closed {
|
|---|
| 4748 | fill-color: natural#002f00;
|
|---|
| 4749 | }
|
|---|
| 4750 | way[natural=cliff] {
|
|---|
| [10808] | 4751 | repeat-image: "presets/misc/cliff_pattern.svg";
|
|---|
| [7156] | 4752 | repeat-image-align: top;
|
|---|
| [16938] | 4753 | repeat-image-offset: 0.5;
|
|---|
| [7156] | 4754 | width: 1;
|
|---|
| [7454] | 4755 | color: #b2b2b2;
|
|---|
| [7041] | 4756 | }
|
|---|
| 4757 | node[natural=cliff] {
|
|---|
| [10565] | 4758 | icon-image: "presets/misc/cliff.svg";
|
|---|
| [7454] | 4759 | set icon_z17;
|
|---|
| [7041] | 4760 | }
|
|---|
| [7735] | 4761 | way[natural=ridge] {
|
|---|
| 4762 | width: 1;
|
|---|
| 4763 | color: natural#002f00;
|
|---|
| 4764 | }
|
|---|
| [8135] | 4765 | way[natural=valley] {
|
|---|
| 4766 | width: 1;
|
|---|
| 4767 | color: natural#002f00;
|
|---|
| 4768 | }
|
|---|
| [7041] | 4769 | area[natural=scree] {
|
|---|
| [10996] | 4770 | fill-color: scree#c3c3c3;
|
|---|
| [7041] | 4771 | }
|
|---|
| [10996] | 4772 | area[natural=shingle] {
|
|---|
| 4773 | fill-color: shingle#c3c3c3;
|
|---|
| 4774 | }
|
|---|
| [7041] | 4775 | area[natural=scrub] {
|
|---|
| 4776 | fill-color: scrub#007000;
|
|---|
| 4777 | }
|
|---|
| 4778 | area[natural=fell] {
|
|---|
| 4779 | fill-color: natural#002f00;
|
|---|
| 4780 | }
|
|---|
| 4781 | area[natural=heath] {
|
|---|
| 4782 | fill-color: heath#ffffc0;
|
|---|
| 4783 | }
|
|---|
| 4784 | way[natural=tree_row] {
|
|---|
| 4785 | width: 2;
|
|---|
| 4786 | color: woodarea#008000;
|
|---|
| 4787 | }
|
|---|
| 4788 | area[natural=wood] {
|
|---|
| 4789 | fill-color: woodarea#008000;
|
|---|
| 4790 | }
|
|---|
| 4791 | area[natural=grassland] {
|
|---|
| 4792 | fill-color: green#b1e0c2;
|
|---|
| 4793 | }
|
|---|
| 4794 | area[natural=wetland] {
|
|---|
| 4795 | fill-color: marsh#4f4ff3;
|
|---|
| 4796 | }
|
|---|
| 4797 | area[natural=water] {
|
|---|
| 4798 | fill-color: water#0000ff;
|
|---|
| 4799 | }
|
|---|
| [10419] | 4800 | area[natural=water][intermittent=yes] {
|
|---|
| [10110] | 4801 | width: 2;
|
|---|
| 4802 | dashes: 15, 5;
|
|---|
| 4803 | }
|
|---|
| [7041] | 4804 | way[natural=coastline] {
|
|---|
| [8504] | 4805 | width: 2;
|
|---|
| [7041] | 4806 | color: water#0000ff;
|
|---|
| [8504] | 4807 | right-casing-color: water#0000ff;
|
|---|
| [13156] | 4808 | right-casing-width: 8;
|
|---|
| 4809 | right-casing-opacity: 0.35;
|
|---|
| [7041] | 4810 | }
|
|---|
| 4811 | area[natural=mud] {
|
|---|
| 4812 | fill-color: mud#cba762;
|
|---|
| 4813 | }
|
|---|
| 4814 | area[natural=beach] {
|
|---|
| 4815 | fill-color: beach#f8dba2;
|
|---|
| 4816 | }
|
|---|
| 4817 | area[natural=sand] {
|
|---|
| 4818 | fill-color: sand#f8dba2;
|
|---|
| 4819 | }
|
|---|
| [7735] | 4820 | area[natural=bare_rock] {
|
|---|
| 4821 | fill-color: bare_rock#f8f8c7;
|
|---|
| 4822 | }
|
|---|
| [8003] | 4823 | area[natural=rock] {
|
|---|
| 4824 | fill-color: stone#f8f8c7;
|
|---|
| 4825 | }
|
|---|
| 4826 | node[natural=rock] {
|
|---|
| [10565] | 4827 | icon-image: "presets/misc/rock.svg";
|
|---|
| [8003] | 4828 | set icon_z17;
|
|---|
| 4829 | }
|
|---|
| [7735] | 4830 | area[natural=stone] {
|
|---|
| 4831 | fill-color: stone#f8f8c7;
|
|---|
| 4832 | }
|
|---|
| 4833 | node[natural=stone] {
|
|---|
| [10565] | 4834 | icon-image: "presets/misc/stone.svg";
|
|---|
| [7454] | 4835 | set icon_z17;
|
|---|
| [7041] | 4836 | }
|
|---|
| [15081] | 4837 | area[natural=bay]:closed {
|
|---|
| [7041] | 4838 | fill-color: natural#002f00;
|
|---|
| 4839 | }
|
|---|
| [15081] | 4840 | way[natural=bay] {
|
|---|
| 4841 | width: 2;
|
|---|
| 4842 | color: natural#002f00;
|
|---|
| 4843 | }
|
|---|
| [7041] | 4844 | node[natural=bay] {
|
|---|
| [10565] | 4845 | icon-image: "presets/nautical/bay.svg";
|
|---|
| [7454] | 4846 | set icon_z17;
|
|---|
| [7041] | 4847 | }
|
|---|
| [15093] | 4848 | area[natural=strait]:closed {
|
|---|
| 4849 | fill-color: natural#002f00;
|
|---|
| 4850 | }
|
|---|
| 4851 | way[natural=strait] {
|
|---|
| 4852 | width: 2;
|
|---|
| 4853 | color: natural#002f00;
|
|---|
| 4854 | }
|
|---|
| 4855 | node[natural=strait] {
|
|---|
| 4856 | icon-image: "presets/nautical/strait.svg";
|
|---|
| 4857 | set icon_z17;
|
|---|
| 4858 | }
|
|---|
| [15081] | 4859 | area[natural=cape],
|
|---|
| [17017] | 4860 | area[natural=sinkhole],
|
|---|
| [15081] | 4861 | area[natural=cave_entrance] {
|
|---|
| 4862 | fill-color: natural#002f00;
|
|---|
| 4863 | }
|
|---|
| [13945] | 4864 | node[natural=cape] {
|
|---|
| 4865 | icon-image: "presets/nautical/cape.svg";
|
|---|
| 4866 | set icon_z17;
|
|---|
| 4867 | }
|
|---|
| [17017] | 4868 | node[natural=sinkhole] {
|
|---|
| 4869 | icon-image: "presets/landmark/sinkhole.svg";
|
|---|
| 4870 | set icon_z17;
|
|---|
| 4871 | }
|
|---|
| [17045] | 4872 | node[natural=sinkhole][sinkhole=bluehole] {
|
|---|
| 4873 | icon-image: "presets/landmark/bluehole.svg";
|
|---|
| 4874 | set icon_z17;
|
|---|
| 4875 | }
|
|---|
| 4876 | node[natural=sinkhole][sinkhole=doline] {
|
|---|
| 4877 | icon-image: "presets/landmark/doline.svg";
|
|---|
| 4878 | set icon_z17;
|
|---|
| 4879 | }
|
|---|
| 4880 | node[natural=sinkhole][sinkhole=estavelle] {
|
|---|
| 4881 | icon-image: "presets/landmark/estavelle.svg";
|
|---|
| 4882 | set icon_z17;
|
|---|
| 4883 | }
|
|---|
| 4884 | node[natural=sinkhole][sinkhole=pit] {
|
|---|
| 4885 | icon-image: "presets/landmark/pit.svg";
|
|---|
| 4886 | set icon_z17;
|
|---|
| 4887 | }
|
|---|
| 4888 | node[natural=sinkhole][sinkhole=ponor] {
|
|---|
| 4889 | icon-image: "presets/landmark/ponor.svg";
|
|---|
| 4890 | set icon_z17;
|
|---|
| 4891 | }
|
|---|
| [15081] | 4892 | node[natural=cave_entrance] {
|
|---|
| 4893 | icon-image: "presets/landmark/cave_entrance.svg";
|
|---|
| 4894 | set icon_z17;
|
|---|
| 4895 | }
|
|---|
| [10707] | 4896 | area[natural=reef] {
|
|---|
| 4897 | fill-color: reef#80c9ff;
|
|---|
| 4898 | }
|
|---|
| 4899 | node[natural=reef] {
|
|---|
| [10709] | 4900 | icon-image: "presets/landmark/reef.svg";
|
|---|
| [10707] | 4901 | set icon_z17;
|
|---|
| 4902 | }
|
|---|
| [7041] | 4903 | node[natural=tree] {
|
|---|
| [10706] | 4904 | icon-image: "presets/landmark/trees.svg";
|
|---|
| [7454] | 4905 | set icon_z17;
|
|---|
| [7041] | 4906 | }
|
|---|
| [7235] | 4907 | node[natural=tree][leaf_type=needleleaved] {
|
|---|
| [10706] | 4908 | icon-image: "presets/landmark/trees_conifer.svg";
|
|---|
| [7454] | 4909 | set icon_z17;
|
|---|
| [7041] | 4910 | }
|
|---|
| [7235] | 4911 | node[natural=tree][leaf_type=broadleaved] {
|
|---|
| [10706] | 4912 | icon-image: "presets/landmark/trees_broad_leaved.svg";
|
|---|
| [7454] | 4913 | set icon_z17;
|
|---|
| [7041] | 4914 | }
|
|---|
| [9022] | 4915 | node[natural=glacier],
|
|---|
| [7735] | 4916 | node[natural=scree],
|
|---|
| [10996] | 4917 | node[natural=shingle],
|
|---|
| [7735] | 4918 | node[natural=scrub],
|
|---|
| 4919 | node[natural=fell],
|
|---|
| 4920 | node[natural=heath],
|
|---|
| 4921 | node[natural=tree_row],
|
|---|
| 4922 | node[natural=wood],
|
|---|
| 4923 | node[natural=grassland],
|
|---|
| 4924 | node[natural=wetland],
|
|---|
| 4925 | node[natural=water],
|
|---|
| 4926 | node[natural=coastline],
|
|---|
| 4927 | node[natural=mud],
|
|---|
| 4928 | node[natural=beach],
|
|---|
| 4929 | node[natural=sand],
|
|---|
| 4930 | node[natural=land],
|
|---|
| 4931 | node[natural=bare_rock],
|
|---|
| [8135] | 4932 | node[natural=ridge],
|
|---|
| 4933 | node[natural=valley] {
|
|---|
| [10706] | 4934 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7735] | 4935 | set icon_z17;
|
|---|
| 4936 | }
|
|---|
| [7041] | 4937 | /*****************/
|
|---|
| 4938 | /* waterway tags */
|
|---|
| 4939 | /*****************/
|
|---|
| 4940 |
|
|---|
| 4941 | way[waterway=river] {
|
|---|
| 4942 | width: 2;
|
|---|
| 4943 | color: water#0000ff;
|
|---|
| 4944 | }
|
|---|
| 4945 | area[waterway=riverbank] {
|
|---|
| 4946 | fill-color: riverbank#0000cf;
|
|---|
| 4947 | width: 1;
|
|---|
| 4948 | color: riverbank#0000cf;
|
|---|
| 4949 | }
|
|---|
| [13972] | 4950 | way[waterway=pressurised],
|
|---|
| [8135] | 4951 | way[waterway=canal] {
|
|---|
| [7041] | 4952 | width: 2;
|
|---|
| 4953 | color: water#0000ff;
|
|---|
| 4954 | }
|
|---|
| [11281] | 4955 | way[waterway=river][lock=yes],
|
|---|
| 4956 | way[waterway=canal][lock=yes] {
|
|---|
| 4957 | casing-width: 2;
|
|---|
| 4958 | casing-color: lock#303030;
|
|---|
| 4959 | casing-dashes: 5,20;
|
|---|
| 4960 | }
|
|---|
| [13972] | 4961 | way[waterway=pressurised][tunnel] {
|
|---|
| 4962 | casing-width: 1;
|
|---|
| 4963 | casing-color: tunnel#964B00;
|
|---|
| 4964 | }
|
|---|
| 4965 | way[waterway=pressurised][man_made=pipeline] {
|
|---|
| 4966 | casing-width: 1;
|
|---|
| 4967 | casing-color: pipeline#660000;
|
|---|
| 4968 | }
|
|---|
| [7041] | 4969 | way[waterway=stream] {
|
|---|
| 4970 | width: 1;
|
|---|
| 4971 | color: stream#6600cc;
|
|---|
| 4972 | }
|
|---|
| [10110] | 4973 | way[waterway=ditch],
|
|---|
| 4974 | way[waterway=drain] {
|
|---|
| [7041] | 4975 | width: 1;
|
|---|
| 4976 | color: water#0000ff;
|
|---|
| 4977 | }
|
|---|
| [15535] | 4978 | way[waterway=tidal_channel] {
|
|---|
| 4979 | width: 1;
|
|---|
| 4980 | color: tidal_channel#0000ff;
|
|---|
| 4981 | }
|
|---|
| [10110] | 4982 | way[waterway=river][intermittent=yes],
|
|---|
| [10419] | 4983 | area[waterway=riverbank][intermittent=yes],
|
|---|
| [10110] | 4984 | way[waterway=canal][intermittent=yes],
|
|---|
| 4985 | way[waterway=stream][intermittent=yes],
|
|---|
| 4986 | way[waterway=ditch][intermittent=yes],
|
|---|
| [15535] | 4987 | way[waterway=drain][intermittent=yes],
|
|---|
| 4988 | way[waterway=tidal_channel][intermittent=yes] {
|
|---|
| [10110] | 4989 | dashes: 15, 5;
|
|---|
| 4990 | }
|
|---|
| [7041] | 4991 | area[waterway=dock] {
|
|---|
| 4992 | fill-color: dock#0000cf;
|
|---|
| 4993 | }
|
|---|
| 4994 | node[waterway=dock] {
|
|---|
| [10808] | 4995 | icon-image: "presets/nautical/boatyard.svg";
|
|---|
| [7454] | 4996 | set icon_z17;
|
|---|
| [7041] | 4997 | }
|
|---|
| [11281] | 4998 | way[waterway=lock_gate] {
|
|---|
| 4999 | width: 3;
|
|---|
| 5000 | color: lock_gate#303030;
|
|---|
| 5001 | }
|
|---|
| [7041] | 5002 | node[waterway=lock_gate] {
|
|---|
| [10706] | 5003 | icon-image: "presets/nautical/lock_gate.svg";
|
|---|
| [7454] | 5004 | set icon_z17;
|
|---|
| [7041] | 5005 | }
|
|---|
| 5006 | node[waterway=turning_point] {
|
|---|
| [10706] | 5007 | icon-image: "presets/nautical/turning.svg";
|
|---|
| [7454] | 5008 | set icon_z17;
|
|---|
| [7041] | 5009 | }
|
|---|
| 5010 | area[waterway=boatyard] {
|
|---|
| 5011 | fill-color: manmade#d8d8d8;
|
|---|
| 5012 | }
|
|---|
| 5013 | node[waterway=boatyard] {
|
|---|
| [10808] | 5014 | icon-image: "presets/nautical/boatyard.svg";
|
|---|
| [7454] | 5015 | set icon_z17;
|
|---|
| [7041] | 5016 | }
|
|---|
| [7737] | 5017 | node[waterway=water_point],
|
|---|
| 5018 | node[waterway=waste_disposal],
|
|---|
| 5019 | node[waterway=mooring] {
|
|---|
| [10706] | 5020 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 5021 | set icon_z17;
|
|---|
| [7041] | 5022 | }
|
|---|
| [7737] | 5023 | node[mooring] {
|
|---|
| [10808] | 5024 | icon-image: "presets/nautical/marina.svg";
|
|---|
| [7454] | 5025 | set icon_z17;
|
|---|
| [7041] | 5026 | }
|
|---|
| [8402] | 5027 | area[waterway=fuel] {
|
|---|
| 5028 | fill-color: amenity_traffic#f7efb7;
|
|---|
| 5029 | }
|
|---|
| 5030 | node[waterway=fuel] {
|
|---|
| [10808] | 5031 | icon-image: "presets/nautical/marine_fuel.svg";
|
|---|
| [8402] | 5032 | set icon_z17;
|
|---|
| 5033 | }
|
|---|
| [7041] | 5034 | way[waterway=weir] {
|
|---|
| 5035 | width: 2;
|
|---|
| 5036 | color: manmade#d8d8d8;
|
|---|
| 5037 | }
|
|---|
| 5038 | node[waterway=weir] {
|
|---|
| [10565] | 5039 | icon-image: "presets/nautical/weir.svg";
|
|---|
| [7454] | 5040 | set icon_z17;
|
|---|
| [7041] | 5041 | }
|
|---|
| 5042 | area[waterway=dam]:closed {
|
|---|
| 5043 | fill-color: manmade#d8d8d8;
|
|---|
| 5044 | }
|
|---|
| 5045 | way[waterway=dam] {
|
|---|
| 5046 | width: 2;
|
|---|
| 5047 | color: manmade#d8d8d8;
|
|---|
| 5048 | }
|
|---|
| 5049 | node[waterway=dam] {
|
|---|
| [10565] | 5050 | icon-image: "presets/nautical/dam.svg";
|
|---|
| [7454] | 5051 | set icon_z17;
|
|---|
| [7041] | 5052 | }
|
|---|
| 5053 | /* it's not possible to have both line and area, line seems more likely */
|
|---|
| 5054 | way[waterway=waterfall] {
|
|---|
| 5055 | width: 2;
|
|---|
| 5056 | color: manmade#d8d8d8;
|
|---|
| 5057 | }
|
|---|
| 5058 | node[waterway=waterfall] {
|
|---|
| [10565] | 5059 | icon-image: "presets/nautical/waterfall.svg";
|
|---|
| [7454] | 5060 | set icon_z17;
|
|---|
| [7041] | 5061 | }
|
|---|
| 5062 | node[waterway=river], node[waterway=riverbank],
|
|---|
| 5063 | node[waterway=canal], node[waterway=wadi],
|
|---|
| 5064 | node[waterway=stream],
|
|---|
| 5065 | node[waterway=ditch], node[waterway=drain] {
|
|---|
| [10706] | 5066 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 5067 | set icon_z17;
|
|---|
| [7041] | 5068 | }
|
|---|
| 5069 |
|
|---|
| 5070 | /**************/
|
|---|
| 5071 | /* route tags */
|
|---|
| 5072 | /**************/
|
|---|
| 5073 |
|
|---|
| [7645] | 5074 | way[route=ferry] {
|
|---|
| [7041] | 5075 | width: 1;
|
|---|
| [7645] | 5076 | color: ferry#809bc0;
|
|---|
| [7041] | 5077 | dashes: 9,9;
|
|---|
| 5078 | }
|
|---|
| 5079 | node[route=bus],
|
|---|
| 5080 | node[route=ferry],
|
|---|
| 5081 | node[route=flight],
|
|---|
| 5082 | node[route=ncn],
|
|---|
| 5083 | node[route=subsea],
|
|---|
| 5084 | node[route=ski],
|
|---|
| 5085 | node[route=tour],
|
|---|
| 5086 | node[route=pub_crawl] {
|
|---|
| [10706] | 5087 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 5088 | set icon_z17;
|
|---|
| [7041] | 5089 | }
|
|---|
| 5090 |
|
|---|
| 5091 | /*******************/
|
|---|
| 5092 | /* properties tags */
|
|---|
| 5093 | /*******************/
|
|---|
| 5094 |
|
|---|
| 5095 | node[mountain_pass?] {
|
|---|
| [10706] | 5096 | icon-image: "presets/landmark/mountain_pass.svg";
|
|---|
| [7470] | 5097 | set icon_z0;
|
|---|
| 5098 | set text_z0;
|
|---|
| [7041] | 5099 | }
|
|---|
| 5100 |
|
|---|
| 5101 | /*****************/
|
|---|
| 5102 | /* boundary tags */
|
|---|
| 5103 | /*****************/
|
|---|
| 5104 |
|
|---|
| [14806] | 5105 | relation[boundary=protected_area] > way::core_boundary,
|
|---|
| 5106 | relation[boundary=administrative] > way::core_boundary,
|
|---|
| 5107 | relation[boundary=postal_code] > way::core_boundary,
|
|---|
| 5108 | relation[boundary=political] > way::core_boundary,
|
|---|
| 5109 | relation[boundary=maritime] > way::core_boundary,
|
|---|
| [17525] | 5110 | relation[boundary=hazard] > way::core_boundary,
|
|---|
| [14806] | 5111 | relation[boundary=national_park] > way::core_boundary,
|
|---|
| [8009] | 5112 | way[boundary=protected_area]::core_boundary,
|
|---|
| [7041] | 5113 | way[boundary=administrative]::core_boundary,
|
|---|
| 5114 | way[boundary=postal_code]::core_boundary,
|
|---|
| 5115 | way[boundary=political]::core_boundary,
|
|---|
| [8010] | 5116 | way[boundary=maritime]::core_boundary,
|
|---|
| [17525] | 5117 | way[boundary=hazard]::core_boundary,
|
|---|
| [7041] | 5118 | way[boundary=national_park]::core_boundary {
|
|---|
| 5119 | z-index: 2;
|
|---|
| 5120 | modifier: false;
|
|---|
| 5121 | width: 1;
|
|---|
| 5122 | color: boundary#FF6600;
|
|---|
| 5123 | dashes: 9,9;
|
|---|
| 5124 | }
|
|---|
| [13084] | 5125 | /* admin_level >=9 use the default width of 1 defined above */
|
|---|
| [13083] | 5126 | way[boundary=administrative][admin_level=7]::core_boundary,
|
|---|
| 5127 | relation[boundary=administrative][admin_level=7] > way::core_boundary,
|
|---|
| 5128 | way[boundary=administrative][admin_level=8]::core_boundary,
|
|---|
| 5129 | relation[boundary=administrative][admin_level=8] > way::core_boundary {
|
|---|
| [7041] | 5130 | width: 2;
|
|---|
| 5131 | }
|
|---|
| [13083] | 5132 | way[boundary=administrative][admin_level=5]::core_boundary,
|
|---|
| 5133 | relation[boundary=administrative][admin_level=5] > way::core_boundary,
|
|---|
| 5134 | way[boundary=administrative][admin_level=6]::core_boundary,
|
|---|
| 5135 | relation[boundary=administrative][admin_level=6] > way::core_boundary {
|
|---|
| [7041] | 5136 | width: 3;
|
|---|
| 5137 | }
|
|---|
| [13083] | 5138 | way[boundary=administrative][admin_level=3]::core_boundary,
|
|---|
| 5139 | relation[boundary=administrative][admin_level=3] > way::core_boundary,
|
|---|
| 5140 | way[boundary=administrative][admin_level=4]::core_boundary,
|
|---|
| 5141 | relation[boundary=administrative][admin_level=4] > way::core_boundary {
|
|---|
| [7041] | 5142 | width: 4;
|
|---|
| 5143 | }
|
|---|
| [13083] | 5144 | way[boundary=administrative][admin_level=1]::core_boundary,
|
|---|
| 5145 | relation[boundary=administrative][admin_level=1] > way::core_boundary,
|
|---|
| 5146 | way[boundary=administrative][admin_level=2]::core_boundary,
|
|---|
| 5147 | relation[boundary=administrative][admin_level=2] > way::core_boundary {
|
|---|
| [7041] | 5148 | width: 5;
|
|---|
| 5149 | }
|
|---|
| 5150 | node[boundary=national],
|
|---|
| 5151 | node[boundary=administrative],
|
|---|
| 5152 | node[boundary=postal_code],
|
|---|
| 5153 | node[boundary=political],
|
|---|
| 5154 | node[boundary=national_park] {
|
|---|
| [10706] | 5155 | icon-image: "presets/misc/deprecated.svg";
|
|---|
| [7454] | 5156 | set icon_z17;
|
|---|
| [7041] | 5157 | }
|
|---|
| [7377] | 5158 |
|
|---|
| [7383] | 5159 | /******************/
|
|---|
| 5160 | /* maxspeed nodes */
|
|---|
| 5161 | /******************/
|
|---|
| [8012] | 5162 | node[traffic_sign][maxspeed=none][!is_prop_set(icon-image)] {
|
|---|
| [10565] | 5163 | icon-image: "presets/vehicle/restriction/maxspeed_none.svg";
|
|---|
| [7454] | 5164 | set icon_z17;
|
|---|
| [7383] | 5165 | }
|
|---|
| [8012] | 5166 | node[traffic_sign][maxspeed=~/^[0-9]+$/][!is_prop_set(icon-image)] {
|
|---|
| [7383] | 5167 | maxspeedprop: tag(maxspeed);
|
|---|
| 5168 | set maxspeedclass;
|
|---|
| 5169 | }
|
|---|
| [8012] | 5170 | node[traffic_sign][maxspeed=signals][!is_prop_set(icon-image)] {
|
|---|
| [7383] | 5171 | maxspeedprop: " ?";
|
|---|
| 5172 | set maxspeedclass;
|
|---|
| 5173 | }
|
|---|
| [8012] | 5174 | node[traffic_sign][maxspeed=~/^[0-9]+ mph/][!is_prop_set(icon-image)] {
|
|---|
| [7383] | 5175 | maxspeedprop: get(split(" mph",tag(maxspeed)),0);
|
|---|
| 5176 | set maxspeedclass;
|
|---|
| 5177 | }
|
|---|
| [8012] | 5178 | node[traffic_sign][maxspeed=~/[0-9]+ km\/h/][!is_prop_set(icon-image)] {
|
|---|
| [7383] | 5179 | maxspeedprop: get(split(" km/h",tag(maxspeed)),0);
|
|---|
| 5180 | set maxspeedclass;
|
|---|
| 5181 | }
|
|---|
| [8012] | 5182 | node[traffic_sign][maxspeed=~/[0-9]+ knots/][!is_prop_set(icon-image)] {
|
|---|
| [7383] | 5183 | maxspeedprop: get(split(" knots",tag(maxspeed)),0);
|
|---|
| 5184 | set maxspeedclass;
|
|---|
| 5185 | }
|
|---|
| [7454] | 5186 | node[prop(maxspeedclass, default)][!is_prop_set(icon-image, default)]::core_maxnodebg {
|
|---|
| [7383] | 5187 | /* background (white) */
|
|---|
| 5188 | symbol-shape: circle;
|
|---|
| 5189 | symbol-size: 17;
|
|---|
| 5190 | symbol-fill-color: white;
|
|---|
| 5191 | major-z-index: 4.2;
|
|---|
| 5192 | }
|
|---|
| [8012] | 5193 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodebg,
|
|---|
| 5194 | node[traffic_sign][maxspeed=signals]::core_maxnodebg {
|
|---|
| [7383] | 5195 | /* background (black) */
|
|---|
| 5196 | symbol-fill-color: black;
|
|---|
| 5197 | }
|
|---|
| [7454] | 5198 | node[prop(maxspeedclass, default)]::core_maxnodefg {
|
|---|
| [7383] | 5199 | /* foreground (black text and red circle) */
|
|---|
| 5200 | symbol-shape: circle;
|
|---|
| 5201 | symbol-size: 15;
|
|---|
| 5202 | symbol-stroke-color: crimson;
|
|---|
| 5203 | symbol-stroke-width: 2;
|
|---|
| 5204 | text: prop(maxspeedprop, default);
|
|---|
| 5205 | font-size: 8;
|
|---|
| 5206 | font-weight: bold;
|
|---|
| 5207 | text-color: black;
|
|---|
| 5208 | text-anchor-horizontal: center;
|
|---|
| 5209 | text-anchor-vertical: center;
|
|---|
| 5210 | text-offset-x: 0;
|
|---|
| 5211 | text-offset-y: -1;
|
|---|
| 5212 | major-z-index: 4.2;
|
|---|
| 5213 | }
|
|---|
| [8012] | 5214 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodefg,
|
|---|
| 5215 | node[traffic_sign][maxspeed=signals]::core_maxnodefg {
|
|---|
| [7383] | 5216 | /* foreground (white text) */
|
|---|
| 5217 | text-color: white;
|
|---|
| 5218 | }
|
|---|
| [7454] | 5219 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodebg {
|
|---|
| 5220 | symbol-shape: none;
|
|---|
| 5221 | }
|
|---|
| 5222 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodefg {
|
|---|
| 5223 | text: none;
|
|---|
| 5224 | symbol-shape: none;
|
|---|
| 5225 | }
|
|---|
| [7383] | 5226 |
|
|---|
| [7454] | 5227 | /**************/
|
|---|
| 5228 | /* place tags */
|
|---|
| 5229 | /**************/
|
|---|
| [7377] | 5230 |
|
|---|
| [8986] | 5231 | area[setting("place_fill_colour")][place=continent],
|
|---|
| 5232 | area[setting("place_fill_colour")][place=country],
|
|---|
| 5233 | area[setting("place_fill_colour")][place=state],
|
|---|
| 5234 | area[setting("place_fill_colour")][place=region],
|
|---|
| 5235 | area[setting("place_fill_colour")][place=county],
|
|---|
| 5236 | area[setting("place_fill_colour")][place=city],
|
|---|
| 5237 | area[setting("place_fill_colour")][place=town],
|
|---|
| 5238 | area[setting("place_fill_colour")][place=village],
|
|---|
| 5239 | area[setting("place_fill_colour")][place=hamlet],
|
|---|
| 5240 | area[setting("place_fill_colour")][place=farm],
|
|---|
| 5241 | area[setting("place_fill_colour")][place=isolated_dwelling],
|
|---|
| 5242 | area[setting("place_fill_colour")][place=neighbourhood],
|
|---|
| 5243 | area[setting("place_fill_colour")][place=suburb],
|
|---|
| 5244 | area[setting("place_fill_colour")][place=locality],
|
|---|
| [13394] | 5245 | area[place=island],
|
|---|
| 5246 | area[place=islet] {
|
|---|
| [7454] | 5247 | fill-color: place#8de3cb;
|
|---|
| [10351] | 5248 | set place;
|
|---|
| [7454] | 5249 | }
|
|---|
| 5250 | node[place=continent],
|
|---|
| 5251 | node[place=country],
|
|---|
| 5252 | node[place=state],
|
|---|
| 5253 | node[place=region],
|
|---|
| [10018] | 5254 | node[place=county],
|
|---|
| 5255 | node[place=city],
|
|---|
| 5256 | node[place=town],
|
|---|
| 5257 | node[place=suburb],
|
|---|
| 5258 | node[place=village],
|
|---|
| [12998] | 5259 | node[place=quarter],
|
|---|
| [10018] | 5260 | node[place=neighbourhood],
|
|---|
| 5261 | node[place=hamlet],
|
|---|
| 5262 | node[place=isolated_dwelling],
|
|---|
| 5263 | node[place=farm],
|
|---|
| 5264 | node[place=island],
|
|---|
| 5265 | node[place=islet] {
|
|---|
| [7470] | 5266 | set icon_z0;
|
|---|
| 5267 | set text_z0;
|
|---|
| [7454] | 5268 | font-weight: bold;
|
|---|
| 5269 | text-color:black;
|
|---|
| 5270 | text-halo-color: white;
|
|---|
| 5271 | text-halo-radius: 1;
|
|---|
| [10351] | 5272 | set place;
|
|---|
| [10018] | 5273 | }
|
|---|
| 5274 |
|
|---|
| 5275 | node[place=continent],
|
|---|
| 5276 | node[place=country],
|
|---|
| 5277 | node[place=state],
|
|---|
| 5278 | node[place=region],
|
|---|
| 5279 | node[place=county] {
|
|---|
| [10808] | 5280 | icon-image: "presets/place/capital.svg";
|
|---|
| [7984] | 5281 | z-index: 2.9;
|
|---|
| [7454] | 5282 | }
|
|---|
| 5283 | node[place=city] {
|
|---|
| [10808] | 5284 | icon-image: "presets/place/city.svg";
|
|---|
| [7984] | 5285 | z-index: 2.8;
|
|---|
| [7454] | 5286 | }
|
|---|
| [7976] | 5287 | node[place=town] {
|
|---|
| [10808] | 5288 | icon-image: "presets/place/town.svg";
|
|---|
| [7984] | 5289 | z-index: 2.7;
|
|---|
| [7976] | 5290 | }
|
|---|
| 5291 | node[place=suburb] {
|
|---|
| [10808] | 5292 | icon-image: "presets/place/suburb.svg";
|
|---|
| [7984] | 5293 | z-index: 2.6;
|
|---|
| [7976] | 5294 | }
|
|---|
| 5295 | node[place=village] {
|
|---|
| [10808] | 5296 | icon-image: "presets/place/village.svg";
|
|---|
| [7984] | 5297 | z-index: 2.5;
|
|---|
| [7976] | 5298 | }
|
|---|
| [12998] | 5299 | node[place=quarter] {
|
|---|
| 5300 | icon-image: "presets/place/quarter.svg";
|
|---|
| 5301 | z-index: 2.5;
|
|---|
| 5302 | }
|
|---|
| [7976] | 5303 | node[place=neighbourhood] {
|
|---|
| [10808] | 5304 | icon-image: "presets/place/neighbourhood.svg";
|
|---|
| [7984] | 5305 | z-index: 2.4;
|
|---|
| 5306 | }
|
|---|
| 5307 | node[place=hamlet] {
|
|---|
| [10808] | 5308 | icon-image: "presets/place/hamlet.svg";
|
|---|
| [7984] | 5309 | z-index: 2.3;
|
|---|
| 5310 | }
|
|---|
| 5311 | node[place=isolated_dwelling] {
|
|---|
| [10808] | 5312 | icon-image: "presets/place/isolated_dwelling.svg";
|
|---|
| [7984] | 5313 | z-index: 2.2;
|
|---|
| 5314 | }
|
|---|
| 5315 | node[place=farm] {
|
|---|
| [10808] | 5316 | icon-image: "presets/place/farm.svg";
|
|---|
| [7976] | 5317 | z-index: 2.1;
|
|---|
| [7454] | 5318 | }
|
|---|
| [9013] | 5319 | node|z15-[place=locality],
|
|---|
| 5320 | node|z-14[place=locality][!setting("hide_icons")] {
|
|---|
| [10706] | 5321 | icon-image: "presets/place/locality.svg";
|
|---|
| [7454] | 5322 | font-weight: bold;
|
|---|
| [13382] | 5323 | text-color: black;
|
|---|
| [7454] | 5324 | text-halo-color: white;
|
|---|
| 5325 | text-halo-radius: 1;
|
|---|
| 5326 | }
|
|---|
| 5327 | node[place=island] {
|
|---|
| [10706] | 5328 | icon-image: "presets/place/island.svg";
|
|---|
| [7454] | 5329 | }
|
|---|
| 5330 | node[place=islet] {
|
|---|
| [10706] | 5331 | icon-image: "presets/place/islet.svg";
|
|---|
| [7454] | 5332 | }
|
|---|
| 5333 |
|
|---|
| [13382] | 5334 | area[place=square] {
|
|---|
| 5335 | fill-color: place#8de3cb;
|
|---|
| 5336 | }
|
|---|
| 5337 | node[place=square] {
|
|---|
| 5338 | icon-image: "presets/place/square.svg";
|
|---|
| 5339 | set icon_z17;
|
|---|
| 5340 | }
|
|---|
| 5341 |
|
|---|
| [7454] | 5342 | /***************************/
|
|---|
| 5343 | /* "work in progress" tags */
|
|---|
| 5344 | /***************************/
|
|---|
| 5345 |
|
|---|
| [16796] | 5346 | node|z17-[fixme]::core_note_fixme,
|
|---|
| 5347 | node|z-16[fixme][!setting("hide_icons")]::core_note_fixme,
|
|---|
| 5348 | node|z17-[FIXME]::core_note_fixme,
|
|---|
| 5349 | node|z-16[FIXME][!setting("hide_icons")]::core_note_fixme {
|
|---|
| [9097] | 5350 | object-z-index: 10;
|
|---|
| [10808] | 5351 | icon-image: "presets/misc/fixme_annotation.svg";
|
|---|
| [7454] | 5352 | }
|
|---|
| [16796] | 5353 | node|z17-[note][setting("note_annotation")]::core_note_fixme,
|
|---|
| 5354 | node|z-16[note][setting("note_annotation")][!setting("hide_icons")]::core_note_fixme {
|
|---|
| [7454] | 5355 | object-z-index: 10;
|
|---|
| [10808] | 5356 | icon-image: "presets/misc/note_annotation.svg";
|
|---|
| [7454] | 5357 | }
|
|---|
| [16796] | 5358 | node|z16-[note][fixme][setting("note_annotation")]::core_note_fixme,
|
|---|
| 5359 | node|z-16[note][fixme][setting("note_annotation")][!setting("hide_icons")]::core_note_fixme,
|
|---|
| 5360 | node|z17-[note][FIXME][setting("note_annotation")]::core_note_fixme,
|
|---|
| 5361 | node|z-16[note][FIXME][setting("note_annotation")][!setting("hide_icons")]::core_note_fixme {
|
|---|
| [10808] | 5362 | icon-image: "presets/misc/note_fixme_annotation.svg";
|
|---|
| [9097] | 5363 | }
|
|---|
| [7454] | 5364 |
|
|---|
| 5365 | /****************************************/
|
|---|
| 5366 | /* zoom levels and general node display */
|
|---|
| 5367 | /****************************************/
|
|---|
| 5368 |
|
|---|
| 5369 | /*
|
|---|
| 5370 | Summary of different zoom levels:
|
|---|
| [13382] | 5371 | (any zoom) place=* (except locality and square) and a few natural icons with their text is shown
|
|---|
| [13321] | 5372 | |z-14 tagged way nodes are hidden completely
|
|---|
| [7470] | 5373 | |z-15 untagged way nodes are hidden completely
|
|---|
| [9013] | 5374 | |z15 place=locality icon
|
|---|
| [16796] | 5375 | |z16- place=locality text
|
|---|
| [7470] | 5376 | |z17- normal POI icons (without text),
|
|---|
| 5377 | street name along highway=* ways
|
|---|
| 5378 | |z18- text for normal POI icons is shown
|
|---|
| [7454] | 5379 |
|
|---|
| [13382] | 5380 | * 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] | 5381 | * all these zoom features are modifiable via style settings
|
|---|
| [7454] | 5382 | * maxspeed icons should not be distinguishable from POIs with "icon-image" property
|
|---|
| 5383 |
|
|---|
| 5384 | */
|
|---|
| 5385 |
|
|---|
| 5386 | node|z-16[setting("hide_icons")],
|
|---|
| [7458] | 5387 | node|z17-[!is_prop_set("icon-image")][setting("hide_icons")]!.maxspeedclass,
|
|---|
| 5388 | node[!is_prop_set("icon-image")][!setting("hide_icons")]!.maxspeedclass {
|
|---|
| [7456] | 5389 | symbol-size: 2;
|
|---|
| [7377] | 5390 | symbol-shape: square;
|
|---|
| 5391 | symbol-stroke-color: node_standard#ffff00;
|
|---|
| [7386] | 5392 | major-z-index: 4.95; /* put node squares above line text */
|
|---|
| [7377] | 5393 | }
|
|---|
| [7454] | 5394 | way > node|z-15[setting("shrink_nodes")]!:tagged {
|
|---|
| [7428] | 5395 | symbol-shape: none;
|
|---|
| 5396 | }
|
|---|
| [7454] | 5397 | node:connection {
|
|---|
| [7377] | 5398 | symbol-stroke-color: node_connection#ffff00;
|
|---|
| 5399 | }
|
|---|
| [7428] | 5400 | node:tagged {
|
|---|
| [7378] | 5401 | symbol-stroke-color: none;
|
|---|
| 5402 | symbol-fill-color: node_tagged#00ffff;
|
|---|
| [7377] | 5403 | }
|
|---|
| [15017] | 5404 | node:tagged[!is_prop_set("icon-image")]!.maxspeedclass {
|
|---|
| 5405 | symbol-fill-color: node_tagged_without_icon#00ffff; /* by default same color as above but user configurable */
|
|---|
| 5406 | }
|
|---|
| [13321] | 5407 | 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 */
|
|---|
| 5408 | symbol-shape: none;
|
|---|
| 5409 | }
|
|---|
| [7377] | 5410 |
|
|---|
| [7456] | 5411 | way > node|z16[setting("shrink_nodes")]!:tagged { symbol-size: 1; }
|
|---|
| [7377] | 5412 |
|
|---|
| [7456] | 5413 | node|z17[setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5414 | way > node|z17[setting("shrink_nodes")] { symbol-size: 2; }
|
|---|
| 5415 | node|z17[setting("shrink_nodes")]:connection { symbol-size: 4; }
|
|---|
| [7377] | 5416 |
|
|---|
| [7456] | 5417 | node|z18[setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5418 | way > node|z18[setting("shrink_nodes")] { symbol-size: 3; }
|
|---|
| 5419 | node|z18[setting("shrink_nodes")]:connection { symbol-size: 5; }
|
|---|
| [7377] | 5420 |
|
|---|
| [7456] | 5421 | node|z19-[setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5422 | way > node|z19-[setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5423 | node|z19-[setting("shrink_nodes")]:connection { symbol-size: 6; }
|
|---|
| [7377] | 5424 |
|
|---|
| [7456] | 5425 | node[!setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5426 | way > node[!setting("shrink_nodes")] { symbol-size: 4; }
|
|---|
| 5427 | node[!setting("shrink_nodes")]:connection { symbol-size: 6; }
|
|---|
| [7454] | 5428 |
|
|---|
| [9451] | 5429 | node:selected {
|
|---|
| 5430 | symbol-shape: square;
|
|---|
| 5431 | symbol-size: 6;
|
|---|
| 5432 | symbol-fill-color: node_selected#ff0000;
|
|---|
| 5433 | symbol-stroke-color: node_selected#ff0000;
|
|---|
| 5434 | }
|
|---|
| 5435 |
|
|---|
| [7470] | 5436 | node|z-16[setting("hide_icons")].icon_z17!.icon_z0,
|
|---|
| [7454] | 5437 | relation|z-16[type=restriction][setting("hide_icons")] {
|
|---|
| 5438 | icon-image: none;
|
|---|
| 5439 | }
|
|---|
| [7470] | 5440 | node|z-17[setting("hide_icons")]!.text_z0 {
|
|---|
| [7377] | 5441 | text: none;
|
|---|
| 5442 | }
|
|---|
| [9013] | 5443 | node|z16-17[setting("hide_icons")][place=locality] {
|
|---|
| 5444 | text: auto;
|
|---|
| 5445 | }
|
|---|
| [7377] | 5446 |
|
|---|
| [10177] | 5447 | node|z-18,area|z-18 { font-size: 8; }
|
|---|
| [7383] | 5448 | node|z19,area|z19 { font-size: 9; }
|
|---|
| [10177] | 5449 | node|z20-,area|z20- { font-size: 11; }
|
|---|
| [7377] | 5450 |
|
|---|
| [10351] | 5451 | node.place, way.place, area.place { font-size: 11; }
|
|---|
| 5452 |
|
|---|
| 5453 |
|
|---|
| [7386] | 5454 | /*******************/
|
|---|
| 5455 | /* way text labels */
|
|---|
| 5456 | /*******************/
|
|---|
| 5457 |
|
|---|
| [13875] | 5458 | way|z18-[highway=motorway][setting("highway_labels")],
|
|---|
| 5459 | way|z18-[highway=motorway_link][setting("highway_labels")],
|
|---|
| 5460 | way|z18-[highway=trunk][setting("highway_labels")],
|
|---|
| 5461 | way|z18-[highway=trunk_link][setting("highway_labels")],
|
|---|
| 5462 | way|z18-[highway=primary][setting("highway_labels")],
|
|---|
| 5463 | way|z18-[highway=primary_link][setting("highway_labels")],
|
|---|
| 5464 | way|z18-[highway=secondary][setting("highway_labels")],
|
|---|
| 5465 | way|z18-[highway=secondary_link][setting("highway_labels")],
|
|---|
| 5466 | way|z18-[highway=tertiary][setting("highway_labels")],
|
|---|
| 5467 | way|z18-[highway=tertiary_link][setting("highway_labels")],
|
|---|
| 5468 | way|z18-[highway=unclassified][setting("highway_labels")],
|
|---|
| 5469 | way|z18-[highway=residential][setting("highway_labels")],
|
|---|
| 5470 | way|z18-[highway=living_street][setting("highway_labels")],
|
|---|
| 5471 | way|z18-[highway=escape][setting("highway_labels")],
|
|---|
| 5472 | way|z18-[highway=pedestrian][!area?][setting("highway_labels")],
|
|---|
| 5473 | way|z18-[highway=steps][setting("highway_labels")],
|
|---|
| 5474 | way|z18-[highway=footway][setting("highway_labels")],
|
|---|
| 5475 | way|z18-[highway=path][setting("highway_labels")],
|
|---|
| 5476 | way|z18-[highway=service][setting("highway_labels")],
|
|---|
| 5477 | way|z18-[highway=track][setting("highway_labels")],
|
|---|
| 5478 | way|z18-[highway=cycleway][setting("highway_labels")],
|
|---|
| 5479 | way|z18-[highway=bridleway][setting("highway_labels")],
|
|---|
| 5480 | way|z18-[highway=bus_guideway][setting("highway_labels")],
|
|---|
| 5481 | way|z18-[highway=raceway][setting("highway_labels")],
|
|---|
| 5482 | way|z18-[highway=construction][setting("highway_labels")],
|
|---|
| 5483 | way|z18-[highway=road][setting("highway_labels")] {
|
|---|
| [7386] | 5484 | text: auto;
|
|---|
| 5485 | text-color: black;
|
|---|
| [13875] | 5486 | font-size: 10;
|
|---|
| [7386] | 5487 | text-position: line;
|
|---|
| 5488 | text-halo-opacity: 1;
|
|---|
| 5489 | text-halo-radius: 1.5;
|
|---|
| 5490 | }
|
|---|
| [13875] | 5491 | way|z18-[highway=motorway][setting("highway_labels")],
|
|---|
| 5492 | way|z18-[highway=motorway_link][setting("highway_labels")] {
|
|---|
| [7439] | 5493 | text-halo-color: motorway#809bc0;
|
|---|
| 5494 | }
|
|---|
| [13875] | 5495 | way|z18-[highway=trunk][setting("highway_labels")],
|
|---|
| 5496 | way|z18-[highway=trunk_link][setting("highway_labels")] {
|
|---|
| [7439] | 5497 | text-halo-color: trunk#7fc97f;
|
|---|
| 5498 | }
|
|---|
| [13875] | 5499 | way|z18-[highway=primary][setting("highway_labels")],
|
|---|
| 5500 | way|z18-[highway=primary_link][setting("highway_labels")] {
|
|---|
| [7439] | 5501 | text-halo-color: primary#fb805f;
|
|---|
| 5502 | }
|
|---|
| [13875] | 5503 | way|z18-[highway=secondary][setting("highway_labels")],
|
|---|
| 5504 | way|z18-[highway=secondary_link][setting("highway_labels")] {
|
|---|
| [7439] | 5505 | text-halo-color: secondary#fdbf6f;
|
|---|
| 5506 | }
|
|---|
| [13875] | 5507 | way|z18-[highway=tertiary][setting("highway_labels")],
|
|---|
| 5508 | way|z18-[highway=tertiary_link][setting("highway_labels")] {
|
|---|
| [7439] | 5509 | text-halo-color: tertiary#f7f496;
|
|---|
| 5510 | }
|
|---|
| [13875] | 5511 | way|z18-[highway=unclassified][setting("highway_labels")],
|
|---|
| 5512 | way|z18-[highway=residential][setting("highway_labels")],
|
|---|
| 5513 | way|z18-[highway=living_street][setting("highway_labels")],
|
|---|
| 5514 | way|z18-[highway=escape][setting("highway_labels")] {
|
|---|
| [7439] | 5515 | text-halo-color: street#c0c0c0;
|
|---|
| 5516 | }
|
|---|
| [13875] | 5517 | way|z18-[highway=pedestrian][!area?][setting("highway_labels")],
|
|---|
| 5518 | way|z18-[highway=steps][setting("highway_labels")],
|
|---|
| 5519 | way|z18-[highway=footway][setting("highway_labels")],
|
|---|
| 5520 | way|z18-[highway=path][setting("highway_labels")] {
|
|---|
| [7457] | 5521 | text-halo-color: foot#00ff00;
|
|---|
| 5522 | }
|
|---|
| [13875] | 5523 | way|z18-[highway=service][setting("highway_labels")] {
|
|---|
| [7439] | 5524 | text-halo-color: service#809bc0;
|
|---|
| 5525 | }
|
|---|
| [13875] | 5526 | way|z18-[highway=track][setting("highway_labels")] {
|
|---|
| [7904] | 5527 | text-halo-color: highway_track#6e541c;
|
|---|
| [7439] | 5528 | }
|
|---|
| [13875] | 5529 | way|z18-[highway=cycleway][setting("highway_labels")],
|
|---|
| 5530 | way|z18-[highway=path][setting("highway_labels")].cyclecolor {
|
|---|
| [8999] | 5531 | text-halo-color: bicycle#b100ff;
|
|---|
| 5532 | }
|
|---|
| [13875] | 5533 | way|z18-[highway=bridleway][setting("highway_labels")] {
|
|---|
| [8999] | 5534 | text-halo-color: horse#a18559;
|
|---|
| 5535 | }
|
|---|
| [13875] | 5536 | way|z18-[highway=bus_guideway][setting("highway_labels")] {
|
|---|
| [8999] | 5537 | text-halo-color: rail#404040;
|
|---|
| 5538 | }
|
|---|
| [13875] | 5539 | way|z18-[highway=raceway][setting("highway_labels")] {
|
|---|
| [8999] | 5540 | text-halo-color: raceway#ff80ff;
|
|---|
| 5541 | }
|
|---|
| [13875] | 5542 | way|z18-[highway=construction][setting("highway_labels")] {
|
|---|
| [8999] | 5543 | text-halo-color: construction#ffff00;
|
|---|
| 5544 | }
|
|---|
| [13875] | 5545 | way|z18-[highway=road][setting("highway_labels")] {
|
|---|
| [8999] | 5546 | text-halo-color: highway_road#770000;
|
|---|
| 5547 | }
|
|---|
| [13875] | 5548 | way|z18-[highway][railway=platform][setting("highway_labels")] {
|
|---|
| [9000] | 5549 | text-halo-color: rail#404040;
|
|---|
| 5550 | }
|
|---|
| [13875] | 5551 | way|z18-[highway][public_transport=platform][setting("highway_labels")] {
|
|---|
| [9000] | 5552 | text-halo-color: service#809bc0;
|
|---|
| 5553 | }
|
|---|
| [7520] | 5554 | way|z19[highway][setting("highway_labels")] {
|
|---|
| [7386] | 5555 | font-size: 11;
|
|---|
| 5556 | }
|
|---|
| [7520] | 5557 | way|z20-[highway][setting("highway_labels")] {
|
|---|
| [7386] | 5558 | font-size: 12;
|
|---|
| 5559 | }
|
|---|
| 5560 |
|
|---|
| [9009] | 5561 | /*************/
|
|---|
| 5562 | /* Area fill */
|
|---|
| 5563 | /*************/
|
|---|
| 5564 |
|
|---|
| [9099] | 5565 | /* small extent for unclosed area (see below for closed) */
|
|---|
| [9009] | 5566 | area[setting("partial_fill")] {
|
|---|
| [9099] | 5567 | fill-extent: 15;
|
|---|
| 5568 | }
|
|---|
| 5569 |
|
|---|
| [9302] | 5570 | /* Turn partial fill off and use plain fill, when the partial fill covers about
|
|---|
| [9099] | 5571 | 100% of the area. This reduces artifacts (typically for incomplete multipolygons).
|
|---|
| 5572 | Switching between full and partial fill while drawing an area might be irritating,
|
|---|
| 5573 | so only do this at low zoom. */
|
|---|
| 5574 | area|z-13[setting("partial_fill")] {
|
|---|
| [9114] | 5575 | fill-extent-threshold: 1.0;
|
|---|
| [9099] | 5576 | }
|
|---|
| 5577 |
|
|---|
| 5578 | /* Larger extent for closed areas.
|
|---|
| [9302] | 5579 | Turn partial fill off, when it covers more than about 50% of the area. This avoids
|
|---|
| [9099] | 5580 | areas with small unfilled patches in the center. */
|
|---|
| 5581 | area[setting("partial_fill")]:closed2 {
|
|---|
| [9009] | 5582 | fill-extent: 25;
|
|---|
| [9114] | 5583 | fill-extent-threshold: JOSM_pref("draw.area.extent_threshold", 0.5);
|
|---|
| [9099] | 5584 | }
|
|---|
| 5585 |
|
|---|