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