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

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

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