source: josm/trunk/styles/standard/elemstyles.mapcss@ 7172

Last change on this file since 7172 was 7172, checked in by bastiK, 10 years ago

applied #9258 - display bicycle=yes; foot=designated; highway=path in default paint style (patch by Klumbumbus)

File size: 75.3 KB
Line 
1/*
2Main JOSM map paint style.
3
4Originally in XML format, migrated to MapCSS.
5Documentation of MapCSS format:
6
7 http://josm.openstreetmap.de/wiki/Help/Styles/MapCSSImplementation
8
9*/
10
11
12meta {
13 icon: "dialogs/mappaint/josm_small.png";
14}
15
16/***************************/
17/* "work in progress" tags */
18/***************************/
19
20node[fixme]::core_fixme,
21node[FIXME]::core_fixme {
22 z-index: 2;
23 icon-image: "misc/fixme.png";
24 text: auto;
25/* priority="10000"*/
26}
27node[note] {
28 icon-image: "misc/note.png";
29 text: auto;
30/* priority="-100000"*/
31}
32
33/*********************/
34/* turn restrictions */
35/*********************/
36
37relation[restriction=no_left_turn],
38node[restriction=no_left_turn] {
39 icon-image: "vehicle/restriction/turn_restrictions/no_left_turn.png";
40 text: auto;
41}
42relation[restriction=no_right_turn],
43node[restriction=no_right_turn] {
44 icon-image: "vehicle/restriction/turn_restrictions/no_right_turn.png";
45 text: auto;
46}
47relation[restriction=no_straight_on],
48node[restriction=no_straight_on] {
49 icon-image: "vehicle/restriction/turn_restrictions/no_straight_on.png";
50 text: auto;
51}
52relation[restriction=no_u_turn],
53node[restriction=no_u_turn] {
54 icon-image: "vehicle/restriction/turn_restrictions/no_u_turn.png";
55 text: auto;
56}
57relation[restriction=only_left_turn],
58node[restriction=only_left_turn] {
59 icon-image: "vehicle/restriction/turn_restrictions/only_left_turn.png";
60 text: auto;
61}
62relation[restriction=only_right_turn],
63node[restriction=only_right_turn] {
64 icon-image: "vehicle/restriction/turn_restrictions/only_right_turn.png";
65 text: auto;
66}
67relation[restriction=only_straight_on],
68node[restriction=only_straight_on] {
69 icon-image: "vehicle/restriction/turn_restrictions/only_straight_on.png";
70 text: auto;
71}
72
73/******************/
74/* bridge, tunnel */
75/******************/
76
77way[bridge?]::core_bridge,
78way[bridge=viaduct]::core_bridge,
79way[bridge=swing]::core_bridge,
80way[bridge=movable]::core_bridge,
81way[bridge=cantilever]::core_bridge,
82way[bridge=covered]::core_bridge,
83way[bridge=low_water_crossing]::core_bridge,
84way[bridge=trestle]::core_bridge,
85way[bridge=aqueduct]::core_bridge {
86 object-z-index: 1;
87 width: +4;
88 color: bridge#000080;
89 opacity: 0.5;
90}
91way[tunnel?]::core_tunnel {
92 object-z-index: 1;
93 width: +4;
94 color: bridge#000080;
95 opacity: 0.5;
96}
97node[oneway],
98node[bridge],
99node[tunnel?],
100node[tunnel?!],
101node[cutting?!],
102node[embankment?!] {
103 icon-image: "misc/deprecated.png";
104 text: auto;
105}
106
107/*****************************/
108/* building/entrance/address */
109/*****************************/
110
111node["addr:housenumber"],
112node["addr:postcode"] {
113 icon-image: "misc/housenumber.png";
114 text: auto;
115/* priority="-50000"*/
116}
117way["addr:interpolation"=odd] {
118 width: 1;
119 realwidth: 1;
120 color: address#1C86EE;
121 dashes: 15,4;
122}
123way["addr:interpolation"=even] {
124 width: 1;
125 realwidth: 1;
126 color: address#1C86EE;
127 dashes: 4,4;
128}
129way["addr:interpolation"=all],
130way["addr:interpolation"=alphabetic] {
131 width: 1;
132 realwidth: 1;
133 color: address#1C86EE;
134 dashes: 2,2;
135}
136area[building][!building?!] {
137 fill-color: building#cb9999;
138/* priority="-10000"*/
139}
140node[building][!building?!] {
141 icon-image: "misc/landmark/building.png";
142 text: auto;
143/* priority="-10000"*/
144}
145node[building=garage] {
146 icon-image: "misc/landuse/garages.png";
147 text: auto;
148}
149node[building=garages] {
150 icon-image: "misc/landuse/garages.png";
151 text: auto;
152}
153node[building=entrance] {
154 icon-image: "misc/entrance-yes.png";
155 text: auto;
156/* priority="100"*/
157}
158node[entrance=yes] {
159 icon-image: "misc/entrance-yes.png";
160 text: auto;
161}
162node[entrance=main] {
163 icon-image: "misc/entrance-main.png";
164 text: auto;
165}
166node[entrance=service] {
167 icon-image: "misc/entrance-service.png";
168 text: auto;
169}
170node[entrance=exit] {
171 icon-image: "misc/entrance-exit.png";
172 text: auto;
173}
174node[entrance=emergency] {
175 icon-image: "misc/entrance-emergency.png";
176 text: auto;
177}
178
179/****************************/
180/* access restrictions tags */
181/****************************/
182
183way[access?!]::core_access {
184 z-index: -1;
185 width: +2;
186 color: no#ff8080;
187 dashes: 2,2;
188}
189way[access=permissive]::core_access {
190 z-index: -1;
191 width: +2;
192 color: permissive#80ff80;
193 dashes: 2,2;
194}
195way[access=private]::core_access {
196 z-index: -1;
197 width: +2;
198 color: private#ff8080;
199 dashes: 2,2;
200}
201way[access=destination]::core_access {
202 z-index: -1;
203 width: +2;
204 color: destination#8080ff;
205 dashes: 2,2;
206}
207node[access?!] {
208 icon-image: "vehicle/restriction/access.png";
209/* priority="-100"*/
210}
211node[access=permissive],
212node[access=private],
213node[access=destination] {
214 icon-image: "misc/no_icon.png";
215 text: auto;
216/* priority="-100"*/
217}
218node[bicycle?!] {
219 icon-image: "vehicle/restriction/bicycle.png";
220/* priority="-100"*/
221}
222node[bicycle=designated] {
223 icon-image: "vehicle/restriction/bicycle-designated.png";
224 text: auto;
225/* priority="-100"*/
226}
227node[foot?!] {
228 icon-image: "vehicle/restriction/foot.png";
229/* priority="-100"*/
230}
231node[foot=designated] {
232 icon-image: "vehicle/restriction/foot-designated.png";
233 text: auto;
234/* priority="-100"*/
235}
236node[goods?!],
237node[hgv?!] {
238 icon-image: "vehicle/restriction/goods.png";
239}
240node[horse?!] {
241 icon-image: "vehicle/restriction/horse.png";
242}
243node[horse=designated] {
244 icon-image: "vehicle/restriction/horse-designated.png";
245}
246node[motorcycle?!] {
247 icon-image: "vehicle/restriction/motorbike.png";
248}
249node[motorcar?!] {
250 icon-image: "vehicle/restriction/motorcar.png";
251}
252node[psv?!] {
253 icon-image: "vehicle/restriction/psv.png";
254}
255node[motorboat?!],
256node[boat?!] {
257 icon-image: "misc/no_icon.png";
258}
259node[noexit?] {
260 icon-image: "vehicle/restriction/dead_end.png";
261/* priority="-100"*/
262}
263node[maxweight] {
264 icon-image: "vehicle/restriction/maxweight.png";
265}
266node[maxheight] {
267 icon-image: "vehicle/restriction/maxheight.png";
268}
269node[maxwidth] {
270 icon-image: "vehicle/restriction/maxwidth.png";
271}
272node[maxlength] {
273 icon-image: "vehicle/restriction/maxlength.png";
274}
275node[maxspeed] {
276 icon-image: "vehicle/restriction/speed.png";
277}
278node[minspeed] {
279 icon-image: "vehicle/restriction/minspeed.png";
280}
281node[maxstay],
282node[toll] {
283 icon-image: "misc/no_icon.png";
284}
285
286/**************/
287/* place tags */
288/**************/
289
290/* lot's of "openGeoDB:..." tags can be found in germany */
291node["openGeoDB:type"=Stadt],
292node["openGeoDB:type"=Kreis],
293node["openGeoDB:type"=Gemeinde],
294node["openGeoDB:type"=Ort],
295node["openGeoDB:type"=District],
296node["openGeoDB:location"=locality] {
297 icon-image: "place/settlement/town.png";
298 text: auto;
299}
300area[place=continent],
301area[place=country],
302area[place=state],
303area[place=region],
304area[place=county],
305area[place=city],
306area[place=town],
307area[place=village],
308area[place=hamlet],
309area[place=isolated_dwelling],
310area[place=neighbourhood],
311area[place=suburb],
312area[place=locality],
313area[place=island],
314area[place=islet] {
315 fill-color: place#8de3cb;
316}
317node[place=continent],
318node[place=country],
319node[place=state],
320node[place=region],
321node[place=county] {
322 icon-image: "place/settlement/capital.png";
323 text: auto;
324}
325node[place=city] {
326 icon-image: "place/settlement/city.png";
327 text: auto;
328}
329node[place=town],
330node[place=village],
331node[place=hamlet],
332node[place=isolated_dwelling],
333node[place=neighbourhood],
334node[place=suburb] {
335 icon-image: "place/settlement/town.png";
336 text: auto;
337}
338node[place=locality] {
339 icon-image: "place/locality.png";
340 text: auto;
341}
342node[place=island] {
343 icon-image: "place/island.png";
344 text: auto;
345}
346node[place=islet] {
347 icon-image: "place/islet.png";
348 text: auto;
349}
350/* special display of unreviewed tiger data (USA) */
351way["tiger:reviewed"=no]::core_tiger {
352 z-index: -1;
353 width: 10;
354 color: tiger_data#808000;
355 opacity: 0.6;
356}
357
358/****************/
359/* barrier tags */
360/****************/
361
362node[barrier] {
363 icon-image: "vehicle/restriction/barrier.png";
364 text: auto;
365}
366way[barrier=bollard] {
367 width: 3;
368 color: barrier#F0F050;
369 dashes: 3,9;
370}
371node[barrier=bollard] {
372 icon-image: "vehicle/restriction/bollard.png";
373 text: auto;
374}
375node[barrier=gate] {
376 icon-image: "vehicle/gate.png";
377 text: auto;
378}
379way[barrier=hedge],
380way[barrier=fence],
381way[barrier=wall],
382way[barrier=guard_rail],
383way[barrier=city_wall],
384way[barrier=retaining_wall],
385way[barrier=block] {
386 width: 3;
387 color: barrier#F0F050;
388}
389node[barrier=hedge],
390node[barrier=wall],
391node[barrier=guard_rail],
392node[barrier=city_wall],
393node[barrier=retaining_wall] {
394 icon-image: "misc/deprecated.png";
395 text: auto;
396}
397node[barrier=block] {
398 icon-image: "vehicle/block.png";
399 text: auto;
400}
401node[barrier=stile] {
402 icon-image: "vehicle/stile.png";
403 text: auto;
404}
405node[barrier=turnstile] {
406 icon-image: "vehicle/turnstile.png";
407 text: auto;
408}
409node[barrier=cycle_barrier] {
410 icon-image: "vehicle/cycle_barrier.png";
411 text: auto;
412}
413node[barrier=lift_gate] {
414 icon-image: "vehicle/lift_gate.png";
415 text: auto;
416}
417node[barrier=swing_gate] {
418 icon-image: "vehicle/swing_gate.png";
419 text: auto;
420}
421area[barrier=toll_booth]:closed {
422 fill-color: barrier#F0F050;
423}
424node[barrier=toll_booth] {
425 icon-image: "vehicle/toll_booth.png";
426 text: auto;
427}
428node[barrier=entrance] {
429 icon-image: "vehicle/entrance.png";
430 text: auto;
431}
432node[barrier=cattle_grid] {
433 icon-image: "vehicle/cattle_grid.png";
434 text: auto;
435}
436node[barrier=border_control] {
437 icon-image: "vehicle/border_control.png";
438 text: auto;
439}
440node[barrier=sally_port] {
441 icon-image: "vehicle/sally_port.png";
442 text: auto;
443}
444node[barrier=fence],
445node[barrier=kissing_gate],
446node[barrier=bump_gate],
447node[barrier=portcullis],
448node[barrier=spikes],
449node[barrier=bus_trap],
450node[barrier=drawbridge],
451node[barrier=hampshire_gate] {
452 icon-image: "misc/no_icon.png";
453 text: auto;
454}
455
456/****************/
457/* highway tags */
458/****************/
459
460way[motorroad?]::core_motorroad {
461 z-index: -1;
462 width: +4;
463 color: motorroad#0000c0;
464}
465way[highway=motorway] {
466 width: 3;
467 realwidth: 8;
468 color: motorway#809bc0;
469}
470way[highway=motorway_link] {
471 width: 3;
472 realwidth: 5;
473 color: motorway#809bc0;
474}
475way[highway=trunk] {
476 width: 3;
477 realwidth: 8;
478 color: trunk#7fc97f;
479}
480way[highway=trunk_link] {
481 width: 3;
482 realwidth: 5;
483 color: trunk#7fc97f;
484}
485way[highway=primary] {
486 width: 3;
487 realwidth: 8;
488 color: primary#fb805f;
489}
490way[highway=primary_link] {
491 width: 3;
492 realwidth: 5;
493 color: primary#fb805f;
494}
495way[highway=secondary] {
496 width: 3;
497 realwidth: 6;
498 color: secondary#fdbf6f;
499}
500way[highway=secondary_link] {
501 width: 3;
502 realwidth: 5;
503 color: secondary#fdbf6f;
504}
505way[highway=tertiary] {
506 width: 2;
507 realwidth: 5;
508 color: tertiary#f7f496;
509}
510way[highway=tertiary_link] {
511 width: 2;
512 realwidth: 4;
513 color: tertiary#f7f496;
514}
515way[highway=unclassified] {
516 width: 2;
517 realwidth: 5;
518 color: street#c0c0c0;
519}
520way[highway=road] {
521 width: 2;
522 realwidth: 5;
523 color: deprecated#ff0000;
524}
525way[highway=unsurfaced] {
526 width: 1;
527 realwidth: 3;
528 color: street#c0c0c0;
529}
530way[highway=track] {
531 width: 1;
532 realwidth: 3;
533 color: highway_track#006600;
534/* priority="-10000"*/
535}
536way[highway=residential] {
537 width: 2;
538 realwidth: 5;
539 color: street#c0c0c0;
540}
541way[highway=living_street] {
542 width: 2;
543 realwidth: 3;
544 dashes: 9,9;
545 dashes-background-color: livingdashed#00ff00;
546 color: street#c0c0c0;
547}
548way[highway=service][area?], relation[type=multipolygon][highway=service] {
549 fill-color: service#809bc0;
550}
551way[highway=service][!area?] {
552 width: 1;
553 realwidth: 3;
554 color: service#809bc0;
555}
556way[highway=bridleway] {
557 width: 1;
558 realwidth: 2;
559 color: horse#c08000;
560}
561way[highway=cycleway] {
562 width: 1;
563 realwidth: 2;
564 color: bicycle#b100ff;
565}
566way[highway=footway][area?], relation[type=multipolygon][highway=footway] {
567 fill-color: foot#00ff00;
568}
569way[highway=footway][!area?] {
570 width: 1;
571 realwidth: 1;
572 color: foot#00ff00;
573}
574way[highway=path][bicycle!=designated][bicycle!=official][foot!=designated][foot!=official] {
575 width: 1;
576 realwidth: 1;
577 dashes: 9,9;
578 color: foot#00ff00;
579}
580/* display path with bicycle/foot=designated/official as if it was cycleway/footway */
581way[highway=path][bicycle=designated],
582way[highway=path][bicycle=official] {
583 width: 1;
584 realwidth: 2;
585 color: bicycle#b100ff;
586/* priority="100"*/
587}
588way[highway=path][foot=designated],
589way[highway=path][foot=official] {
590 width: 1;
591 realwidth: 1;
592 color: foot#00ff00;
593/* priority="100"*/
594}
595way[highway=path][bicycle=designated][foot=designated],
596way[highway=path][bicycle=official][foot=official] {
597 width: 1;
598 realwidth: 2;
599 color: bicycle#b100ff;
600 dashes: 14,14;
601 dashes-background-color: foot#00ff00;
602/* priority="200"*/
603}
604way[highway=cycleway][foot=yes],
605way[highway=path][bicycle=designated][foot=yes],
606way[highway=path][bicycle=official][foot=yes] {
607 width: 1;
608 realwidth: 2;
609 color: bicycle#b100ff;
610 dashes: 21,7;
611 dashes-background-color: foot#00ff00;
612}
613way[highway=footway][bicycle=yes],
614way[highway=path][bicycle=yes][foot=designated],
615way[highway=path][bicycle=yes][foot=official] {
616 width: 1;
617 realwidth: 2;
618 color: foot#00ff00;
619 dashes: 21,7;
620 dashes-background-color: bicycle#b100ff;
621}
622way[highway=pedestrian][area?], relation[type=multipolygon][highway=pedestrian] {
623 width: 3;
624 realwidth: 5;
625 color: foot#00ff00;
626 fill-color: foot#00ff00;
627}
628way[highway=pedestrian] {
629 width: 3;
630 realwidth: 5;
631 color: foot#00ff00;
632}
633way[highway=steps] {
634 width: 1;
635 realwidth: 1;
636 color: foot#00ff00;
637 dashes: 2,2;
638}
639node[highway=steps] {
640 icon-image: "transport/steps.png";
641 text: auto;
642}
643way[highway=bus_guideway] {
644 width: 1;
645 color: rail#404040;
646 dashes: 9,9;
647}
648way[highway=raceway] {
649 width: 1;
650 color: raceway#ff80ff;
651}
652node[direction=clockwise] {
653 icon-image: "vehicle/restriction/roundabout_left.png";
654 text: auto;
655/* priority="10000"*/
656}
657node[highway=mini_roundabout] {
658 icon-image: "vehicle/restriction/roundabout_right.png";
659/* icon-image: "vehicle/restriction/roundabout_left.png";*/
660 text: auto;
661}
662node[highway=stop] {
663 icon-image: "vehicle/restriction/stop.png";
664 text: auto;
665}
666node[highway=give_way] {
667 icon-image: "vehicle/restriction/right_of_way.png";
668 text: auto;
669}
670node[highway=traffic_signals] {
671 icon-image: "vehicle/restriction/traffic-light.png";
672 text: auto;
673}
674node[highway=street_lamp] {
675 icon-image: "misc/streetlamp.png";
676 text: auto;
677}
678node[highway=speed_camera] {
679 icon-image: "vehicle/restriction/speed_trap.png";
680 text: auto;
681}
682node[traffic_sign=city_limit] {
683 icon-image: "vehicle/restriction/citylimit.png";
684 text: auto;
685}
686node[highway=crossing] {
687 icon-image: "vehicle/zebra_crossing.png";
688 text: auto;
689}
690node[highway=incline], node[highway=incline_steep] {
691 icon-image: "vehicle/restriction/incline.png";
692 text: auto;
693}
694node[highway=motorway_junction] {
695 icon-image: "vehicle/exit.png";
696 text: auto;
697}
698area[highway=services] {
699 fill-color: services#c0c0c0;
700}
701node[highway=services] {
702 icon-image: "vehicle/services.png";
703 text: auto;
704}
705area[highway=rest_area] {
706 fill-color: services#c0c0c0;
707}
708node[highway=rest_area] {
709 icon-image: "vehicle/parking.png";
710 text: auto;
711}
712node[highway=ford], node[ford?] {
713 icon-image: "vehicle/ford.png";
714 text: auto;
715}
716way[ford?]::core_ford {
717 z-index: 1;
718 width: 2;
719 realwidth: 5;
720 color: water#0000ff;
721 dashes: 9,9;
722}
723area[highway=platform]:closed {
724 fill-color: highway_platform#c0c0c0;
725}
726way[highway=platform] {
727 width: 2;
728 color: highway_platform#c0c0c0;
729}
730node[highway=turning_circle] {
731 icon-image: "vehicle/turning_circle.png";
732 text: auto;
733}
734node[highway=passing_place] {
735 icon-image: "vehicle/passing_place.png";
736 text: auto;
737}
738way[highway=construction] {
739 width: 2;
740 realwidth: 5;
741 color: construction#ffff00;
742 dashes: 9,9;
743/* priority="10"*/
744}
745node[highway=construction] {
746 icon-image: "misc/construction.png";
747 text: auto;
748/* priority="10"*/
749}
750area[highway=emergency_access_point] {
751 fill-color: emergency_access_point#c0c0c0;
752}
753node[highway=emergency_access_point] {
754 icon-image: "service/emergency_access_point.png";
755 text: auto;
756}
757node[highway=motorway], node[highway=motorway_link],
758node[highway=trunk], node[highway=trunk_link],
759node[highway=primary], node[highway=primary_link],
760node[highway=secondary], node[highway=secondary_link],
761node[highway=tertiary], node[highway=tertiary_link],
762node[highway=unclassified],
763node[highway=road],
764node[highway=unsurfaced],
765node[highway=track],
766node[highway=residential],
767node[highway=living_street],
768node[highway=service],
769node[highway=bridleway],
770node[highway=cycleway],
771node[highway=footway],
772node[highway=path],
773node[highway=pedestrian],
774node[highway=bus_guideway],
775node[highway=platform] {
776 icon-image: "misc/deprecated.png";
777 text: auto;
778}
779
780/************************/
781/* traffic_calming tags */
782/************************/
783
784node[traffic_calming] {
785 icon-image: "vehicle/traffic_calming.png";
786 text: auto;
787/* priority="-5"*/
788}
789node[traffic_calming=chicane] {
790 icon-image: "vehicle/chicane.png";
791 text: auto;
792}
793node[traffic_calming=choker],
794node[traffic_calming=cushion] {
795 icon-image: "vehicle/passing_place.png";
796 text: auto;
797}
798
799/****************/
800/* junction tag */
801/****************/
802
803node[junction=roundabout] {
804 icon-image: "vehicle/restriction/roundabout_right.png";
805 text: auto;
806}
807
808/*****************/
809/* cycleway tags */
810/*****************/
811
812way[cycleway=lane]::core_cycleway,
813way[cycleway=opposite_lane]::core_cycleway {
814 object-z-index: 1;
815 width: +0;
816 color: bicycle#b100ff;
817 dashes: 8,14;
818}
819way[cycleway=track]::core_cycleway,
820way[cycleway=opposite_track]::core_cycleway {
821 object-z-index: 1;
822 width: +0;
823 color: bicycle#b100ff;
824 dashes: 14,14;
825}
826way[cycleway=opposite]::core_cycleway {
827 object-z-index: 1;
828 width: +0;
829 color: bicycle#b100ff;
830 dashes: 4,10;
831}
832node[cycleway=lane], node[cycleway=opposite_lane],
833node[cycleway=track], node[cycleway=opposite_track],
834node[cycleway=opposite] {
835 icon-image: "misc/deprecated.png";
836 text: auto;
837}
838
839/******************/
840/* tracktype tags */
841/******************/
842
843way[highway=track][tracktype=grade1] {
844 dashes: 2,2;
845}
846way[highway=track][tracktype=grade2] {
847 dashes: 4,4;
848}
849way[highway=track][tracktype=grade3] {
850 dashes: 6,6;
851}
852way[highway=track][tracktype=grade4] {
853 dashes: 8,8;
854}
855way[highway=track][tracktype=grade5] {
856 dashes: 10,10;
857}
858
859/**************/
860/* piste tags */
861/**************/
862
863area[piste:difficulty=easy]:closed::core_piste {
864 fill-color: piste_easy#0000ff;
865}
866way[piste:difficulty=easy]::core_piste {
867 z-index: -1; /* below line style from highway=* tag */
868 modifier: false; /* suppress default line if there is no style on default layer */
869 width: 6;
870 color: piste_easy#0000ff;
871}
872area[piste:difficulty=intermediate]:closed::core_piste {
873 fill-color: piste_intermediate#ff0000;
874}
875way[piste:difficulty=intermediate]::core_piste {
876 z-index: -1;
877 modifier: false;
878 width: 6;
879 color: piste_intermediate#ff0000;
880}
881area[piste:difficulty=advanced]:closed::core_piste {
882 fill-color: piste_advanced#606060;
883}
884way[piste:difficulty=advanced]::core_piste {
885 z-index: -1;
886 modifier: false;
887 width: 6;
888 color: piste_advanced#606060;
889}
890area[piste:difficulty=expert]:closed::core_piste {
891 fill-color: piste_expert#606060;
892}
893way[piste:difficulty=expert]::core_piste {
894 z-index: -1;
895 modifier: false;
896 width: 6;
897 color: piste_expert#606060;
898}
899area[piste:difficulty=freeride]:closed::core_piste {
900 fill-color: piste_freeride#ffff00;
901}
902way[piste:difficulty=freeride]::core_piste {
903 z-index: -1;
904 modifier: false;
905 width: 6;
906 color: piste_freeride#ffff00;
907}
908area[piste:difficulty=novice]:closed::core_piste {
909 fill-color: piste_novice#00ff00;
910}
911way[piste:difficulty=novice]::core_piste {
912 z-index: -1;
913 modifier: false;
914 width: 6;
915 color: piste_novice#00ff00;
916}
917node[piste:difficulty=easy],
918node[piste:difficulty=intermediate],
919node[piste:difficulty=advanced],
920node[piste:difficulty=expert],
921node[piste:difficulty=freeride],
922node[piste:difficulty=novice] {
923 icon-image: "sport/skiing.png";
924}
925
926/**************/
927/* power tags */
928/**************/
929
930area[power=tower] {
931 fill-color: power#eeeeee;
932}
933node[power=tower] {
934 icon-image: "misc/landmark/power/tower_small.png";
935 text: auto;
936}
937node[power=pole] {
938 icon-image: "misc/landmark/power/pole.png";
939 text: auto;
940}
941way[power=line],
942way[power=minor_line] {
943 width: 1;
944 color: power#eeeeee;
945}
946node[power=line],
947node[power=minor_line] {
948 icon-image: "misc/deprecated.png";
949 text: auto;
950}
951area[power=plant],
952area[power=sub_station],
953area[power=substation],
954area[power=transformer] {
955 fill-color: power#eeeeee;
956}
957node[power=plant],
958node[power=sub_station],
959node[power=substation],
960node[power=cable_distribution_cabinet] {
961 icon-image: "misc/landmark/power.png";
962 text: auto;
963}
964node[power=transformer] {
965 icon-image: "misc/landmark/power/transformer.png";
966 text: auto;
967}
968/* power_source is deprecated by the wiki, but still in use */
969/* generator:source replaces power_source */
970area[power_source=wind], area[generator:source=wind],
971area[power_source=hydro], area[generator:source=hydro],
972area[power_source=fossil],
973area[power_source=coal], area[generator:source=coal],
974area[power_source=gas], area[generator:source=gas],
975area[power_source=photovoltaic],
976area[power_source=nuclear], area[generator:source=nuclear],
977area[power=generator] {
978 fill-color: power#eeeeee;
979}
980node[power_source=wind], node[generator:source=wind] {
981 icon-image: "misc/landmark/power/wind.png";
982 text: auto;
983}
984node[power_source=hydro], node[generator:source=hydro] {
985 icon-image: "misc/landmark/power/hydro.png";
986 text: auto;
987}
988node[power_source=fossil],
989node[power_source=coal], node[generator:source=coal],
990node[power_source=gas], node[generator:source=gas] {
991 icon-image: "misc/landmark/power/fossil.png";
992 text: auto;
993}
994node[power_source=photovoltaic] {
995/* FIXME photovoltaic NOT fossil*/
996 icon-image: "misc/landmark/power/fossil.png";
997 text: auto;
998}
999node[power_source=nuclear], node[generator:source=nuclear] {
1000 icon-image: "misc/landmark/power/nuclear.png";
1001 text: auto;
1002}
1003node[power=generator] {
1004 icon-image: "misc/landmark/power.png";
1005 text: auto;
1006/* priority="-10000"*/
1007}
1008
1009/*****************/
1010/* man_made tags */
1011/*****************/
1012
1013area[man_made=beacon],
1014area[man_made=chimney],
1015area[man_made=crane],
1016area[man_made=flagpole],
1017area[man_made=gasometer],
1018area[man_made=groyne],
1019area[man_made=lighthouse],
1020area[man_made=monitoring_station],
1021area[man_made=mineshaft],
1022area[man_made=adit] {
1023 fill-color: manmade#d8d8d8;
1024}
1025node[man_made=beacon] {
1026 icon-image: "misc/landmark/beacon.png";
1027 text: auto;
1028}
1029node[man_made=chimney] {
1030 icon-image: "misc/landmark/chimney.png";
1031 text: auto;
1032}
1033node[man_made=crane] {
1034 icon-image: "misc/landmark/crane.png";
1035 text: auto;
1036}
1037node[man_made=flagpole] {
1038 icon-image: "misc/flag.png";
1039 text: auto;
1040}
1041node[man_made=gasometer] {
1042 icon-image: "misc/landmark/gasometer.png";
1043 text: auto;
1044}
1045node[man_made=groyne] {
1046 icon-image: "nautical/groyne.png";
1047 text: auto;
1048}
1049node[man_made=lighthouse] {
1050 icon-image: "misc/landmark/lighthouse.png";
1051 text: auto;
1052}
1053node[man_made=monitoring_station] {
1054 icon-image: "misc/landmark/measurement_station.png";
1055 text: auto;
1056}
1057node[man_made=mineshaft] {
1058 icon-image: "misc/landmark/mine.png";
1059 text: auto;
1060}
1061node[man_made=adit] {
1062 icon-image: "misc/landmark/adit.png";
1063 text: auto;
1064}
1065area[man_made=pier]:closed {
1066 fill-color: pier#660000;
1067}
1068way[man_made=pier] {
1069 width: 2;
1070 color: pier#660000;
1071}
1072node[man_made=pier] {
1073 icon-image: "nautical/pier.png";
1074 text: auto;
1075}
1076way[man_made=pipeline] {
1077 width: 2;
1078 color: pipeline#660000;
1079}
1080node[man_made=pipeline] {
1081 icon-image: "misc/deprecated.png";
1082 text: auto;
1083}
1084node[man_made=petroleum_well] {
1085 icon-image: "misc/no_icon.png";
1086 text: auto;
1087}
1088area[man_made=reservoir_covered],
1089area[man_made=surveillance],
1090area[man_made=survey_point],
1091area[man_made=tower],
1092area[man_made=wastewater_plant],
1093area[man_made=watermill],
1094area[man_made=water_tower],
1095area[man_made=water_well],
1096area[man_made=windmill],
1097area[man_made=works],
1098area[man_made=water_works] {
1099 fill-color: manmade#d8d8d8;
1100}
1101node[man_made=reservoir_covered] {
1102 icon-image: "misc/landmark/reservoir_covered.png";
1103 text: auto;
1104}
1105node[man_made=surveillance] {
1106 icon-image: "misc/surveillance.png";
1107 text: auto;
1108}
1109node[man_made=survey_point] {
1110 icon-image: "misc/landmark/survey_point.png";
1111 text: auto;
1112}
1113node[man_made=tower] {
1114 icon-image: "misc/landmark/tower.png";
1115 text: auto;
1116}
1117node[man_made=wastewater_plant] {
1118 icon-image: "misc/landmark/wastewater_plant.png";
1119 text: auto;
1120}
1121node[man_made=watermill] {
1122 icon-image: "misc/landmark/watermill.png";
1123 text: auto;
1124}
1125node[man_made=water_tower] {
1126 icon-image: "misc/landmark/water_tower.png";
1127 text: auto;
1128}
1129node[man_made=water_well] {
1130 icon-image: "misc/landmark/water_well.png";
1131 text: auto;
1132}
1133node[man_made=windmill] {
1134 icon-image: "misc/landmark/windmill.png";
1135 text: auto;
1136}
1137node[man_made=works] {
1138 icon-image: "misc/landmark/works.png";
1139 text: auto;
1140}
1141node[man_made=water_works] {
1142 icon-image: "misc/landmark/water_works.png";
1143 text: auto;
1144}
1145
1146/***************/
1147/* office tags */
1148/***************/
1149
1150area[office=company],
1151area[office=government] {
1152 fill-color: office#de5696;
1153}
1154node[office=company] {
1155 icon-image: "icons/office_blue.png";
1156 text: auto;
1157}
1158node[office=government] {
1159 icon-image: "icons/office_pink.png";
1160 text: auto;
1161}
1162
1163/****************/
1164/* leisure tags */
1165/****************/
1166
1167area[leisure=sports_centre],
1168area[leisure=golf_course],
1169area[leisure=stadium],
1170area[leisure=track][!area?!]:closed,
1171area[leisure=pitch],
1172area[leisure=water_park] {
1173 fill-color: leisure#c7f1a3;
1174}
1175node[leisure=sports_centre] {
1176 icon-image: "sport/centre.png";
1177 text: auto;
1178}
1179node[leisure=golf_course] {
1180 icon-image: "sport/golf.png";
1181 text: auto;
1182}
1183node[leisure=stadium] {
1184 icon-image: "sport/stadium.png";
1185 text: auto;
1186}
1187way[leisure=track] {
1188 width: 2;
1189 color: leisure#c7f1a3;
1190}
1191node[leisure=track] {
1192 icon-image: "sport/track.png";
1193 text: auto;
1194}
1195node[leisure=pitch] {
1196 icon-image: "sport/pitch.png";
1197 text: auto;
1198}
1199node[leisure=water_park] {
1200 icon-image: "leisure/water_park.png";
1201 text: auto;
1202}
1203area[leisure=marina] {
1204 fill-color: marina#0070cf;
1205}
1206node[leisure=marina] {
1207 icon-image: "nautical/marina.png";
1208 text: auto;
1209}
1210area[leisure=slipway],
1211area[leisure=fishing],
1212area[leisure=nature_reserve],
1213area[leisure=park],
1214area[leisure=playground],
1215area[leisure=garden],
1216area[leisure=common] {
1217 fill-color: leisure#c7f1a3;
1218}
1219node[leisure=slipway] {
1220 icon-image: "nautical/slipway.png";
1221 text: auto;
1222}
1223node[leisure=fishing] {
1224 icon-image: "sport/fishing.png";
1225 text: auto;
1226}
1227node[leisure=nature_reserve] {
1228 icon-image: "leisure/nature_reserve.png";
1229 text: auto;
1230}
1231node[leisure=park] {
1232 icon-image: "leisure/park.png";
1233 text: auto;
1234}
1235node[leisure=playground] {
1236 icon-image: "leisure/playground.png";
1237 text: auto;
1238}
1239node[leisure=garden] {
1240 icon-image: "leisure/garden.png";
1241 text: auto;
1242}
1243node[leisure=common] {
1244 icon-image: "leisure/common.png";
1245 text: auto;
1246}
1247area[leisure=swimming_pool] {
1248 fill-color: swimming_pool#51c4ef;
1249}
1250node[leisure=swimming_pool] {
1251 icon-image: "sport/pool.png";
1252 text: auto;
1253}
1254area[leisure=miniature_golf],
1255area[leisure=dog_park],
1256area[leisure=ice_rink],
1257area[leisure=sauna] {
1258 fill-color: leisure#c7f1a3;
1259}
1260node[leisure=miniature_golf] {
1261 icon-image: "sport/golf.png";
1262 text: auto;
1263}
1264node[leisure=dog_park] {
1265 icon-image: "leisure/dog.png";
1266 text: auto;
1267}
1268node[leisure=ice_rink] {
1269 icon-image: "sport/hockey.png";
1270 text: auto;
1271}
1272node[leisure=sauna] {
1273 icon-image: "leisure/sauna.png";
1274 text: auto;
1275}
1276
1277/*************/
1278/* shop tags */
1279/*************/
1280
1281area[shop=supermarket],
1282area[shop=convenience],
1283area[shop=bakery],
1284area[shop=butcher],
1285area[shop=bicycle],
1286area[shop=doityourself],
1287area[shop=dry_cleaning],
1288area[shop=laundry],
1289area[shop=outdoor],
1290area[shop=kiosk],
1291area[shop=alcohol],
1292area[shop=beverages],
1293area[shop=books],
1294area[shop=boutique],
1295area[shop=car],
1296area[shop=car_dealer],
1297area[shop=car_repair],
1298area[shop=tyres],
1299area[shop=chemist],
1300area[shop=clothes],
1301area[shop=computer],
1302area[shop=confectionery],
1303area[shop=copyshop],
1304area[shop=curtain],
1305area[shop=cycle_repair],
1306area[shop=department_store],
1307area[shop=deli],
1308area[shop=electronics],
1309area[shop=erotic],
1310area[shop=furniture],
1311area[shop=fabric],
1312area[shop=florist],
1313area[shop=frame],
1314area[shop=gift],
1315area[shop=greengrocer],
1316area[shop=garden_centre],
1317area[shop=hairdresser],
1318area[shop=hardware],
1319area[shop=hearing_aids],
1320area[shop=hifi],
1321area[shop=jewelry],
1322area[shop=kitchen],
1323area[shop=mall],
1324area[shop=mobile_phone],
1325area[shop=motorcycle],
1326area[shop=musical_instrument],
1327area[shop=newsagent],
1328area[shop=optician],
1329area[shop=paint],
1330area[shop=pawnbroker],
1331area[shop=seafood],
1332area[shop=shoes],
1333area[shop=sports],
1334area[shop=stationery],
1335area[shop=tailor],
1336area[shop=travel_agency],
1337area[shop=toys],
1338area[shop=vacuum_cleaner],
1339area[shop=variety_store],
1340area[shop=video],
1341area[shop=bookmaker],
1342area[shop=lottery],
1343area[shop=shopping_centre] {
1344 fill-color: shop#00005f;
1345}
1346node[shop=supermarket] {
1347 icon-image: "shop/supermarket.png";
1348 text: auto;
1349}
1350node[shop=convenience] {
1351 icon-image: "shop/convenience.png";
1352 text: auto;
1353}
1354node[shop=bakery] {
1355 icon-image: "shop/groceries/bakery.png";
1356 text: auto;
1357}
1358node[shop=butcher] {
1359 icon-image: "shop/groceries/butcher.png";
1360 text: auto;
1361}
1362node[shop=bicycle] {
1363 icon-image: "sport/bicycle.png";
1364 text: auto;
1365}
1366node[shop=doityourself] {
1367 icon-image: "shop/diy_store.png";
1368 text: auto;
1369}
1370node[shop=dry_cleaning],
1371node[shop=laundry] {
1372 icon-image: "shop/laundry.png";
1373 text: auto;
1374}
1375node[shop=outdoor] {
1376 icon-image: "shop/sports/outdoor.png";
1377 text: auto;
1378}
1379node[shop=kiosk] {
1380 icon-image: "shop/kiosk.png";
1381 text: auto;
1382}
1383node[shop=alcohol],
1384node[shop=beverages] {
1385 icon-image: "shop/beverages.png";
1386 text: auto;
1387}
1388node[shop=books] {
1389 icon-image: "shop/rental/library.png";
1390 text: auto;
1391}
1392node[shop=boutique] {
1393 icon-image: "shop/boutique.png";
1394 text: auto;
1395}
1396node[shop=car],
1397node[shop=car_dealer] {
1398 icon-image: "transport/car.png";
1399 text: auto;
1400}
1401node[shop=car_repair] {
1402 icon-image: "vehicle/repair_shop.png";
1403 text: auto;
1404}
1405node[shop=tyres] {
1406 icon-image: "vehicle/tyres.png";
1407 text: auto;
1408}
1409node[shop=chemist] {
1410 icon-image: "shop/chemist.png";
1411 text: auto;
1412}
1413node[shop=clothes] {
1414 icon-image: "shop/clothes.png";
1415 text: auto;
1416}
1417node[shop=computer] {
1418 icon-image: "shop/computer.png";
1419 text: auto;
1420}
1421node[shop=confectionery] {
1422 icon-image: "shop/groceries/confectionery.png";
1423 text: auto;
1424}
1425node[shop=copyshop] {
1426 icon-image: "shop/copyshop.png";
1427 text: auto;
1428}
1429node[shop=curtain] {
1430 icon-image: "shop/curtain.png";
1431 text: auto;
1432}
1433node[shop=cycle_repair] {
1434 icon-image: "sport/bicycle.png";
1435 text: auto;
1436}
1437node[shop=department_store] {
1438 icon-image: "shop/mall.png";
1439 text: auto;
1440}
1441node[shop=deli] {
1442 icon-image: "shop/groceries/deli.png";
1443 text: auto;
1444}
1445node[shop=electronics] {
1446 icon-image: "shop/electronics.png";
1447 text: auto;
1448}
1449node[shop=erotic] {
1450 icon-image:"shop/erotic.png";
1451 text: auto;
1452}
1453node[shop=furniture] {
1454 icon-image: "shop/furniture.png";
1455 text: auto;
1456}
1457node[shop=fabric] {
1458 icon-image: "shop/fabric.png";
1459 text: auto;
1460}
1461node[shop=florist] {
1462 icon-image: "shop/florist.png";
1463 text: auto;
1464}
1465node[shop=frame] {
1466 icon-image: "shop/frame.png";
1467 text: auto;
1468}
1469node[shop=gift] {
1470 icon-image: "presets/present.svg";
1471 text: auto;
1472}
1473node[shop=greengrocer] {
1474 icon-image: "shop/groceries/greengrocer.png";
1475 text: auto;
1476}
1477node[shop=garden_centre] {
1478 icon-image: "shop/garden_centre.png";
1479 text: auto;
1480}
1481node[shop=hairdresser] {
1482 icon-image: "shop/hairdresser.png";
1483 text: auto;
1484}
1485node[shop=hardware] {
1486 icon-image: "shop/hardware.png";
1487 text: auto;
1488}
1489node[shop=hearing_aids] {
1490 icon-image: "shop/hearing_aids.png";
1491 text: auto;
1492}
1493node[shop=hifi] {
1494 icon-image: "shop/hifi.png";
1495 text: auto;
1496}
1497node[shop=jewelry] {
1498 icon-image: "shop/jewelry.png";
1499 text: auto;
1500}
1501node[shop=kitchen] {
1502 icon-image: "shop/kitchen.png";
1503 text: auto;
1504}
1505node[shop=mall] {
1506 icon-image: "shop/mall.png";
1507 text: auto;
1508}
1509node[shop=mobile_phone] {
1510 icon-image: "shop/mobile_phone.png";
1511 text: auto;
1512}
1513node[shop=motorcycle] {
1514 icon-image: "vehicle/motorbike.png";
1515 text: auto;
1516}
1517node[shop=musical_instrument] {
1518 icon-image: "shop/musical_instrument.png";
1519 text: auto;
1520}
1521node[shop=newsagent] {
1522 icon-image: "shop/kiosk.png";
1523 text: auto;
1524}
1525node[shop=optician] {
1526 icon-image: "shop/optician.png";
1527 text: auto;
1528}
1529node[shop=paint] {
1530 icon-image: "shop/paint.png";
1531 text: auto;
1532}
1533node[shop=pawnbroker] {
1534 icon-image: "presets/pawnbroker.svg";
1535 text: auto;
1536}
1537node[shop=seafood] {
1538 icon-image: "shop/groceries/seafood.png";
1539 text: auto;
1540}
1541node[shop=shoes] {
1542 icon-image: "shop/shoes.png";
1543 text: auto;
1544}
1545node[shop=sports] {
1546 icon-image: "sport/multi.png";
1547 text: auto;
1548}
1549node[shop=stationery] {
1550 icon-image: "shop/stationery.png";
1551 text: auto;
1552}
1553node[shop=tailor] {
1554 icon-image: "shop/tailor.png";
1555 text: auto;
1556}
1557node[shop=travel_agency] {
1558 icon-image: "place/island.png";
1559 text: auto;
1560}
1561node[shop=toys] {
1562 icon-image: "shop/toys.png";
1563 text: auto;
1564}
1565node[shop=vacuum_cleaner] {
1566 icon-image: "shop/vacuum_cleaner.png";
1567 text: auto;
1568}
1569node[shop=variety_store] {
1570 icon-image: "shop/variety_store.png";
1571 text: auto;
1572}
1573node[shop=video] {
1574 icon-image: "shop/video.png";
1575 text: auto;
1576}
1577node[shop=bookmaker] {
1578 icon-image: "presets/lottery.svg";
1579 text: auto;
1580}
1581node[shop=lottery] {
1582 icon-image: "presets/lottery.svg";
1583 text: auto;
1584}
1585/* duplicate of shopping_centre? */
1586node[shop=shopping_centre] {
1587 icon-image: "shop/mall.png";
1588 text: auto;
1589}
1590
1591/****************/
1592/* amenity tags */
1593/****************/
1594
1595area[amenity=pub],
1596area[amenity=biergarten],
1597area[amenity=nightclub],
1598area[amenity=stripclub],
1599area[amenity=brothel],
1600area[amenity=cafe],
1601area[amenity=restaurant],
1602area[amenity=food_court],
1603area[amenity=fast_food],
1604area[amenity=bar],
1605area[amenity=ice_cream] {
1606 fill-color: amenity#ecba52;
1607}
1608node[amenity=pub] {
1609 icon-image: "food/pub.png";
1610 text: auto;
1611}
1612node[amenity=biergarten] {
1613 icon-image: "food/biergarten.png";
1614 text: auto;
1615}
1616node[amenity=nightclub] {
1617 icon-image: "leisure/nightclub.png";
1618 text: auto;
1619}
1620node[amenity=stripclub] {
1621 icon-image: "leisure/stripclub.png";
1622 text: auto;
1623}
1624node[amenity=brothel] {
1625 icon-image: "leisure/stripclub.png";
1626 text: auto;
1627}
1628node[amenity=cafe] {
1629 icon-image: "food/cafe.png";
1630 text: auto;
1631}
1632node[amenity=restaurant],
1633node[amenity=food_court] {
1634 icon-image: "food/restaurant.png";
1635 text: auto;
1636}
1637node[amenity=fast_food] {
1638 icon-image: "food/fastfood.png";
1639 text: auto;
1640}
1641node[amenity=bar] {
1642 icon-image: "food/bar.png";
1643 text: auto;
1644}
1645node[amenity=ice_cream] {
1646 icon-image: "food/icecream.png";
1647 text: auto;
1648}
1649area[amenity=parking_space],
1650area[amenity=parking],
1651area[parking=multi-storey],
1652area[amenity=motorcycle_parking],
1653area[amenity=bicycle_parking],
1654area[parking=park_and_ride],
1655area[parking=underground],
1656area[parking=surface],
1657area[amenity=bicycle_rental],
1658area[amenity=car_rental],
1659area[amenity=car_sharing],
1660area[amenity=car_wash],
1661area[amenity=taxi],
1662area[amenity=fuel],
1663area[amenity=charging_station] {
1664 fill-color: amenity_traffic#f7efb7;
1665}
1666node[amenity=parking_space] {
1667 icon-image: "vehicle/parking.png";
1668 text: auto;
1669/* priority="-500"*/
1670}node[amenity=parking] {
1671 icon-image: vehicle/parking.png;
1672 text: auto;
1673}
1674node[parking=multi-storey] {
1675 icon-image: "vehicle/parking/multi-storey.png";
1676 text: auto;
1677/* priority="10000"*/
1678}
1679node[amenity=motorcycle_parking] {
1680 icon-image: "vehicle/parking/motorbike.png";
1681 text: auto;
1682/* priority="20000";*/
1683}
1684node[amenity=bicycle_parking] {
1685 icon-image: "vehicle/parking/bicycle.png";
1686 text: auto;
1687/* priority="20000"*/
1688}
1689node[parking=park_and_ride] {
1690 icon-image: "vehicle/parking/park_ride.png";
1691 text: auto;
1692}
1693node[parking=underground] {
1694 icon-image: "vehicle/parking/underground.png";
1695 text: auto;
1696}
1697node[parking=surface] {
1698 icon-image: "vehicle/parking.png";
1699 text: auto;
1700}
1701node[amenity=parking_space][wheelchair?] {
1702 icon-image: "vehicle/parking/handicapped.png";
1703 text: auto;
1704}
1705node[amenity=bicycle_rental] {
1706 icon-image: "vehicle/rental/bicycle.png";
1707 text: auto;
1708}
1709node[amenity=car_rental] {
1710 icon-image: "vehicle/rental/car.png";
1711 text: auto;
1712}
1713node[amenity=car_sharing] {
1714 icon-image: "vehicle/car_sharing.png";
1715 text: auto;
1716}
1717node[amenity=car_wash] {
1718 icon-image: "vehicle/car_wash.png";
1719 text: auto;
1720}
1721node[amenity=taxi] {
1722 icon-image: "transport/taxi.png";
1723 text: auto;
1724}
1725node[amenity=fuel] {
1726 icon-image: "vehicle/fuel.png";
1727 text: auto;
1728/* priority="10000"*/
1729}
1730node[amenity=charging_station] {
1731 icon-image: "accommodation/camping/hookup.png";
1732 text: auto;
1733/* priority="1000"*/
1734}
1735node[amenity=grit_bin] {
1736 icon-image: "misc/grit_bin.png";
1737 text: auto;
1738}
1739area[amenity=telephone] {
1740 fill-color: amenity_light#f7efb7;
1741}
1742node[amenity=telephone] {
1743 icon-image: "service/telephone.png";
1744 text: auto;
1745}
1746node[amenity=clock] {
1747 icon-image: "service/clock.png";
1748 text: auto;
1749}
1750/* Rule to delete by end of 2013 if this deprecated tag has finally been replaced by emergency=phone below */
1751area[amenity=emergency_phone] {
1752 fill-color: amenity_light#f7efb7;
1753}
1754node[amenity=emergency_phone] {
1755 icon-image: "vehicle/emergency_phone.png";
1756 text: auto;
1757}
1758area[emergency=phone],
1759area[emergency=aed],
1760area[emergency=defibrillator],
1761area[amenity=toilets],
1762area[amenity=recycling] {
1763 fill-color: amenity_light#f7efb7;
1764}
1765node[emergency=phone] {
1766 icon-image: "vehicle/emergency_phone.png";
1767 text: auto;
1768}
1769node[emergency=aed] {
1770 icon-image: "presets/aed.svg";
1771 text: auto;
1772}
1773node[emergency=defibrillator] {
1774 icon-image: "presets/aed.svg";
1775 text: auto;
1776}
1777node[amenity=toilets] {
1778 icon-image: "service/toilets.png";
1779 text: auto;
1780}
1781node[amenity=recycling] {
1782 icon-image: "service/recycling.png";
1783 text: auto;
1784}
1785node[amenity=waste_basket] {
1786 icon-image: "service/recycling/trash-bin.png";
1787 text: auto;
1788}
1789node[amenity=waste_disposal] {
1790 icon-image: "service/recycling/waste_disposal.png";
1791 text: auto;
1792}
1793area[amenity=public_building],
1794area[amenity=townhall],
1795area[amenity=embassy],
1796area[amenity=community_centre] {
1797 fill-color: amenity_light#f7efb7;
1798}
1799node[amenity=public_building],
1800node[amenity=townhall] {
1801 icon-image: "service.png";
1802 text: auto;
1803}
1804node[amenity=embassy] {
1805 icon-image: "service/administration/embassy.png";
1806 text: auto;
1807}
1808node[amenity=community_centre] {
1809 icon-image: "service/community_centre.png";
1810 text: auto;
1811}
1812area[amenity=drinking_water],
1813area[amenity=fountain] {
1814 fill-color: light_water#00005f;
1815}
1816node[amenity=drinking_water] {
1817 icon-image: "food/drinking_water.png";
1818 text: auto;
1819}
1820node[amenity=fountain] {
1821 icon-image: "misc/landmark/spring.png";
1822 text: auto;
1823}
1824area[amenity=place_of_worship],
1825area[amenity=grave_yard],
1826area[amenity=crematorium],
1827area[amenity=post_office],
1828area[amenity=post_box],
1829area[amenity=studio],
1830area[amenity=school],
1831area[amenity=university],
1832area[amenity=college],
1833area[amenity=kindergarten],
1834area[amenity=driving_school] {
1835 fill-color: amenity_light#f7efb7;
1836}
1837node[amenity=place_of_worship] {
1838 icon-image: "religion.png";
1839 text: auto;
1840/* priority="-10000"*/
1841}
1842node[religion=bahai] {
1843 icon-image: "religion/bahai.png";
1844 text: auto;
1845}
1846node[religion=buddhist] {
1847 icon-image: "religion/buddhism.png";
1848 text: auto;
1849}
1850node[religion=christian] {
1851 icon-image: "religion/church.png";
1852 text: auto;
1853}
1854node[religion=hindu] {
1855 icon-image: "religion/hinduism.png";
1856 text: auto;
1857}
1858node[religion=jain] {
1859 icon-image: "religion/jainism.png";
1860 text: auto;
1861}
1862node[religion=jewish] {
1863 icon-image: "religion/jewish.png";
1864 text: auto;
1865}
1866node[religion=muslim] {
1867 icon-image: "religion/muslim.png";
1868 text: auto;
1869}
1870node[religion=sikh] {
1871 icon-image: "religion/sikhism.png";
1872 text: auto;
1873}
1874node[religion=shinto] {
1875 icon-image: "religion/shinto.png";
1876 text: auto;
1877}
1878node[religion=spiritualist] {
1879 icon-image: "misc/no_icon.png";
1880 text: auto;
1881}
1882node[religion=taoist] {
1883 icon-image: "religion/taoism.png";
1884 text: auto;
1885}
1886node[religion=unitarian] {
1887 icon-image: "misc/no_icon.png";
1888 text: auto;
1889}
1890node[religion=zoroastrian] {
1891 icon-image: "misc/no_icon.png";
1892 text: auto;
1893}
1894node[amenity=grave_yard] {
1895 icon-image: "rendering/landuse/cemetery.png";
1896 text: auto;
1897}
1898node[amenity=crematorium] {
1899 icon-image: "misc/no_icon.png";
1900 text: auto;
1901}
1902node[amenity=post_office] {
1903 icon-image: "service/post_office.png";
1904 text: auto;
1905}
1906node[amenity=post_box] {
1907 icon-image: "service/post_box.png";
1908 text: auto;
1909}
1910node[amenity=studio] {
1911 icon-image: "service/studio.png";
1912 text: auto;
1913}
1914node[amenity=school] {
1915 icon-image: "education/school.png";
1916 text: auto;
1917}
1918node[amenity=university] {
1919 icon-image: "education/university.png";
1920 text: auto;
1921}
1922node[amenity=college] {
1923 icon-image: "education/college.png";
1924 text: auto;
1925}
1926node[amenity=kindergarten] {
1927 icon-image: "education/kindergarten.png";
1928 text: auto;
1929}
1930node[amenity=driving_school] {
1931 icon-image: "education/driving_school.png";
1932 text: auto;
1933}
1934area[amenity=pharmacy],
1935area[amenity=hospital],
1936area[amenity=clinic],
1937area[amenity=nursery],
1938area[amenity=baby_hatch],
1939area[amenity=doctors],
1940area[amenity=dentist],
1941area[amenity=veterinary] {
1942 fill-color: health#eeeeee;
1943}
1944node[amenity=pharmacy] {
1945 icon-image: "health/pharmacy.png";
1946 text: auto;
1947}
1948node[amenity=hospital],
1949node[amenity=clinic] {
1950 icon-image: "health/hospital.png";
1951 text: auto;
1952}
1953node[amenity=nursery] {
1954 icon-image: "misc/no_icon.png";
1955 text: auto;
1956}
1957node[amenity=baby_hatch] {
1958 icon-image: "health/baby_hatch.png";
1959 text: auto;
1960}
1961node[amenity=doctors] {
1962 icon-image: "health/doctor.png";
1963 text: auto;
1964}
1965node[amenity=dentist] {
1966 icon-image: "health/dentist.png";
1967 text: auto;
1968}
1969node[amenity=veterinary] {
1970 icon-image: "health/veterinary.png";
1971 text: auto;
1972}
1973area[amenity=library],
1974area[amenity=police],
1975area[amenity=fire_station],
1976area[amenity=bus_station],
1977area[amenity=ferry_terminal],
1978area[amenity=theatre],
1979area[amenity=cinema],
1980area[amenity=arts_centre],
1981area[amenity=courthouse],
1982area[amenity=prison],
1983area[amenity=bank],
1984area[amenity=bureau_de_change],
1985area[amenity=atm],
1986area[amenity=bbq] {
1987 fill-color: amenity_light#f7efb7;
1988}
1989node[amenity=library] {
1990 icon-image: "shop/rental/library.png";
1991 text: auto;
1992}
1993node[amenity=police] {
1994 icon-image: "service/police.png";
1995 text: auto;
1996}
1997node[amenity=fire_station] {
1998 icon-image: "service/firebrigade.png";
1999 text: auto;
2000}
2001node[amenity=bus_station] {
2002 icon-image: "transport/bus.png";
2003 text: auto;
2004}
2005node[amenity=ferry_terminal] {
2006 icon-image: "nautical/ferry.png";
2007 text: auto;
2008}
2009node[amenity=theatre] {
2010 icon-image: "leisure/theater.png";
2011 text: auto;
2012}
2013node[amenity=cinema] {
2014 icon-image: "leisure/cinema.png";
2015 text: auto;
2016}
2017node[amenity=arts_centre] {
2018 icon-image: "service/arts_centre.png";
2019 text: auto;
2020}
2021node[amenity=courthouse] {
2022 icon-image: "service/administration/court_of_law.png";
2023 text: auto;
2024}
2025node[amenity=prison] {
2026 icon-image: "service/administration/prison.png";
2027 text: auto;
2028}
2029node[amenity=bank] {
2030 icon-image: "money/bank.png";
2031 text: auto;
2032}
2033node[amenity=bureau_de_change] {
2034 icon-image: "money/exchange.png";
2035 text: auto;
2036}
2037node[amenity=atm] {
2038 icon-image: "money/atm.png";
2039 text: auto;
2040}
2041way[amenity=bench] {
2042 width: 2;
2043 color: amenity_light#f7efb7;
2044}
2045node[amenity=bench] {
2046 icon-image: "leisure/bench.png";
2047 text: auto;
2048}
2049node[amenity=bbq] {
2050 icon-image: "leisure/bbq.png";
2051 text: auto;
2052}
2053node[emergency=fire_hydrant] {
2054 icon-image: "service/fire_hydrant.png";
2055 text: auto;
2056}
2057area[amenity=shelter],
2058area[amenity=hunting_stand],
2059area[amenity=marketplace],
2060area[amenity=wlan],
2061area[amenity=vending_machine] {
2062 fill-color: amenity_light#f7efb7;
2063}
2064node[amenity=shelter] {
2065 icon-image: "accommodation/shelter.png";
2066 text: auto;
2067}
2068node[amenity=hunting_stand] {
2069 icon-image: "hunting_stand.png";
2070 text: auto;
2071}
2072node[amenity=marketplace] {
2073 icon-image: "place/marketplace.png";
2074 text: auto;
2075}
2076node[amenity=wlan] {
2077 icon-image: "wlan.png";
2078 text: auto;
2079}
2080node[amenity=vending_machine] {
2081 icon-image: "transport/ticket-machine.png";
2082/* priority="-10"*/
2083}
2084node[vending=excrement_bags] {
2085 icon-image: "service/excrement_bags.png";
2086 text: auto;
2087}
2088
2089/**************/
2090/* craft tags */
2091/**************/
2092
2093area[craft=painter],
2094area[craft=plumber],
2095area[craft=pottery],
2096area[craft=stonemason],
2097area[craft=tiler],
2098area[craft=window_construction] {
2099 fill-color: craft#999900;
2100}
2101node[craft=painter] {
2102 icon-image: "craft/painter.png";
2103 text: auto;
2104}
2105node[craft=plumber] {
2106 icon-image: "craft/plumber.png";
2107 text: auto;
2108}
2109node[craft=pottery] {
2110 icon-image: "craft/pottery.png";
2111 text: auto;
2112}
2113node[craft=stonemason] {
2114 icon-image: "craft/stonemason.png";
2115 text: auto;
2116}
2117node[craft=tiler] {
2118 icon-image: "craft/tiler.png";
2119 text: auto;
2120}
2121node[craft=window_construction] {
2122 icon-image: "craft/window_construction.png";
2123 text: auto;
2124}
2125
2126/****************/
2127/* tourism tags */
2128/****************/
2129
2130area[tourism=hotel],
2131area[tourism=motel],
2132area[tourism=guest_house],
2133area[tourism=hostel],
2134area[tourism=chalet],
2135area[tourism=alpine_hut],
2136area[tourism=camp_site],
2137area[tourism=caravan_site] {
2138 fill-color: hotel#e1a0a2;
2139}
2140node[tourism=hotel] {
2141 icon-image: "accommodation.png";
2142 text: auto;
2143}
2144node[tourism=motel] {
2145 icon-image: "accommodation/motel.png";
2146 text: auto;
2147}
2148node[tourism=guest_house] {
2149 icon-image: "accommodation/guest_house.png";
2150 text: auto;
2151}
2152node[tourism=hostel] {
2153 icon-image: "accommodation/hostel.png";
2154 text: auto;
2155}
2156node[tourism=chalet] {
2157 icon-image: "accommodation/chalet.png";
2158 text: auto;
2159}
2160node[tourism=alpine_hut] {
2161 icon-image: "accommodation/alpine_hut.png";
2162 text: auto;
2163}
2164node[tourism=camp_site] {
2165 icon-image: "accommodation/camping.png";
2166 text: auto;
2167}
2168node[tourism=caravan_site] {
2169 icon-image: "accommodation/camping/caravan.png";
2170 text: auto;
2171}
2172area[tourism=picnic_site],
2173area[tourism=viewpoint],
2174area[tourism=theme_park],
2175area[tourism=attraction],
2176area[tourism=zoo],
2177area[tourism=artwork],
2178area[tourism=museum] {
2179 fill-color: tourism#e180a2;
2180}
2181node[tourism=picnic_site] {
2182 icon-image: "leisure/picnic.png";
2183 text: auto;
2184}
2185node[tourism=viewpoint] {
2186 icon-image: "sightseeing/viewpoint.png";
2187 text: auto;
2188}
2189node[tourism=theme_park] {
2190 icon-image: "leisure/theme_park.png";
2191 text: auto;
2192}
2193node[tourism=attraction] {
2194 icon-image: "sightseeing.png";
2195 text: auto;
2196}
2197node[tourism=zoo] {
2198 icon-image: "leisure/zoo.png";
2199 text: auto;
2200}
2201way[tourism=artwork] {
2202 width: 2;
2203 color: tourism#e180a2;
2204}
2205node[tourism=artwork] {
2206 icon-image: "service/arts_centre.png";
2207 text: auto;
2208}
2209node[tourism=museum] {
2210 icon-image: "sightseeing/museum.png";
2211 text: auto;
2212}
2213
2214/********************/
2215/* information tags */
2216/********************/
2217
2218area[tourism=information] {
2219 fill-color: tourism#e180a2;
2220}
2221node[tourism=information] {
2222 icon-image: "misc/information.png";
2223 text: auto;
2224}
2225node[information=guidepost] {
2226 icon-image: "misc/information/guidepost.png";
2227 text: auto;
2228/* priority="10"*/
2229}
2230area[information=office] {
2231 fill-color: tourism#e180a2;
2232}
2233node[information=office] {
2234 icon-image: "misc/information/informationoffice.png";
2235 text: auto;
2236/* priority="10"*/
2237}
2238node[information=map] {
2239 icon-image: "misc/information/map.png";
2240 text: auto;
2241/* priority="10"*/
2242}
2243node[information=board] {
2244 icon-image: "misc/information/board.png";
2245 text: auto;
2246/* priority="10"*/
2247}
2248
2249/*****************/
2250/* historic tags */
2251/*****************/
2252
2253area[historic=castle],
2254area[historic=monument],
2255area[historic=memorial],
2256area[historic=archaeological_site],
2257area[historic=ruins],
2258area[historic=battlefield],
2259area[historic=palaeontological_site],
2260area[historic=wayside_cross],
2261area[historic=wayside_shrine],
2262area[historic=boundary_stone] {
2263 fill-color: historic#663300;
2264}
2265node[historic=castle] {
2266 icon-image: "sightseeing/castle.png";
2267 text: auto;
2268}
2269node[historic=monument] {
2270 icon-image: "sightseeing/monument.png";
2271 text: auto;
2272}
2273node[historic=memorial] {
2274 icon-image: "sightseeing/memorial.png";
2275 text: auto;
2276}
2277node[historic=archaeological_site] {
2278 icon-image: "sightseeing/archaeological.png";
2279 text: auto;
2280}
2281node[historic=ruins] {
2282 icon-image: "sightseeing/ruins.png";
2283 text: auto;
2284}
2285node[historic=battlefield] {
2286 icon-image: "sightseeing/battlefield.png";
2287 text: auto;
2288}
2289node[historic=palaeontological_site] {
2290 icon-image: "historic/palaeontological_site.png";
2291 text: auto;
2292}
2293node[historic=wayside_cross] {
2294 icon-image: "religion/wayside_cross.png";
2295 text: auto;
2296}
2297node[historic=wayside_shrine] {
2298 icon-image: "religion/wayside_shrine.png";
2299 text: auto;
2300}
2301node[historic=boundary_stone] {
2302 icon-image: "historic/boundary_stone.png";
2303 text: auto;
2304}
2305
2306/****************/
2307/* landuse tags */
2308/****************/
2309
2310area[landuse=farm],
2311area[landuse=farmland],
2312area[landuse=meadow],
2313area[landuse=vineyard],
2314area[landuse=orchard] {
2315 fill-color: green#b1e0c2;
2316}
2317node[landuse=farm] {
2318 icon-image: "misc/landmark/farm.png";
2319 text: auto;
2320}
2321node[landuse=farmland] {
2322 icon-image: "misc/no_icon.png";
2323 text: auto;
2324}
2325node[landuse=meadow] {
2326 icon-image: "misc/no_icon.png";
2327 text: auto;
2328}
2329node[landuse=vineyard] {
2330 icon-image: "shop/groceries/fruits.png";
2331 text: auto;
2332}
2333area[landuse=quarry] {
2334 fill-color: quarry#888888;
2335}
2336node[landuse=quarry] {
2337 icon-image: "misc/landmark/mine.png";
2338 text: auto;
2339}
2340area[landuse=landfill] {
2341 fill-color: landfill#663300;
2342}
2343node[landuse=landfill] {
2344 icon-image: "misc/no_icon.png";
2345 text: auto;
2346}
2347area[landuse=basin],
2348area[landuse=reservoir] {
2349 fill-color: basin#0000bf;
2350}
2351node[landuse=basin],
2352node[landuse=reservoir] {
2353 icon-image: "misc/no_icon.png";
2354 text: auto;
2355}
2356area[landuse=forest] {
2357 fill-color: forest#b1efc8;
2358}
2359node[landuse=forest] {
2360 icon-image: "misc/landmark/trees.png";
2361 text: auto;
2362}
2363area[landuse=allotments],
2364area[landuse=greenhouse_horticulture],
2365area[landuse=plant_nursery],
2366area[landuse=grass] {
2367 fill-color: green#b1e0c2;
2368}
2369node[landuse=allotments] {
2370 icon-image: "misc/landmark/plant.png";
2371 text: auto;
2372}
2373node[landuse=greenhouse_horticulture] {
2374 icon-image: "misc/landuse/greenhouse_horticulture.png";
2375 text: auto;
2376}
2377node[landuse=plant_nursery],
2378node[landuse=grass] {
2379 icon-image: "misc/landmark/plant.png";
2380 text: auto;
2381}
2382area[landuse=residential] {
2383 fill-color: residential#f0f0f0;
2384}
2385node[landuse=residential] {
2386 icon-image: "misc/landuse/residential.png";
2387 text: auto;
2388}
2389area[landuse=garages] {
2390 fill-color: garages#f0f0f0;
2391}
2392node[landuse=garages] {
2393 icon-image: "misc/landuse/garages.png";
2394 text: auto;
2395}
2396area[landuse=farmyard] {
2397 fill-color: farmyard#f0f0f0;
2398}
2399node[landuse=farmyard] {
2400 icon-image: "misc/no_icon.png";
2401 text: auto;
2402}
2403area[landuse=retail],
2404area[landuse=commercial] {
2405 fill-color: retail#ffc4ee;
2406}
2407node[landuse=retail] {
2408 icon-image: "shop/mall.png";
2409 text: auto;
2410}
2411node[landuse=commercial] {
2412 icon-image: "misc/landuse/commercial.png";
2413 text: auto;
2414}
2415area[landuse=industrial] {
2416 fill-color: industrial#ecd8ff;
2417}
2418node[landuse=industrial] {
2419 icon-image: "misc/landmark/works.png";
2420 text: auto;
2421}
2422area[landuse=brownfield] {
2423 fill-color: brownfield#ecba32;
2424}
2425node[landuse=brownfield] {
2426 icon-image: "misc/no_icon.png";
2427 text: auto;
2428}
2429area[landuse=greenfield] {
2430 fill-color: greenfield#b1ec5c;
2431}
2432node[landuse=greenfield] {
2433 icon-image: "misc/no_icon.png";
2434 text: auto;
2435}
2436area[landuse=railway] {
2437 fill-color: railland#888888;
2438}
2439node[landuse=railway] {
2440 icon-image: "transport/railway_station.png";
2441 text: auto;
2442}
2443area[landuse=construction] {
2444 fill-color: construction#ffff00;
2445}
2446way[landuse=construction] {
2447 width: 1;
2448 color: construction#ffff00;
2449 dashes: 9,9;
2450}
2451node[landuse=construction] {
2452 icon-image: "misc/construction.png";
2453 text: auto;
2454}
2455area[landuse=military] {
2456 fill-color: military#b62c2c;
2457}
2458node[landuse=military] {
2459 icon-image: "vehicle/tank.png";
2460 text: auto;
2461}
2462area[landuse=cemetery] {
2463 fill-color: cemetery#b1efc8;
2464}
2465node[landuse=cemetery] {
2466 icon-image: "rendering/landuse/cemetery.png";
2467 text: auto;
2468}
2469area[landuse=village_green] {
2470 fill-color: green#b1e0c2;
2471}
2472node[landuse=village_green] {
2473 icon-image: "leisure/common.png";
2474 text: auto;
2475}
2476area[landuse=recreation_ground] {
2477 fill-color: green#b1e0c2;
2478}
2479node[landuse=recreation_ground] {
2480 icon-image: "leisure/common.png";
2481 text: auto;
2482}
2483
2484/*****************/
2485/* military tags */
2486/*****************/
2487
2488area[military=airfield],
2489area[military=bunker],
2490area[military=barracks],
2491area[military=danger_area],
2492area[military=range] {
2493 fill-color: military#b62c2c;
2494}
2495node[military=airfield] {
2496 icon-image: "transport/airport/airfield.png";
2497 text: auto;
2498}
2499node[military=bunker] {
2500 icon-image: "misc/landmark/bunker.png";
2501 text: auto;
2502}
2503node[military=barracks] {
2504 icon-image: "misc/no_icon.png";
2505 text: auto;
2506}
2507node[military=danger_area] {
2508 icon-image: "misc/danger.png";
2509 text: auto;
2510}
2511node[military=range] {
2512 icon-image: "misc/landmark/range.png";
2513 text: auto;
2514}
2515
2516/*************************/
2517/* public_transport tags */
2518/*************************/
2519
2520node[public_transport=stop_position] {
2521 icon-image: "transport/railway_small.png";
2522 text: auto;
2523/* priority="-10"*/
2524}
2525node[highway=bus_stop] {
2526 icon-image: "transport/bus_small.png";
2527 text: auto;
2528}
2529node[public_transport=stop_position][bus=yes] {
2530 icon-image: "transport/bus_small.png";
2531 text: auto;
2532/* priority="4"*/
2533}
2534node[public_transport=stop_position][aerial=yes] {
2535 icon-image: "transport/aerialway.png";
2536 text: auto;
2537/* priority="6"*/
2538}
2539node[public_transport=stop_position][ferry=yes] {
2540 icon-image: "transport/ferry.png";
2541 text: auto;
2542/* priority="7"*/
2543}
2544node[public_transport=stop_position][tram=yes] {
2545 icon-image: "transport/tram.png";
2546 text: auto;
2547/* priority="8"*/
2548}
2549node[public_transport=stop_position][train=yes] {
2550 icon-image: "transport/railway_small.png";
2551 text: auto;
2552/* priority="10"*/
2553}
2554area[public_transport=platform]:closed {
2555 fill-color: service#809bc0;
2556}
2557way[public_transport=platform]!:closed {
2558 width: 3;
2559 realwidth: 1;
2560 color: service#809bc0;
2561 dashes: 12,3;
2562}
2563node[public_transport=platform] {
2564 icon-image: "transport/bus_small.png";
2565 text: auto;
2566/* priority="-10"*/
2567}
2568node[public_transport=platform][bus=yes] {
2569 icon-image: "transport/bus_small.png";
2570 text: auto;
2571/* priority="4"*/
2572}
2573node[public_transport=platform][aerial=yes] {
2574 icon-image: "transport/aerialway/station.png";
2575 text: auto;
2576/* priority="6"*/
2577}
2578node[public_transport=platform][ferry=yes] {
2579 icon-image: "transport/ferry.png";
2580 text: auto;
2581/* priority="7"*/
2582}
2583node[public_transport=platform][tram=yes],
2584node[public_transport=platform][train=yes] {
2585 icon-image: "transport/railway_station.png";
2586 text: auto;
2587/* priority="10"*/
2588}
2589
2590/****************/
2591/* railway tags */
2592/****************/
2593
2594area[railway=station], area[railway=tram_station],
2595area[railway=subway_entrance],
2596area[railway=crossing], area[railway=level_crossing] {
2597 fill-color: railwaypoint#f7efb7;
2598}
2599node[railway=station], node[railway=tram_station] {
2600 icon-image: "transport/railway_station.png";
2601 text: auto;
2602}
2603node[railway=halt] {
2604 icon-image: "transport/railway_small.png";
2605 text: auto;
2606}
2607node[railway=tram_stop] {
2608 icon-image: "transport/tram.png";
2609 text: auto;
2610}
2611node[railway=subway_entrance] {
2612 icon-image: "transport/underground.png";
2613 text: auto;
2614}
2615node[railway=crossing] {
2616 icon-image: "vehicle/crossing_small.png";
2617 text: auto;
2618}
2619node[railway=level_crossing] {
2620 icon-image: "vehicle/crossing.png";
2621 text: auto;
2622}
2623way[railway=rail] {
2624 width: 2;
2625 color: rail#404040;
2626 dashes: 9,9;
2627 dashes-background-color: raildashed#ffffff;
2628}
2629way[railway=rail][service=siding] {
2630 width: 1;
2631/* priority="2"*/
2632}
2633way[railway=rail][service=yard],
2634way[railway=rail][service=spur] {
2635 width: 1;
2636 color: railyard#552200
2637/* priority="2"*/
2638}
2639/* draw tram on top of other way (highway=*) or
2640 as a standalone style */
2641way[railway=tram]::core_railway {
2642 object-z-index: 1;
2643 modifier: false; /* don't draw default way if there is no line on default layer */
2644 width: 1;
2645 color: otherrail#808080;
2646 color: railover#202020;
2647 dashes: 9,9;
2648 casing-width: 1;
2649 casing-color: otherrail#808080;
2650 casing-linecap: round;
2651 casing-dashes: 9,9;
2652}
2653way[railway=light_rail] {
2654 width: 2;
2655 color: otherrail#808080;
2656 dashes: 9,9;
2657}
2658way[railway=subway] {
2659 width: 1;
2660 color: subway#606060;
2661 dashes: 9,9;
2662}
2663way[railway=preserved] {
2664 width: 1;
2665 color: oldrail#404040;
2666 dashes: 9,9;
2667}
2668/* disused often appears together with highway=xy */
2669/* -> draw on separate layer with higher z-index, but use */
2670/* modifier: false; to suppress default line when used alone. */
2671way[railway=disused]::core_railway,
2672way[railway=abandoned]::core_railway {
2673 width: 1;
2674 modifier: false;
2675 z-index: 1;
2676 color: oldrail#404040;
2677 dashes: 9,9;
2678/* priority="-10000"*/
2679}
2680way[railway=narrow_gauge],
2681way[railway=monorail] {
2682 width: 1;
2683 color: rail#404040;
2684 dashes: 9,9;
2685}
2686area[railway=turntable],
2687area[railway=buffer_stop] {
2688 fill-color: rail#404040;
2689}
2690node[railway=turntable] {
2691 icon-image: "transport/turntable.png";
2692 text: auto;
2693}
2694node[railway=buffer_stop] {
2695 icon-image: "transport/buffer_stop.png";
2696 text: auto;
2697}
2698area[railway=platform]:closed {
2699 fill-color: rail#404040;
2700}
2701way[railway=platform] {
2702 width: 2;
2703 color: rail#404040;
2704}
2705way[railway=funicular] {
2706 width: 1;
2707 color: rail#404040;
2708 dashes: 9,9;
2709}
2710node[railway=rail], node[railway=tram], node[railway=light_rail],
2711node[railway=subway], node[railway=preserved],
2712node[railway=disused], node[railway=abandoned],
2713node[railway=narrow_gauge], node[railway=monorail],
2714node[railway=platform], node[railway=funicular],
2715node[service=yard], node[service=siding], node[service=spur] {
2716 icon-image: "misc/deprecated.png";
2717 text: auto;
2718}
2719
2720/****************/
2721/* aeroway tags */
2722/****************/
2723
2724area[aeroway=aerodrome] {
2725 fill-color: aeroway#660000;
2726}
2727way[aeroway=aerodrome] {
2728 width: 2;
2729 color: aeroway#660000;
2730 dashes: 9,9;
2731}
2732node[aeroway=aerodrome] {
2733 icon-image: "transport/airport.png";
2734 text: auto;
2735}
2736area[aeroway=terminal] {
2737 fill-color: terminal#bb0000;
2738}
2739node[aeroway=terminal] {
2740 icon-image: "transport/airport/terminal.png";
2741 text: auto;
2742}
2743area[aeroway=helipad] {
2744 fill-color: aeroway_dark#330000;
2745}
2746node[aeroway=helipad] {
2747 icon-image: "transport/airport/helipad.png";
2748 text: auto;
2749}
2750way[aeroway=runway] {
2751 width: 3;
2752 realwidth: 10;
2753 color: aeroway_dark#330000;
2754}
2755node[aeroway=runway] {
2756 icon-image: "transport/airport/runway.png";
2757 text: auto;
2758}
2759way[aeroway=taxiway] {
2760 width: 2;
2761 realwidth: 10;
2762 color: aeroway#660000;
2763}
2764node[aeroway=taxiway] {
2765 icon-image: "transport/airport/taxiway.png";
2766 text: auto;
2767}
2768area[aeroway=apron], area[aeroway=hangar] {
2769 fill-color: aeroway_light#990000;
2770}
2771node[aeroway=apron] {
2772 icon-image: "transport/airport/apron.png";
2773 text: auto;
2774}
2775node[aeroway=hangar] {
2776 icon-image: "transport/airport/hangar.png";
2777 text: auto;
2778}
2779node[aeroway=gate] {
2780 icon-image: "transport/airport/gate.png";
2781 text: auto;
2782}
2783node[aeroway=windsock] {
2784 icon-image: "transport/airport/windsock.png";
2785 text: auto;
2786}
2787
2788/******************/
2789/* aerialway tags */
2790/******************/
2791
2792way[aerialway=cable_car],
2793way[aerialway=gondola] {
2794 width: 1;
2795 color: aerialway#663300;
2796 dashes: 9,9;
2797}
2798node[aerialway=cable_car] {
2799 icon-image: "transport/aerialway/cable_car.png";
2800 text: auto;
2801}
2802node[aerialway=gondola] {
2803 icon-image: "transport/aerialway/gondola.png";
2804 text: auto;
2805}
2806way[aerialway=chair_lift] {
2807 width: 1;
2808 color: aerialway#663300;
2809 dashes: 6,6;
2810}
2811node[aerialway=chair_lift] {
2812 icon-image: "transport/aerialway/chair_lift.png";
2813 text: auto;
2814}
2815way[aerialway=drag_lift] {
2816 width: 1;
2817 color: aerialway#663300;
2818 dashes: 3,3;
2819}
2820node[aerialway=drag_lift] {
2821 icon-image: "transport/aerialway/drag_lift.png";
2822 text: auto;
2823}
2824area[aerialway=station],
2825area[aerialway=pylon] {
2826 fill-color: aerialway#663300;
2827}
2828node[aerialway=station] {
2829 icon-image: "transport/aerialway/station.png";
2830 text: auto;
2831}
2832node[aerialway=pylon] {
2833 icon-image: "misc/landmark/power/tower_small.png";
2834 text: auto;
2835}
2836way[aerialway=goods] {
2837 width: 1;
2838 color: aerialway#663300;
2839 dashes: 2,2;
2840}
2841node[aerialway=goods] {
2842 icon-image: "transport/aerialway/goods.png";
2843 text: auto;
2844}
2845
2846/****************/
2847/* natural tags */
2848/****************/
2849
2850area[natural=spring] {
2851 fill-color: light_water#00005f;
2852}
2853node[natural=spring] {
2854 icon-image: "misc/landmark/spring.png";
2855 text: auto;
2856}
2857node[natural=saddle] {
2858 icon-image: "presets/saddle.svg";
2859 text: auto;
2860}
2861area[natural=peak] {
2862 fill-color: peak#663300;
2863}
2864node[natural=peak] {
2865 icon-image: "presets/peak.svg";
2866 text: auto;
2867}
2868area[natural=glacier] {
2869 fill-color: glacier#ffffff;
2870}
2871node[natural=glacier] {
2872 icon-image: "misc/landmark/glacier_small.png";
2873 text: auto;
2874}
2875area[natural=volcano] {
2876 fill-color: volcano#5f0000;
2877}
2878node[natural=volcano] {
2879 icon-image: "misc/landmark/volcano_small.png";
2880 text: auto;
2881}
2882area[natural=cliff]:closed {
2883 fill-color: natural#002f00;
2884}
2885way[natural=cliff] {
2886 repeat-image: "misc/cliff-pattern.png";
2887 repeat-image-align: top;
2888 width: 1;
2889 color: #b2b2b2;
2890}
2891node[natural=cliff] {
2892 icon-image: "misc/cliff.png";
2893 text: auto;
2894}
2895area[natural=scree] {
2896 fill-color: natural#002f00;
2897}
2898node[natural=scree] {
2899 icon-image: "misc/no_icon.png";
2900 text: auto;
2901}
2902area[natural=scrub] {
2903 fill-color: scrub#007000;
2904}
2905node[natural=scrub] {
2906 icon-image: "misc/no_icon.png";
2907 text: auto;
2908}
2909area[natural=fell] {
2910 fill-color: natural#002f00;
2911}
2912node[natural=fell] {
2913 icon-image: "misc/no_icon.png";
2914 text: auto;
2915}
2916area[natural=heath] {
2917 fill-color: heath#ffffc0;
2918}
2919node[natural=heath] {
2920 icon-image: "misc/no_icon.png";
2921 text: auto;
2922}
2923way[natural=tree_row] {
2924 width: 2;
2925 color: woodarea#008000;
2926}
2927node[natural=tree_row] {
2928 icon-image: "misc/no_icon.png";
2929 text: auto;
2930}
2931area[natural=wood] {
2932 fill-color: woodarea#008000;
2933}
2934node[natural=wood] {
2935 icon-image: "misc/landmark/trees.png";
2936 text: auto;
2937}
2938area[natural=grassland] {
2939 fill-color: green#b1e0c2;
2940}
2941node[natural=grassland] {
2942 icon-image: "misc/no_icon.png";
2943 text: auto;
2944}
2945area[natural=wetland] {
2946 fill-color: marsh#4f4ff3;
2947}
2948node[natural=wetland] {
2949 icon-image: "misc/no_icon.png";
2950 text: auto;
2951}
2952area[natural=water] {
2953 fill-color: water#0000ff;
2954}
2955node[natural=water] {
2956 icon-image: "nautical/water.png";
2957 text: auto;
2958}
2959way[natural=coastline] {
2960 width: 1;
2961 color: water#0000ff;
2962}
2963node[natural=coastline] {
2964 icon-image: "misc/coastline.png";
2965 text: auto;
2966}
2967area[natural=mud] {
2968 fill-color: mud#cba762;
2969}
2970node[natural=mud] {
2971 icon-image: "misc/mud.png";
2972 text: auto;
2973}
2974area[natural=beach] {
2975 fill-color: beach#f8dba2;
2976}
2977node[natural=beach] {
2978 icon-image: "misc/beach.png";
2979 text: auto;
2980}
2981area[natural=sand] {
2982 fill-color: sand#f8dba2;
2983}
2984node[natural=sand] {
2985 icon-image: "misc/no_icon.png";
2986 text: auto;
2987}
2988area[natural=bay],
2989area[natural=land],
2990area[natural=cave_entrance] {
2991 fill-color: natural#002f00;
2992}
2993node[natural=bay] {
2994 icon-image: "misc/bay.png";
2995 text: auto;
2996}
2997node[natural=land] {
2998 icon-image: "misc/no_icon.png";
2999 text: auto;
3000}
3001node[natural=cave_entrance] {
3002 icon-image: "misc/landmark/cave_entrance.png";
3003 text: auto;
3004}
3005node[natural=tree] {
3006 icon-image: "misc/landmark/trees.png";
3007 text: auto;
3008}
3009node[natural=tree][type=conifer] {
3010 icon-image: "misc/landmark/trees_conifer.png";
3011 text: auto;
3012/* priority="10"*/
3013}
3014node[natural=tree][type=broad_leaved] {
3015 icon-image: "misc/landmark/trees_broad_leaved.png";
3016 text: auto;
3017/* priority="10"*/
3018}
3019node[natural=tree][type=palm] {
3020 icon-image: "misc/landmark/trees_palm.png";
3021 text: auto;
3022/* priority="10"*/
3023}
3024
3025/*****************/
3026/* waterway tags */
3027/*****************/
3028
3029way[waterway=river] {
3030 width: 2;
3031 realwidth: 5;
3032 color: water#0000ff;
3033}
3034area[waterway=riverbank] {
3035 fill-color: riverbank#0000cf;
3036/* priority="10000"*/
3037 width: 1;
3038 realwidth: 5;
3039 color: riverbank#0000cf;
3040}
3041way[waterway=canal], way[waterway=wadi] {
3042 width: 2;
3043 realwidth: 2;
3044 color: water#0000ff;
3045}
3046way[waterway=stream] {
3047 width: 1;
3048 realwidth: 1;
3049 color: stream#6600cc;
3050}
3051way[waterway=ditch], way[waterway=drain] {
3052 width: 1;
3053 realwidth: 1;
3054 color: water#0000ff;
3055}
3056area[waterway=dock] {
3057 fill-color: dock#0000cf;
3058}
3059node[waterway=dock] {
3060 icon-image: "nautical/boatyard.png";
3061 text: auto;
3062}
3063node[waterway=lock_gate] {
3064 icon-image: "nautical/lock_gate.png";
3065 text: auto;
3066}
3067node[waterway=turning_point] {
3068 icon-image: "nautical/turning.png";
3069 text: auto;
3070}
3071area[waterway=boatyard] {
3072 fill-color: manmade#d8d8d8;
3073}
3074node[waterway=boatyard] {
3075 icon-image: "nautical/boatyard.png";
3076 text: auto;
3077}
3078node[waterway=water_point] {
3079 icon-image: "accommodation/camping/water.png";
3080 text: auto;
3081}
3082node[waterway=waste_disposal] {
3083 icon-image: "accommodation/camping/wastewater.png";
3084 text: auto;
3085}
3086node[waterway=mooring] {
3087 icon-image: "nautical/marina.png";
3088 text: auto;
3089}
3090way[waterway=weir] {
3091 width: 2;
3092 color: manmade#d8d8d8;
3093}
3094node[waterway=weir] {
3095 icon-image: "nautical/weir.png";
3096 text: auto;
3097}
3098way[waterway=rapids] {
3099 width: 2;
3100 color: rapids#8080ff;
3101}
3102node[waterway=rapids] {
3103 icon-image: "misc/no_icon.png";
3104 text: auto;
3105}
3106area[waterway=dam]:closed {
3107 fill-color: manmade#d8d8d8;
3108}
3109way[waterway=dam] {
3110 width: 2;
3111 color: manmade#d8d8d8;
3112}
3113node[waterway=dam] {
3114 icon-image: "nautical/dam.png";
3115 text: auto;
3116}
3117/* it's not possible to have both line and area, line seems more likely */
3118way[waterway=waterfall] {
3119 width: 2;
3120 color: manmade#d8d8d8;
3121}
3122node[waterway=waterfall] {
3123 icon-image: "nautical/waterfall.png";
3124 text: auto;
3125}
3126node[waterway=river], node[waterway=riverbank],
3127node[waterway=canal], node[waterway=wadi],
3128node[waterway=stream],
3129node[waterway=ditch], node[waterway=drain] {
3130 icon-image: "misc/deprecated.png";
3131 text: auto;
3132}
3133
3134/**************/
3135/* route tags */
3136/**************/
3137
3138way[route=bus],
3139way[route=ferry],
3140way[route=flight],
3141way[route=ncn],
3142way[route=subsea],
3143way[route=ski],
3144way[route=tour],
3145way[route=pub_crawl] {
3146 width: 1;
3147 color: route#809bc0;
3148 dashes: 9,9;
3149}
3150node[route=bus],
3151node[route=ferry],
3152node[route=flight],
3153node[route=ncn],
3154node[route=subsea],
3155node[route=ski],
3156node[route=tour],
3157node[route=pub_crawl] {
3158 icon-image: "misc/deprecated.png";
3159 text: auto;
3160}
3161
3162/**************/
3163/* sport tags */
3164/**************/
3165
3166area[sport="9pin"],
3167area[sport="10pin"],
3168area[sport=athletics],
3169area[sport=soccer],
3170area[sport=australian_football],
3171area[sport=american_football],
3172area[sport=canadian_football],
3173area[sport=gaelic_football],
3174area[sport=rugby_league],
3175area[sport=rugby_union] {
3176 fill-color: sport#bde3cb;
3177}
3178node[sport="9pin"] {
3179 icon-image: "sport/10pin.png";
3180 text: auto;
3181}
3182node[sport="10pin"] {
3183 icon-image: "sport/10pin.png";
3184 text: auto;
3185}
3186node[sport=athletics] {
3187 icon-image: "sport/athletics.png";
3188 text: auto;
3189}
3190node[sport=soccer],
3191node[sport=australian_football],
3192node[sport=american_football],
3193node[sport=canadian_football],
3194node[sport=gaelic_football] {
3195 icon-image: "sport/soccer.png";
3196 text: auto;
3197}
3198node[sport=rugby_league],
3199node[sport=rugby_union] {
3200 icon-image: "sport/football.png";
3201 text: auto;
3202}
3203area[sport=baseball],
3204area[sport=basketball],
3205area[sport=boules],
3206area[sport=bowls],
3207area[sport=canoe],
3208area[sport=chess],
3209area[sport=climbing],
3210area[sport=cricket],
3211area[sport=cricket_nets],
3212area[sport=croquet] {
3213 fill-color: sport#bde3cb;
3214}
3215node[sport=baseball] {
3216 icon-image: "sport/baseball.png";
3217 text: auto;
3218}
3219node[sport=basketball] {
3220 icon-image: "sport/basketball.png";
3221 text: auto;
3222}
3223node[sport=boules] {
3224 icon-image: "sport/boule.png";
3225 text: auto;
3226}
3227node[sport=bowls] {
3228 icon-image: "sport/boule.png";
3229 text: auto;
3230}
3231node[sport=canoe] {
3232 icon-image: "sport/canoe.png";
3233 text: auto;
3234}
3235node[sport=chess] {
3236 icon-image: "sport/chess.png";
3237 text: auto;
3238}
3239node[sport=climbing] {
3240 icon-image:"sport/climbing.png" ;
3241 text: auto;
3242}
3243node[sport=cricket] {
3244 icon-image: "sport/cricket.png";
3245 text: auto;
3246}
3247node[sport=cricket_nets] {
3248 icon-image: "misc/no_icon.png";
3249 text: auto;
3250}
3251node[sport=croquet] {
3252 icon-image: "sport/croquet.png";
3253 text: auto;
3254}
3255area[sport=cycling],
3256area[sport=dog_racing],
3257area[sport=equestrian],
3258area[sport=golf],
3259area[sport=gymnastics],
3260area[sport=hockey],
3261area[sport=horse_racing],
3262area[sport=karting],
3263area[sport=motocross],
3264area[sport=motor] {
3265 fill-color: sport#bde3cb;
3266}
3267node[sport=cycling] {
3268 icon-image: "sport/cycling.png";
3269 text: auto;
3270}
3271node[sport=dog_racing] {
3272 icon-image: "leisure/dog.png";
3273 text: auto;
3274}
3275node[sport=equestrian] {
3276 icon-image: "sport/riding.png";
3277 text: auto;
3278}
3279node[sport=golf] {
3280 icon-image: "sport/golf.png";
3281 text: auto;
3282}
3283node[sport=gymnastics] {
3284 icon-image: "sport/multi.png";
3285 text: auto;
3286}
3287node[sport=hockey] {
3288 icon-image: "sport/hockey.png";
3289 text: auto;
3290}
3291node[sport=horse_racing] {
3292 icon-image: "sport/riding.png";
3293 text: auto;
3294}
3295node[sport=karting] {
3296 icon-image: "sport/karting.png";
3297 text: auto;
3298}
3299node[sport=motocross] {
3300 icon-image: "sport/motocross.png";
3301 text: auto;
3302}
3303node[sport=motor] {
3304 icon-image: "sport/motor.png";
3305 text: auto;
3306}
3307area[sport=multi],
3308area[sport=pelota],
3309area[sport=racquet],
3310area[sport=skating],
3311area[sport=skateboard],
3312area[sport=swimming],
3313area[sport=skiing],
3314area[sport=table_tennis],
3315area[sport=tennis],
3316area[sport=paintball] {
3317 fill-color: sport#bde3cb;
3318}
3319node[sport=multi] {
3320 icon-image: "sport/multi.png";
3321 text: auto;
3322}
3323node[sport=pelota] {
3324 icon-image: "sport/pelota.png";
3325 text: auto;
3326}
3327node[sport=racquet] {
3328 icon-image: "sport/racquetball.png";
3329 text: auto;
3330}
3331node[sport=skating] {
3332 icon-image: "sport/skating.png";
3333 text: auto;
3334}
3335node[sport=skateboard] {
3336 icon-image: "sport/skateboard.png";
3337 text: auto;
3338}
3339node[sport=swimming] {
3340 icon-image: "sport/pool.png";
3341 text: auto;
3342}
3343node[sport=skiing] {
3344 icon-image: "sport/skiing.png";
3345 text: auto;
3346}
3347node[sport=table_tennis] {
3348 icon-image: "sport/table_tennis.png";
3349 text: auto;
3350}
3351node[sport=tennis] {
3352 icon-image: "sport/tennis.png";
3353 text: auto;
3354}
3355node[sport=paintball] {
3356 icon-image: "misc/no_icon.png";
3357 text: auto;
3358}
3359area[sport=squash],
3360area[sport=shooting],
3361area[sport=volleyball],
3362area[sport=beachvolleyball],
3363area[sport=bowling],
3364area[sport=handball],
3365area[sport=rowing],
3366area[sport=sailing],
3367area[sport=diving],
3368area[sport=badminton] {
3369 fill-color: sport#bde3cb;
3370}
3371node[sport=squash] {
3372 icon-image: "misc/no_icon.png";
3373 text: auto;
3374}
3375node[sport=shooting] {
3376 icon-image: "misc/no_icon.png";
3377 text: auto;
3378}
3379node[sport=volleyball] {
3380 icon-image: "sport/volleyball.png";
3381 text: auto;
3382}
3383node[sport=beachvolleyball] {
3384 icon-image: "sport/beachvolleyball.png";
3385 text: auto;
3386}
3387node[sport=bowling] {
3388 icon-image: "sport/10pin.png";
3389 text: auto;
3390}
3391node[sport=handball] {
3392 icon-image: "sport/handball.png";
3393 text: auto;
3394}
3395node[sport=rowing] {
3396 icon-image: "sport/rowing.png";
3397 text: auto;
3398}
3399node[sport=sailing] {
3400 icon-image: "misc/no_icon.png";
3401 text: auto;
3402}
3403node[sport=diving] {
3404 icon-image: "sport/diving.png";
3405 text: auto;
3406}
3407node[sport=badminton] {
3408 icon-image: "misc/no_icon.png";
3409 text: auto;
3410}
3411area[sport=archery],
3412area[sport=fishing],
3413area[sport=safety_training],
3414area[sport=model_aerodrome],
3415area[sport=rc_car] {
3416 fill-color: sport#bde3cb;
3417}
3418node[sport=archery] {
3419 icon-image: "sport/archery.png";
3420 text: auto;
3421}
3422node[sport=fishing] {
3423 icon-image: "sport/fishing.png";
3424 text: auto;
3425}
3426node[sport=safety_training] {
3427 icon-image: "sport/safety_training.png";
3428 text: auto;
3429}
3430node[sport=model_aerodrome] {
3431 icon-image: "transport/airport.png";
3432 text: auto;
3433}
3434node[sport=rc_car] {
3435 icon-image: "transport/car.png";
3436 text: auto;
3437}
3438
3439/*******************/
3440/* properties tags */
3441/*******************/
3442
3443node[mountain_pass?] {
3444 icon-image: "misc/landmark/mountain_pass.png";
3445 text: auto;
3446}
3447
3448/*****************/
3449/* boundary tags */
3450/*****************/
3451
3452way[boundary=national]::core_boundary,
3453way[boundary=administrative]::core_boundary,
3454way[boundary=postal_code]::core_boundary,
3455way[boundary=political]::core_boundary,
3456way[boundary=national_park]::core_boundary {
3457 z-index: 2;
3458 modifier: false;
3459 width: 1;
3460 color: boundary#FF6600;
3461 dashes: 9,9;
3462/* priority="-10"*/
3463}
3464way[admin_level=9]::core_boundary,
3465relation[admin_level=9] > way::core_boundary,
3466way[admin_level=10]::core_boundary,
3467relation[admin_level=10] > way::core_boundary {
3468 z-index: 2;
3469 modifier: false;
3470 width: 1;
3471 color: boundary#FF6600;
3472 dashes: 9,9;
3473}
3474way[admin_level=7]::core_boundary,
3475relation[admin_level=7] > way::core_boundary,
3476way[admin_level=8]::core_boundary,
3477relation[admin_level=8] > way::core_boundary {
3478 z-index: 2;
3479 modifier: false;
3480 width: 2;
3481 color: boundary#FF6600;
3482 dashes: 9,9;
3483}
3484way[admin_level=5]::core_boundary,
3485relation[admin_level=5] > way::core_boundary,
3486way[admin_level=6]::core_boundary,
3487relation[admin_level=6] > way::core_boundary {
3488 z-index: 2;
3489 modifier: false;
3490 width: 3;
3491 color: boundary#FF6600;
3492 dashes: 9,9;
3493}
3494way[admin_level=3]::core_boundary,
3495relation[admin_level=3] > way::core_boundary,
3496way[admin_level=4]::core_boundary,
3497relation[admin_level=4] > way::core_boundary {
3498 z-index: 2;
3499 modifier: false;
3500 width: 4;
3501 color: boundary#FF6600;
3502 dashes: 9,9;
3503}
3504way[admin_level=1]::core_boundary,
3505relation[admin_level=1] > way::core_boundary,
3506way[admin_level=2]::core_boundary,
3507relation[admin_level=2] > way::core_boundary {
3508 z-index: 2;
3509 modifier: false;
3510 width: 5;
3511 color: boundary#FF6600;
3512 dashes: 9,9;
3513}
3514node[boundary=national],
3515node[boundary=administrative],
3516node[boundary=postal_code],
3517node[boundary=political],
3518node[boundary=national_park] {
3519 icon-image: "misc/deprecated.png";
3520 text: auto;
3521}
3522/* "deprecated" tags
3523 historic=museum -> tourism=museum
3524 man_made=power_wind -> power=generator and power_source=wind
3525 man_made=power_hydro -> power=generator and power_source=hydro
3526 man_made=power_fossil -> power=generator and power_source=fossil
3527 man_made=power_nuclear -> power=generator and power_source=nuclear
3528 amenity=park_bench -> amenity=bench
3529 amenity=signpost -> information=guidepost
3530 amenity=emergency_phone -> emergency=phone
3531 highway minor - classification now more detailed
3532 highway=stile -> barrier=stile
3533 highway=gate -> barrier=gate
3534 highway=cattle_grid -> barrier=cattle_grid
3535 highway=toll_booth -> barrier=toll_booth
3536 highway=viaduct -> bridge=viaduct
3537 railway=viaduct -> bridge=viaduct
3538 waterway=aqueduct -> bridge=aqueduct
3539 natural=marsh -> natural=wetland
3540 leisure=zoo -> tourism=zoo
3541 power=station -> power=plant or power=sub_station
3542*/
3543
Note: See TracBrowser for help on using the repository browser.