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

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

fixed #9427 - natural=cliff is not displaying that upper side is on left and lower on the right (see #10043)

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