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

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

see #10043 - Don't display the building icon on nodes for building=no

File size: 74.4 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] {
601 width: 3;
602 realwidth: 5;
603 color: foot#00ff00;
604}
605area[highway=pedestrian][area?]:closed {
606 width: 3;
607 realwidth: 5;
608 color: foot#00ff00;
609 fill-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 {
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 {
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 {
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 {
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 {
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 {
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],
1195area[leisure=swimming_pool],
1196area[leisure=miniature_golf],
1197area[leisure=dog_park],
1198area[leisure=ice_rink],
1199area[leisure=sauna] {
1200 fill-color: leisure#c7f1a3;
1201}
1202node[leisure=slipway] {
1203 icon-image: "nautical/slipway.png";
1204 text: auto;
1205}
1206node[leisure=fishing] {
1207 icon-image: "sport/fishing.png";
1208 text: auto;
1209}
1210node[leisure=nature_reserve] {
1211 icon-image: "leisure/nature_reserve.png";
1212 text: auto;
1213}
1214node[leisure=park] {
1215 icon-image: "leisure/park.png";
1216 text: auto;
1217}
1218node[leisure=playground] {
1219 icon-image: "leisure/playground.png";
1220 text: auto;
1221}
1222node[leisure=garden] {
1223 icon-image: "leisure/garden.png";
1224 text: auto;
1225}
1226node[leisure=common] {
1227 icon-image: "leisure/common.png";
1228 text: auto;
1229}
1230node[leisure=swimming_pool] {
1231 icon-image: "sport/pool.png";
1232 text: auto;
1233}
1234node[leisure=miniature_golf] {
1235 icon-image: "sport/golf.png";
1236 text: auto;
1237}
1238node[leisure=dog_park] {
1239 icon-image: "leisure/dog.png";
1240 text: auto;
1241}
1242node[leisure=ice_rink] {
1243 icon-image: "sport/hockey.png";
1244 text: auto;
1245}
1246node[leisure=sauna] {
1247 icon-image: "leisure/sauna.png";
1248 text: auto;
1249}
1250
1251/*************/
1252/* shop tags */
1253/*************/
1254
1255area[shop=supermarket],
1256area[shop=convenience],
1257area[shop=bakery],
1258area[shop=butcher],
1259area[shop=bicycle],
1260area[shop=doityourself],
1261area[shop=dry_cleaning],
1262area[shop=laundry],
1263area[shop=outdoor],
1264area[shop=kiosk],
1265area[shop=alcohol],
1266area[shop=beverages],
1267area[shop=books],
1268area[shop=boutique],
1269area[shop=car],
1270area[shop=car_dealer],
1271area[shop=car_repair],
1272area[shop=tyres],
1273area[shop=chemist],
1274area[shop=clothes],
1275area[shop=computer],
1276area[shop=confectionery],
1277area[shop=copyshop],
1278area[shop=curtain],
1279area[shop=cycle_repair],
1280area[shop=department_store],
1281area[shop=deli],
1282area[shop=electronics],
1283area[shop=erotic],
1284area[shop=furniture],
1285area[shop=fabric],
1286area[shop=florist],
1287area[shop=frame],
1288area[shop=gift],
1289area[shop=greengrocer],
1290area[shop=garden_centre],
1291area[shop=hairdresser],
1292area[shop=hardware],
1293area[shop=hearing_aids],
1294area[shop=hifi],
1295area[shop=jewelry],
1296area[shop=kitchen],
1297area[shop=mall],
1298area[shop=mobile_phone],
1299area[shop=motorcycle],
1300area[shop=musical_instrument],
1301area[shop=newsagent],
1302area[shop=optician],
1303area[shop=paint],
1304area[shop=pawnbroker],
1305area[shop=seafood],
1306area[shop=shoes],
1307area[shop=sports],
1308area[shop=stationery],
1309area[shop=tailor],
1310area[shop=travel_agency],
1311area[shop=toys],
1312area[shop=vacuum_cleaner],
1313area[shop=variety_store],
1314area[shop=video],
1315area[shop=bookmaker],
1316area[shop=lottery],
1317area[shop=shopping_centre] {
1318 fill-color: shop#00005f;
1319}
1320node[shop=supermarket] {
1321 icon-image: "shop/supermarket.png";
1322 text: auto;
1323}
1324node[shop=convenience] {
1325 icon-image: "shop/convenience.png";
1326 text: auto;
1327}
1328node[shop=bakery] {
1329 icon-image: "shop/groceries/bakery.png";
1330 text: auto;
1331}
1332node[shop=butcher] {
1333 icon-image: "shop/groceries/butcher.png";
1334 text: auto;
1335}
1336node[shop=bicycle] {
1337 icon-image: "sport/bicycle.png";
1338 text: auto;
1339}
1340node[shop=doityourself] {
1341 icon-image: "shop/diy_store.png";
1342 text: auto;
1343}
1344node[shop=dry_cleaning],
1345node[shop=laundry] {
1346 icon-image: "shop/laundry.png";
1347 text: auto;
1348}
1349node[shop=outdoor] {
1350 icon-image: "shop/sports/outdoor.png";
1351 text: auto;
1352}
1353node[shop=kiosk] {
1354 icon-image: "shop/kiosk.png";
1355 text: auto;
1356}
1357node[shop=alcohol],
1358node[shop=beverages] {
1359 icon-image: "shop/beverages.png";
1360 text: auto;
1361}
1362node[shop=books] {
1363 icon-image: "shop/rental/library.png";
1364 text: auto;
1365}
1366node[shop=boutique] {
1367 icon-image: "shop/boutique.png";
1368 text: auto;
1369}
1370node[shop=car],
1371node[shop=car_dealer] {
1372 icon-image: "transport/car.png";
1373 text: auto;
1374}
1375node[shop=car_repair] {
1376 icon-image: "vehicle/repair_shop.png";
1377 text: auto;
1378}
1379node[shop=tyres] {
1380 icon-image: "vehicle/tyres.png";
1381 text: auto;
1382}
1383node[shop=chemist] {
1384 icon-image: "shop/chemist.png";
1385 text: auto;
1386}
1387node[shop=clothes] {
1388 icon-image: "shop/clothes.png";
1389 text: auto;
1390}
1391node[shop=computer] {
1392 icon-image: "shop/computer.png";
1393 text: auto;
1394}
1395node[shop=confectionery] {
1396 icon-image: "shop/groceries/confectionery.png";
1397 text: auto;
1398}
1399node[shop=copyshop] {
1400 icon-image: "shop/copyshop.png";
1401 text: auto;
1402}
1403node[shop=curtain] {
1404 icon-image: "shop/curtain.png";
1405 text: auto;
1406}
1407node[shop=cycle_repair] {
1408 icon-image: "sport/bicycle.png";
1409 text: auto;
1410}
1411node[shop=department_store] {
1412 icon-image: "shop/mall.png";
1413 text: auto;
1414}
1415node[shop=deli] {
1416 icon-image: "shop/groceries/deli.png";
1417 text: auto;
1418}
1419node[shop=electronics] {
1420 icon-image: "shop/electronics.png";
1421 text: auto;
1422}
1423node[shop=erotic] {
1424 icon-image:"shop/erotic.png";
1425 text: auto;
1426}
1427node[shop=furniture] {
1428 icon-image: "shop/furniture.png";
1429 text: auto;
1430}
1431node[shop=fabric] {
1432 icon-image: "shop/fabric.png";
1433 text: auto;
1434}
1435node[shop=florist] {
1436 icon-image: "shop/florist.png";
1437 text: auto;
1438}
1439node[shop=frame] {
1440 icon-image: "shop/frame.png";
1441 text: auto;
1442}
1443node[shop=gift] {
1444 icon-image: "presets/present.svg";
1445 text: auto;
1446}
1447node[shop=greengrocer] {
1448 icon-image: "shop/groceries/greengrocer.png";
1449 text: auto;
1450}
1451node[shop=garden_centre] {
1452 icon-image: "shop/garden_centre.png";
1453 text: auto;
1454}
1455node[shop=hairdresser] {
1456 icon-image: "shop/hairdresser.png";
1457 text: auto;
1458}
1459node[shop=hardware] {
1460 icon-image: "shop/hardware.png";
1461 text: auto;
1462}
1463node[shop=hearing_aids] {
1464 icon-image: "shop/hearing_aids.png";
1465 text: auto;
1466}
1467node[shop=hifi] {
1468 icon-image: "shop/hifi.png";
1469 text: auto;
1470}
1471node[shop=jewelry] {
1472 icon-image: "shop/jewelry.png";
1473 text: auto;
1474}
1475node[shop=kitchen] {
1476 icon-image: "shop/kitchen.png";
1477 text: auto;
1478}
1479node[shop=mall] {
1480 icon-image: "shop/mall.png";
1481 text: auto;
1482}
1483node[shop=mobile_phone] {
1484 icon-image: "shop/mobile_phone.png";
1485 text: auto;
1486}
1487node[shop=motorcycle] {
1488 icon-image: "vehicle/motorbike.png";
1489 text: auto;
1490}
1491node[shop=musical_instrument] {
1492 icon-image: "shop/musical_instrument.png";
1493 text: auto;
1494}
1495node[shop=newsagent] {
1496 icon-image: "shop/kiosk.png";
1497 text: auto;
1498}
1499node[shop=optician] {
1500 icon-image: "shop/optician.png";
1501 text: auto;
1502}
1503node[shop=paint] {
1504 icon-image: "shop/paint.png";
1505 text: auto;
1506}
1507node[shop=pawnbroker] {
1508 icon-image: "presets/pawnbroker.svg";
1509 text: auto;
1510}
1511node[shop=seafood] {
1512 icon-image: "shop/groceries/seafood.png";
1513 text: auto;
1514}
1515node[shop=shoes] {
1516 icon-image: "shop/shoes.png";
1517 text: auto;
1518}
1519node[shop=sports] {
1520 icon-image: "sport/multi.png";
1521 text: auto;
1522}
1523node[shop=stationery] {
1524 icon-image: "shop/stationery.png";
1525 text: auto;
1526}
1527node[shop=tailor] {
1528 icon-image: "shop/tailor.png";
1529 text: auto;
1530}
1531node[shop=travel_agency] {
1532 icon-image: "place/island.png";
1533 text: auto;
1534}
1535node[shop=toys] {
1536 icon-image: "shop/toys.png";
1537 text: auto;
1538}
1539node[shop=vacuum_cleaner] {
1540 icon-image: "shop/vacuum_cleaner.png";
1541 text: auto;
1542}
1543node[shop=variety_store] {
1544 icon-image: "shop/variety_store.png";
1545 text: auto;
1546}
1547node[shop=video] {
1548 icon-image: "shop/video.png";
1549 text: auto;
1550}
1551node[shop=bookmaker] {
1552 icon-image: "presets/lottery.svg";
1553 text: auto;
1554}
1555node[shop=lottery] {
1556 icon-image: "presets/lottery.svg";
1557 text: auto;
1558}
1559/* duplicate of shopping_centre? */
1560node[shop=shopping_centre] {
1561 icon-image: "shop/mall.png";
1562 text: auto;
1563}
1564
1565/****************/
1566/* amenity tags */
1567/****************/
1568
1569area[amenity=pub],
1570area[amenity=biergarten],
1571area[amenity=nightclub],
1572area[amenity=stripclub],
1573area[amenity=brothel],
1574area[amenity=cafe],
1575area[amenity=restaurant],
1576area[amenity=food_court],
1577area[amenity=fast_food],
1578area[amenity=bar],
1579area[amenity=ice_cream] {
1580 fill-color: amenity#ecba52;
1581}
1582node[amenity=pub] {
1583 icon-image: "food/pub.png";
1584 text: auto;
1585}
1586node[amenity=biergarten] {
1587 icon-image: "food/biergarten.png";
1588 text: auto;
1589}
1590node[amenity=nightclub] {
1591 icon-image: "leisure/nightclub.png";
1592 text: auto;
1593}
1594node[amenity=stripclub] {
1595 icon-image: "leisure/stripclub.png";
1596 text: auto;
1597}
1598node[amenity=brothel] {
1599 icon-image: "leisure/stripclub.png";
1600 text: auto;
1601}
1602node[amenity=cafe] {
1603 icon-image: "food/cafe.png";
1604 text: auto;
1605}
1606node[amenity=restaurant],
1607node[amenity=food_court] {
1608 icon-image: "food/restaurant.png";
1609 text: auto;
1610}
1611node[amenity=fast_food] {
1612 icon-image: "food/fastfood.png";
1613 text: auto;
1614}
1615node[amenity=bar] {
1616 icon-image: "food/bar.png";
1617 text: auto;
1618}
1619node[amenity=ice_cream] {
1620 icon-image: "food/icecream.png";
1621 text: auto;
1622}
1623area[amenity=parking_space],
1624area[amenity=parking],
1625area[parking=multi-storey],
1626area[amenity=motorcycle_parking],
1627area[amenity=bicycle_parking],
1628area[parking=park_and_ride],
1629area[parking=underground],
1630area[parking=surface],
1631area[amenity=bicycle_rental],
1632area[amenity=car_rental],
1633area[amenity=car_sharing],
1634area[amenity=car_wash],
1635area[amenity=taxi],
1636area[amenity=fuel],
1637area[amenity=charging_station] {
1638 fill-color: amenity_traffic#f7efb7;
1639}
1640node[amenity=parking_space] {
1641 icon-image: "vehicle/parking.png";
1642 text: auto;
1643/* priority="-500"*/
1644}node[amenity=parking] {
1645 icon-image: vehicle/parking.png;
1646 text: auto;
1647}
1648node[parking=multi-storey] {
1649 icon-image: "vehicle/parking/multi-storey.png";
1650 text: auto;
1651/* priority="10000"*/
1652}
1653node[amenity=motorcycle_parking] {
1654 icon-image: "vehicle/parking/motorbike.png";
1655 text: auto;
1656/* priority="20000";*/
1657}
1658node[amenity=bicycle_parking] {
1659 icon-image: "vehicle/parking/bicycle.png";
1660 text: auto;
1661/* priority="20000"*/
1662}
1663node[parking=park_and_ride] {
1664 icon-image: "vehicle/parking/park_ride.png";
1665 text: auto;
1666}
1667node[parking=underground] {
1668 icon-image: "vehicle/parking/underground.png";
1669 text: auto;
1670}
1671node[parking=surface] {
1672 icon-image: "vehicle/parking.png";
1673 text: auto;
1674}
1675node[amenity=parking_space][wheelchair?] {
1676 icon-image: "vehicle/parking/handicapped.png";
1677 text: auto;
1678}
1679node[amenity=bicycle_rental] {
1680 icon-image: "vehicle/rental/bicycle.png";
1681 text: auto;
1682}
1683node[amenity=car_rental] {
1684 icon-image: "vehicle/rental/car.png";
1685 text: auto;
1686}
1687node[amenity=car_sharing] {
1688 icon-image: "vehicle/car_sharing.png";
1689 text: auto;
1690}
1691node[amenity=car_wash] {
1692 icon-image: "vehicle/car_wash.png";
1693 text: auto;
1694}
1695node[amenity=taxi] {
1696 icon-image: "transport/taxi.png";
1697 text: auto;
1698}
1699node[amenity=fuel] {
1700 icon-image: "vehicle/fuel.png";
1701 text: auto;
1702/* priority="10000"*/
1703}
1704node[amenity=charging_station] {
1705 icon-image: "accommodation/camping/hookup.png";
1706 text: auto;
1707/* priority="1000"*/
1708}
1709node[amenity=grit_bin] {
1710 icon-image: "misc/grit_bin.png";
1711 text: auto;
1712}
1713area[amenity=telephone] {
1714 fill-color: amenity_light#f7efb7;
1715}
1716node[amenity=telephone] {
1717 icon-image: "service/telephone.png";
1718 text: auto;
1719}
1720node[amenity=clock] {
1721 icon-image: "service/clock.png";
1722 text: auto;
1723}
1724/* Rule to delete by end of 2013 if this deprecated tag has finally been replaced by emergency=phone below */
1725area[amenity=emergency_phone] {
1726 fill-color: amenity_light#f7efb7;
1727}
1728node[amenity=emergency_phone] {
1729 icon-image: "vehicle/emergency_phone.png";
1730 text: auto;
1731}
1732area[emergency=phone],
1733area[emergency=aed],
1734area[emergency=defibrillator],
1735area[amenity=toilets],
1736area[amenity=recycling] {
1737 fill-color: amenity_light#f7efb7;
1738}
1739node[emergency=phone] {
1740 icon-image: "vehicle/emergency_phone.png";
1741 text: auto;
1742}
1743node[emergency=aed] {
1744 icon-image: "presets/aed.svg";
1745 text: auto;
1746}
1747node[emergency=defibrillator] {
1748 icon-image: "presets/aed.svg";
1749 text: auto;
1750}
1751node[amenity=toilets] {
1752 icon-image: "service/toilets.png";
1753 text: auto;
1754}
1755node[amenity=recycling] {
1756 icon-image: "service/recycling.png";
1757 text: auto;
1758}
1759node[amenity=waste_basket] {
1760 icon-image: "service/recycling/trash-bin.png";
1761 text: auto;
1762}
1763node[amenity=waste_disposal] {
1764 icon-image: "service/recycling/waste_disposal.png";
1765 text: auto;
1766}
1767area[amenity=public_building],
1768area[amenity=townhall],
1769area[amenity=embassy],
1770area[amenity=community_centre] {
1771 fill-color: amenity_light#f7efb7;
1772}
1773node[amenity=public_building],
1774node[amenity=townhall] {
1775 icon-image: "service.png";
1776 text: auto;
1777}
1778node[amenity=embassy] {
1779 icon-image: "service/administration/embassy.png";
1780 text: auto;
1781}
1782node[amenity=community_centre] {
1783 icon-image: "service/community_centre.png";
1784 text: auto;
1785}
1786area[amenity=drinking_water],
1787area[amenity=fountain] {
1788 fill-color: light_water#00005f;
1789}
1790node[amenity=drinking_water] {
1791 icon-image: "food/drinking_water.png";
1792 text: auto;
1793}
1794node[amenity=fountain] {
1795 icon-image: "misc/landmark/spring.png";
1796 text: auto;
1797}
1798area[amenity=place_of_worship],
1799area[amenity=grave_yard],
1800area[amenity=crematorium],
1801area[amenity=post_office],
1802area[amenity=post_box],
1803area[amenity=studio],
1804area[amenity=school],
1805area[amenity=university],
1806area[amenity=college],
1807area[amenity=kindergarten],
1808area[amenity=driving_school] {
1809 fill-color: amenity_light#f7efb7;
1810}
1811node[amenity=place_of_worship] {
1812 icon-image: "religion.png";
1813 text: auto;
1814/* priority="-10000"*/
1815}
1816node[religion=bahai] {
1817 icon-image: "religion/bahai.png";
1818 text: auto;
1819}
1820node[religion=buddhist] {
1821 icon-image: "religion/buddhism.png";
1822 text: auto;
1823}
1824node[religion=christian] {
1825 icon-image: "religion/church.png";
1826 text: auto;
1827}
1828node[religion=hindu] {
1829 icon-image: "religion/hinduism.png";
1830 text: auto;
1831}
1832node[religion=jain] {
1833 icon-image: "religion/jainism.png";
1834 text: auto;
1835}
1836node[religion=jewish] {
1837 icon-image: "religion/jewish.png";
1838 text: auto;
1839}
1840node[religion=muslim] {
1841 icon-image: "religion/muslim.png";
1842 text: auto;
1843}
1844node[religion=sikh] {
1845 icon-image: "religion/sikhism.png";
1846 text: auto;
1847}
1848node[religion=shinto] {
1849 icon-image: "religion/shinto.png";
1850 text: auto;
1851}
1852node[religion=spiritualist] {
1853 icon-image: "misc/no_icon.png";
1854 text: auto;
1855}
1856node[religion=taoist] {
1857 icon-image: "religion/taoism.png";
1858 text: auto;
1859}
1860node[religion=unitarian] {
1861 icon-image: "misc/no_icon.png";
1862 text: auto;
1863}
1864node[religion=zoroastrian] {
1865 icon-image: "misc/no_icon.png";
1866 text: auto;
1867}
1868node[amenity=grave_yard] {
1869 icon-image: "rendering/landuse/cemetery.png";
1870 text: auto;
1871}
1872node[amenity=crematorium] {
1873 icon-image: "misc/no_icon.png";
1874 text: auto;
1875}
1876node[amenity=post_office] {
1877 icon-image: "service/post_office.png";
1878 text: auto;
1879}
1880node[amenity=post_box] {
1881 icon-image: "service/post_box.png";
1882 text: auto;
1883}
1884node[amenity=studio] {
1885 icon-image: "service/studio.png";
1886 text: auto;
1887}
1888node[amenity=school] {
1889 icon-image: "education/school.png";
1890 text: auto;
1891}
1892node[amenity=university] {
1893 icon-image: "education/university.png";
1894 text: auto;
1895}
1896node[amenity=college] {
1897 icon-image: "education/college.png";
1898 text: auto;
1899}
1900node[amenity=kindergarten] {
1901 icon-image: "education/kindergarten.png";
1902 text: auto;
1903}
1904node[amenity=driving_school] {
1905 icon-image: "education/driving_school.png";
1906 text: auto;
1907}
1908area[amenity=pharmacy],
1909area[amenity=hospital],
1910area[amenity=clinic],
1911area[amenity=nursery],
1912area[amenity=baby_hatch],
1913area[amenity=doctors],
1914area[amenity=dentist],
1915area[amenity=veterinary] {
1916 fill-color: health#eeeeee;
1917}
1918node[amenity=pharmacy] {
1919 icon-image: "health/pharmacy.png";
1920 text: auto;
1921}
1922node[amenity=hospital],
1923node[amenity=clinic] {
1924 icon-image: "health/hospital.png";
1925 text: auto;
1926}
1927node[amenity=nursery] {
1928 icon-image: "misc/no_icon.png";
1929 text: auto;
1930}
1931node[amenity=baby_hatch] {
1932 icon-image: "health/baby_hatch.png";
1933 text: auto;
1934}
1935node[amenity=doctors] {
1936 icon-image: "health/doctor.png";
1937 text: auto;
1938}
1939node[amenity=dentist] {
1940 icon-image: "health/dentist.png";
1941 text: auto;
1942}
1943node[amenity=veterinary] {
1944 icon-image: "health/veterinary.png";
1945 text: auto;
1946}
1947area[amenity=library],
1948area[amenity=police],
1949area[amenity=fire_station],
1950area[amenity=bus_station],
1951area[amenity=ferry_terminal],
1952area[amenity=theatre],
1953area[amenity=cinema],
1954area[amenity=arts_centre],
1955area[amenity=courthouse],
1956area[amenity=prison],
1957area[amenity=bank],
1958area[amenity=bureau_de_change],
1959area[amenity=atm],
1960area[amenity=bbq] {
1961 fill-color: amenity_light#f7efb7;
1962}
1963node[amenity=library] {
1964 icon-image: "shop/rental/library.png";
1965 text: auto;
1966}
1967node[amenity=police] {
1968 icon-image: "service/police.png";
1969 text: auto;
1970}
1971node[amenity=fire_station] {
1972 icon-image: "service/firebrigade.png";
1973 text: auto;
1974}
1975node[amenity=bus_station] {
1976 icon-image: "transport/bus.png";
1977 text: auto;
1978}
1979node[amenity=ferry_terminal] {
1980 icon-image: "nautical/ferry.png";
1981 text: auto;
1982}
1983node[amenity=theatre] {
1984 icon-image: "leisure/theater.png";
1985 text: auto;
1986}
1987node[amenity=cinema] {
1988 icon-image: "leisure/cinema.png";
1989 text: auto;
1990}
1991node[amenity=arts_centre] {
1992 icon-image: "service/arts_centre.png";
1993 text: auto;
1994}
1995node[amenity=courthouse] {
1996 icon-image: "service/administration/court_of_law.png";
1997 text: auto;
1998}
1999node[amenity=prison] {
2000 icon-image: "service/administration/prison.png";
2001 text: auto;
2002}
2003node[amenity=bank] {
2004 icon-image: "money/bank.png";
2005 text: auto;
2006}
2007node[amenity=bureau_de_change] {
2008 icon-image: "money/exchange.png";
2009 text: auto;
2010}
2011node[amenity=atm] {
2012 icon-image: "money/atm.png";
2013 text: auto;
2014}
2015way[amenity=bench] {
2016 width: 2;
2017 color: amenity_light#f7efb7;
2018}
2019node[amenity=bench] {
2020 icon-image: "leisure/bench.png";
2021 text: auto;
2022}
2023node[amenity=bbq] {
2024 icon-image: "leisure/bbq.png";
2025 text: auto;
2026}
2027node[emergency=fire_hydrant] {
2028 icon-image: "service/fire_hydrant.png";
2029 text: auto;
2030}
2031area[amenity=shelter],
2032area[amenity=hunting_stand],
2033area[amenity=marketplace],
2034area[amenity=wlan],
2035area[amenity=vending_machine] {
2036 fill-color: amenity_light#f7efb7;
2037}
2038node[amenity=shelter] {
2039 icon-image: "accommodation/shelter.png";
2040 text: auto;
2041}
2042node[amenity=hunting_stand] {
2043 icon-image: "hunting_stand.png";
2044 text: auto;
2045}
2046node[amenity=marketplace] {
2047 icon-image: "place/marketplace.png";
2048 text: auto;
2049}
2050node[amenity=wlan] {
2051 icon-image: "wlan.png";
2052 text: auto;
2053}
2054node[amenity=vending_machine] {
2055 icon-image: "transport/ticket-machine.png";
2056/* priority="-10"*/
2057}
2058node[vending=excrement_bags] {
2059 icon-image: "service/excrement_bags.png";
2060 text: auto;
2061}
2062
2063/**************/
2064/* craft tags */
2065/**************/
2066
2067area[craft=painter],
2068area[craft=plumber],
2069area[craft=pottery],
2070area[craft=stonemason],
2071area[craft=tiler],
2072area[craft=window_construction] {
2073 fill-color: craft#999900;
2074}
2075node[craft=painter] {
2076 icon-image: "craft/painter.png";
2077 text: auto;
2078}
2079node[craft=plumber] {
2080 icon-image: "craft/plumber.png";
2081 text: auto;
2082}
2083node[craft=pottery] {
2084 icon-image: "craft/pottery.png";
2085 text: auto;
2086}
2087node[craft=stonemason] {
2088 icon-image: "craft/stonemason.png";
2089 text: auto;
2090}
2091node[craft=tiler] {
2092 icon-image: "craft/tiler.png";
2093 text: auto;
2094}
2095node[craft=window_construction] {
2096 icon-image: "craft/window_construction.png";
2097 text: auto;
2098}
2099
2100/****************/
2101/* tourism tags */
2102/****************/
2103
2104area[tourism=hotel],
2105area[tourism=motel],
2106area[tourism=guest_house],
2107area[tourism=hostel],
2108area[tourism=chalet],
2109area[tourism=alpine_hut],
2110area[tourism=camp_site],
2111area[tourism=caravan_site] {
2112 fill-color: hotel#e1a0a2;
2113}
2114node[tourism=hotel] {
2115 icon-image: "accommodation.png";
2116 text: auto;
2117}
2118node[tourism=motel] {
2119 icon-image: "accommodation/motel.png";
2120 text: auto;
2121}
2122node[tourism=guest_house] {
2123 icon-image: "accommodation/guest_house.png";
2124 text: auto;
2125}
2126node[tourism=hostel] {
2127 icon-image: "accommodation/hostel.png";
2128 text: auto;
2129}
2130node[tourism=chalet] {
2131 icon-image: "accommodation/chalet.png";
2132 text: auto;
2133}
2134node[tourism=alpine_hut] {
2135 icon-image: "accommodation/alpine_hut.png";
2136 text: auto;
2137}
2138node[tourism=camp_site] {
2139 icon-image: "accommodation/camping.png";
2140 text: auto;
2141}
2142node[tourism=caravan_site] {
2143 icon-image: "accommodation/camping/caravan.png";
2144 text: auto;
2145}
2146area[tourism=picnic_site],
2147area[tourism=viewpoint],
2148area[tourism=theme_park],
2149area[tourism=attraction],
2150area[tourism=zoo],
2151area[tourism=artwork],
2152area[tourism=museum] {
2153 fill-color: tourism#e180a2;
2154}
2155node[tourism=picnic_site] {
2156 icon-image: "leisure/picnic.png";
2157 text: auto;
2158}
2159node[tourism=viewpoint] {
2160 icon-image: "sightseeing/viewpoint.png";
2161 text: auto;
2162}
2163node[tourism=theme_park] {
2164 icon-image: "leisure/theme_park.png";
2165 text: auto;
2166}
2167node[tourism=attraction] {
2168 icon-image: "sightseeing.png";
2169 text: auto;
2170}
2171node[tourism=zoo] {
2172 icon-image: "leisure/zoo.png";
2173 text: auto;
2174}
2175way[tourism=artwork] {
2176 width: 2;
2177 color: tourism#e180a2;
2178}
2179node[tourism=artwork] {
2180 icon-image: "service/arts_centre.png";
2181 text: auto;
2182}
2183node[tourism=museum] {
2184 icon-image: "sightseeing/museum.png";
2185 text: auto;
2186}
2187
2188/********************/
2189/* information tags */
2190/********************/
2191
2192area[tourism=information] {
2193 fill-color: tourism#e180a2;
2194}
2195node[tourism=information] {
2196 icon-image: "misc/information.png";
2197 text: auto;
2198}
2199node[information=guidepost] {
2200 icon-image: "misc/information/guidepost.png";
2201 text: auto;
2202/* priority="10"*/
2203}
2204area[information=office] {
2205 fill-color: tourism#e180a2;
2206}
2207node[information=office] {
2208 icon-image: "misc/information/informationoffice.png";
2209 text: auto;
2210/* priority="10"*/
2211}
2212node[information=map] {
2213 icon-image: "misc/information/map.png";
2214 text: auto;
2215/* priority="10"*/
2216}
2217node[information=board] {
2218 icon-image: "misc/information/board.png";
2219 text: auto;
2220/* priority="10"*/
2221}
2222
2223/*****************/
2224/* historic tags */
2225/*****************/
2226
2227area[historic=castle],
2228area[historic=monument],
2229area[historic=memorial],
2230area[historic=archaeological_site],
2231area[historic=ruins],
2232area[historic=battlefield],
2233area[historic=palaeontological_site],
2234area[historic=wayside_cross],
2235area[historic=wayside_shrine],
2236area[historic=boundary_stone] {
2237 fill-color: historic#663300;
2238}
2239node[historic=castle] {
2240 icon-image: "sightseeing/castle.png";
2241 text: auto;
2242}
2243node[historic=monument] {
2244 icon-image: "sightseeing/monument.png";
2245 text: auto;
2246}
2247node[historic=memorial] {
2248 icon-image: "sightseeing/memorial.png";
2249 text: auto;
2250}
2251node[historic=archaeological_site] {
2252 icon-image: "sightseeing/archaeological.png";
2253 text: auto;
2254}
2255node[historic=ruins] {
2256 icon-image: "sightseeing/ruins.png";
2257 text: auto;
2258}
2259node[historic=battlefield] {
2260 icon-image: "sightseeing/battlefield.png";
2261 text: auto;
2262}
2263node[historic=palaeontological_site] {
2264 icon-image: "historic/palaeontological_site.png";
2265 text: auto;
2266}
2267node[historic=wayside_cross] {
2268 icon-image: "religion/wayside_cross.png";
2269 text: auto;
2270}
2271node[historic=wayside_shrine] {
2272 icon-image: "religion/wayside_shrine.png";
2273 text: auto;
2274}
2275node[historic=boundary_stone] {
2276 icon-image: "historic/boundary_stone.png";
2277 text: auto;
2278}
2279
2280/****************/
2281/* landuse tags */
2282/****************/
2283
2284area[landuse=farm],
2285area[landuse=farmland],
2286area[landuse=meadow],
2287area[landuse=vineyard],
2288area[landuse=orchard] {
2289 fill-color: green#b1e0c2;
2290}
2291node[landuse=farm] {
2292 icon-image: "misc/landmark/farm.png";
2293 text: auto;
2294}
2295node[landuse=farmland] {
2296 icon-image: "misc/no_icon.png";
2297 text: auto;
2298}
2299node[landuse=meadow] {
2300 icon-image: "misc/no_icon.png";
2301 text: auto;
2302}
2303node[landuse=vineyard] {
2304 icon-image: "shop/groceries/fruits.png";
2305 text: auto;
2306}
2307area[landuse=quarry] {
2308 fill-color: quarry#888888;
2309}
2310node[landuse=quarry] {
2311 icon-image: "misc/landmark/mine.png";
2312 text: auto;
2313}
2314area[landuse=landfill] {
2315 fill-color: landfill#663300;
2316}
2317node[landuse=landfill] {
2318 icon-image: "misc/no_icon.png";
2319 text: auto;
2320}
2321area[landuse=basin],
2322area[landuse=reservoir] {
2323 fill-color: basin#0000bf;
2324}
2325node[landuse=basin],
2326node[landuse=reservoir] {
2327 icon-image: "misc/no_icon.png";
2328 text: auto;
2329}
2330area[landuse=forest] {
2331 fill-color: forest#b1efc8;
2332}
2333node[landuse=forest] {
2334 icon-image: "misc/landmark/trees.png";
2335 text: auto;
2336}
2337area[landuse=allotments],
2338area[landuse=greenhouse_horticulture],
2339area[landuse=plant_nursery],
2340area[landuse=grass] {
2341 fill-color: green#b1e0c2;
2342}
2343node[landuse=allotments] {
2344 icon-image: "misc/landmark/plant.png";
2345 text: auto;
2346}
2347node[landuse=greenhouse_horticulture] {
2348 icon-image: "misc/landuse/greenhouse_horticulture.png";
2349 text: auto;
2350}
2351node[landuse=plant_nursery],
2352node[landuse=grass] {
2353 icon-image: "misc/landmark/plant.png";
2354 text: auto;
2355}
2356area[landuse=residential] {
2357 fill-color: residential#f0f0f0;
2358}
2359node[landuse=residential] {
2360 icon-image: "misc/landuse/residential.png";
2361 text: auto;
2362}
2363area[landuse=garages] {
2364 fill-color: garages#f0f0f0;
2365}
2366node[landuse=garages] {
2367 icon-image: "misc/landuse/garages.png";
2368 text: auto;
2369}
2370area[landuse=farmyard] {
2371 fill-color: farmyard#f0f0f0;
2372}
2373node[landuse=farmyard] {
2374 icon-image: "misc/no_icon.png";
2375 text: auto;
2376}
2377area[landuse=retail],
2378area[landuse=commercial] {
2379 fill-color: retail#ffc4ee;
2380}
2381node[landuse=retail] {
2382 icon-image: "shop/mall.png";
2383 text: auto;
2384}
2385node[landuse=commercial] {
2386 icon-image: "misc/landuse/commercial.png";
2387 text: auto;
2388}
2389area[landuse=industrial] {
2390 fill-color: industrial#ecd8ff;
2391}
2392node[landuse=industrial] {
2393 icon-image: "misc/landmark/works.png";
2394 text: auto;
2395}
2396area[landuse=brownfield] {
2397 fill-color: brownfield#ecba32;
2398}
2399node[landuse=brownfield] {
2400 icon-image: "misc/no_icon.png";
2401 text: auto;
2402}
2403area[landuse=greenfield] {
2404 fill-color: greenfield#b1ec5c;
2405}
2406node[landuse=greenfield] {
2407 icon-image: "misc/no_icon.png";
2408 text: auto;
2409}
2410area[landuse=railway] {
2411 fill-color: railland#888888;
2412}
2413node[landuse=railway] {
2414 icon-image: "transport/railway_station.png";
2415 text: auto;
2416}
2417area[landuse=construction] {
2418 fill-color: construction#ffff00;
2419}
2420way[landuse=construction] {
2421 width: 1;
2422 color: construction#ffff00;
2423 dashes: 9,9;
2424}
2425node[landuse=construction] {
2426 icon-image: "misc/construction.png";
2427 text: auto;
2428}
2429area[landuse=military] {
2430 fill-color: military#b62c2c;
2431}
2432node[landuse=military] {
2433 icon-image: "vehicle/tank.png";
2434 text: auto;
2435}
2436area[landuse=cemetery] {
2437 fill-color: cemetery#b1efc8;
2438}
2439node[landuse=cemetery] {
2440 icon-image: "rendering/landuse/cemetery.png";
2441 text: auto;
2442}
2443area[landuse=village_green] {
2444 fill-color: green#b1e0c2;
2445}
2446node[landuse=village_green] {
2447 icon-image: "leisure/common.png";
2448 text: auto;
2449}
2450area[landuse=recreation_ground] {
2451 fill-color: green#b1e0c2;
2452}
2453node[landuse=recreation_ground] {
2454 icon-image: "leisure/common.png";
2455 text: auto;
2456}
2457
2458/*****************/
2459/* military tags */
2460/*****************/
2461
2462area[military=airfield],
2463area[military=bunker],
2464area[military=barracks],
2465area[military=danger_area],
2466area[military=range] {
2467 fill-color: military#b62c2c;
2468}
2469node[military=airfield] {
2470 icon-image: "transport/airport/airfield.png";
2471 text: auto;
2472}
2473node[military=bunker] {
2474 icon-image: "misc/landmark/bunker.png";
2475 text: auto;
2476}
2477node[military=barracks] {
2478 icon-image: "misc/no_icon.png";
2479 text: auto;
2480}
2481node[military=danger_area] {
2482 icon-image: "misc/danger.png";
2483 text: auto;
2484}
2485node[military=range] {
2486 icon-image: "misc/landmark/range.png";
2487 text: auto;
2488}
2489
2490/*************************/
2491/* public_transport tags */
2492/*************************/
2493
2494node[public_transport=stop_position] {
2495 icon-image: "transport/railway_small.png";
2496 text: auto;
2497/* priority="-10"*/
2498}
2499node[highway=bus_stop] {
2500 icon-image: "transport/bus_small.png";
2501 text: auto;
2502}
2503node[public_transport=stop_position][bus=yes] {
2504 icon-image: "transport/bus_small.png";
2505 text: auto;
2506/* priority="4"*/
2507}
2508node[public_transport=stop_position][aerial=yes] {
2509 icon-image: "transport/aerialway.png";
2510 text: auto;
2511/* priority="6"*/
2512}
2513node[public_transport=stop_position][ferry=yes] {
2514 icon-image: "transport/ferry.png";
2515 text: auto;
2516/* priority="7"*/
2517}
2518node[public_transport=stop_position][tram=yes] {
2519 icon-image: "transport/tram.png";
2520 text: auto;
2521/* priority="8"*/
2522}
2523node[public_transport=stop_position][train=yes] {
2524 icon-image: "transport/railway_small.png";
2525 text: auto;
2526/* priority="10"*/
2527}
2528area[public_transport=platform]:closed {
2529 fill-color: service#809bc0;
2530}
2531way[public_transport=platform] {
2532 width: 1;
2533 realwidth: 1;
2534 color: service#809bc0;
2535 dashes: 9,9;
2536 dashes-background-color: livingdashed#00ff00;
2537}
2538node[public_transport=platform] {
2539 icon-image: "transport/bus_small.png";
2540 text: auto;
2541/* priority="-10"*/
2542}
2543node[public_transport=platform][bus=yes] {
2544 icon-image: "transport/bus_small.png";
2545 text: auto;
2546/* priority="4"*/
2547}
2548node[public_transport=platform][aerial=yes] {
2549 icon-image: "transport/aerialway/station.png";
2550 text: auto;
2551/* priority="6"*/
2552}
2553node[public_transport=platform][ferry=yes] {
2554 icon-image: "transport/ferry.png";
2555 text: auto;
2556/* priority="7"*/
2557}
2558node[public_transport=platform][tram=yes],
2559node[public_transport=platform][train=yes] {
2560 icon-image: "transport/railway_station.png";
2561 text: auto;
2562/* priority="10"*/
2563}
2564
2565/****************/
2566/* railway tags */
2567/****************/
2568
2569area[railway=station], area[railway=tram_station],
2570area[railway=subway_entrance],
2571area[railway=crossing], area[railway=level_crossing] {
2572 fill-color: railwaypoint#f7efb7;
2573}
2574node[railway=station], node[railway=tram_station] {
2575 icon-image: "transport/railway_station.png";
2576 text: auto;
2577}
2578node[railway=halt] {
2579 icon-image: "transport/railway_small.png";
2580 text: auto;
2581}
2582node[railway=tram_stop] {
2583 icon-image: "transport/tram.png";
2584 text: auto;
2585}
2586node[railway=subway_entrance] {
2587 icon-image: "transport/underground.png";
2588 text: auto;
2589}
2590node[railway=crossing] {
2591 icon-image: "vehicle/crossing_small.png";
2592 text: auto;
2593}
2594node[railway=level_crossing] {
2595 icon-image: "vehicle/crossing.png";
2596 text: auto;
2597}
2598way[railway=rail] {
2599 width: 2;
2600 color: rail#404040;
2601 dashes: 9,9;
2602 dashes-background-color: raildashed#ffffff;
2603}
2604way[railway=rail][service=siding] {
2605 width: 1;
2606/* priority="2"*/
2607}
2608way[railway=rail][service=yard],
2609way[railway=rail][service=spur] {
2610 width: 1;
2611 color: railyard#552200
2612/* priority="2"*/
2613}
2614/* draw tram on top of other way (highway=*) or
2615 as a standalone style */
2616way[railway=tram]::core_railway {
2617 object-z-index: 1;
2618 modifier: false; /* don't draw default way if there is no line on default layer */
2619 width: 1;
2620 color: otherrail#808080;
2621 color: railover#202020;
2622 dashes: 9,9;
2623 casing-width: 1;
2624 casing-color: otherrail#808080;
2625 casing-linecap: round;
2626 casing-dashes: 9,9;
2627}
2628way[railway=light_rail] {
2629 width: 2;
2630 color: otherrail#808080;
2631 dashes: 9,9;
2632}
2633way[railway=subway] {
2634 width: 1;
2635 color: subway#606060;
2636 dashes: 9,9;
2637}
2638way[railway=preserved] {
2639 width: 1;
2640 color: oldrail#404040;
2641 dashes: 9,9;
2642}
2643/* disused often appears together with highway=xy */
2644/* -> draw on separate layer with higher z-index, but use */
2645/* modifier: false; to suppress default line when used alone. */
2646way[railway=disused]::core_railway,
2647way[railway=abandoned]::core_railway {
2648 width: 1;
2649 modifier: false;
2650 z-index: 1;
2651 color: oldrail#404040;
2652 dashes: 9,9;
2653/* priority="-10000"*/
2654}
2655way[railway=narrow_gauge],
2656way[railway=monorail] {
2657 width: 1;
2658 color: rail#404040;
2659 dashes: 9,9;
2660}
2661area[railway=turntable],
2662area[railway=buffer_stop] {
2663 fill-color: rail#404040;
2664}
2665node[railway=turntable] {
2666 icon-image: "transport/turntable.png";
2667 text: auto;
2668}
2669node[railway=buffer_stop] {
2670 icon-image: "transport/buffer_stop.png";
2671 text: auto;
2672}
2673area[railway=platform]:closed {
2674 fill-color: rail#404040;
2675}
2676way[railway=platform] {
2677 width: 2;
2678 color: rail#404040;
2679}
2680way[railway=funicular] {
2681 width: 1;
2682 color: rail#404040;
2683 dashes: 9,9;
2684}
2685node[railway=rail], node[railway=tram], node[railway=light_rail],
2686node[railway=subway], node[railway=preserved],
2687node[railway=disused], node[railway=abandoned],
2688node[railway=narrow_gauge], node[railway=monorail],
2689node[railway=platform], node[railway=funicular],
2690node[service=yard], node[service=siding], node[service=spur] {
2691 icon-image: "misc/deprecated.png";
2692 text: auto;
2693}
2694
2695/****************/
2696/* aeroway tags */
2697/****************/
2698
2699area[aeroway=aerodrome] {
2700 fill-color: aeroway#660000;
2701}
2702way[aeroway=aerodrome] {
2703 width: 2;
2704 color: aeroway#660000;
2705 dashes: 9,9;
2706}
2707node[aeroway=aerodrome] {
2708 icon-image: "transport/airport.png";
2709 text: auto;
2710}
2711area[aeroway=terminal] {
2712 fill-color: terminal#bb0000;
2713}
2714node[aeroway=terminal] {
2715 icon-image: "transport/airport/terminal.png";
2716 text: auto;
2717}
2718area[aeroway=helipad] {
2719 fill-color: aeroway_dark#330000;
2720}
2721node[aeroway=helipad] {
2722 icon-image: "transport/airport/helipad.png";
2723 text: auto;
2724}
2725way[aeroway=runway] {
2726 width: 3;
2727 realwidth: 10;
2728 color: aeroway_dark#330000;
2729}
2730node[aeroway=runway] {
2731 icon-image: "transport/airport/runway.png";
2732 text: auto;
2733}
2734way[aeroway=taxiway] {
2735 width: 2;
2736 realwidth: 10;
2737 color: aeroway#660000;
2738}
2739node[aeroway=taxiway] {
2740 icon-image: "transport/airport/taxiway.png";
2741 text: auto;
2742}
2743area[aeroway=apron], area[aeroway=hangar] {
2744 fill-color: aeroway_light#990000;
2745}
2746node[aeroway=apron] {
2747 icon-image: "transport/airport/apron.png";
2748 text: auto;
2749}
2750node[aeroway=hangar] {
2751 icon-image: "transport/airport/hangar.png";
2752 text: auto;
2753}
2754node[aeroway=gate] {
2755 icon-image: "transport/airport/gate.png";
2756 text: auto;
2757}
2758node[aeroway=windsock] {
2759 icon-image: "transport/airport/windsock.png";
2760 text: auto;
2761}
2762
2763/******************/
2764/* aerialway tags */
2765/******************/
2766
2767way[aerialway=cable_car],
2768way[aerialway=gondola] {
2769 width: 1;
2770 color: aerialway#663300;
2771 dashes: 9,9;
2772}
2773node[aerialway=cable_car] {
2774 icon-image: "transport/aerialway/cable_car.png";
2775 text: auto;
2776}
2777node[aerialway=gondola] {
2778 icon-image: "transport/aerialway/gondola.png";
2779 text: auto;
2780}
2781way[aerialway=chair_lift] {
2782 width: 1;
2783 color: aerialway#663300;
2784 dashes: 6,6;
2785}
2786node[aerialway=chair_lift] {
2787 icon-image: "transport/aerialway/chair_lift.png";
2788 text: auto;
2789}
2790way[aerialway=drag_lift] {
2791 width: 1;
2792 color: aerialway#663300;
2793 dashes: 3,3;
2794}
2795node[aerialway=drag_lift] {
2796 icon-image: "transport/aerialway/drag_lift.png";
2797 text: auto;
2798}
2799area[aerialway=station],
2800area[aerialway=pylon] {
2801 fill-color: aerialway#663300;
2802}
2803node[aerialway=station] {
2804 icon-image: "transport/aerialway/station.png";
2805 text: auto;
2806}
2807node[aerialway=pylon] {
2808 icon-image: "misc/landmark/power/tower_small.png";
2809 text: auto;
2810}
2811way[aerialway=goods] {
2812 width: 1;
2813 color: aerialway#663300;
2814 dashes: 2,2;
2815}
2816node[aerialway=goods] {
2817 icon-image: "transport/aerialway/goods.png";
2818 text: auto;
2819}
2820
2821/****************/
2822/* natural tags */
2823/****************/
2824
2825area[natural=spring] {
2826 fill-color: light_water#00005f;
2827}
2828node[natural=spring] {
2829 icon-image: "misc/landmark/spring.png";
2830 text: auto;
2831}
2832node[natural=saddle] {
2833 icon-image: "presets/saddle.svg";
2834 text: auto;
2835}
2836area[natural=peak] {
2837 fill-color: peak#663300;
2838}
2839node[natural=peak] {
2840 icon-image: "presets/peak.svg";
2841 text: auto;
2842}
2843area[natural=glacier] {
2844 fill-color: glacier#ffffff;
2845}
2846node[natural=glacier] {
2847 icon-image: "misc/landmark/glacier_small.png";
2848 text: auto;
2849}
2850area[natural=volcano] {
2851 fill-color: volcano#5f0000;
2852}
2853node[natural=volcano] {
2854 icon-image: "misc/landmark/volcano_small.png";
2855 text: auto;
2856}
2857area[natural=cliff]:closed {
2858 fill-color: natural#002f00;
2859}
2860way[natural=cliff] {
2861 width: 2;
2862 color: natural#002f00;
2863}
2864node[natural=cliff] {
2865 icon-image: "misc/cliff.png";
2866 text: auto;
2867}
2868area[natural=scree] {
2869 fill-color: natural#002f00;
2870}
2871node[natural=scree] {
2872 icon-image: "misc/no_icon.png";
2873 text: auto;
2874}
2875area[natural=scrub] {
2876 fill-color: scrub#007000;
2877}
2878node[natural=scrub] {
2879 icon-image: "misc/no_icon.png";
2880 text: auto;
2881}
2882area[natural=fell] {
2883 fill-color: natural#002f00;
2884}
2885node[natural=fell] {
2886 icon-image: "misc/no_icon.png";
2887 text: auto;
2888}
2889area[natural=heath] {
2890 fill-color: heath#ffffc0;
2891}
2892node[natural=heath] {
2893 icon-image: "misc/no_icon.png";
2894 text: auto;
2895}
2896way[natural=tree_row] {
2897 width: 2;
2898 color: woodarea#008000;
2899}
2900node[natural=tree_row] {
2901 icon-image: "misc/no_icon.png";
2902 text: auto;
2903}
2904area[natural=wood] {
2905 fill-color: woodarea#008000;
2906}
2907node[natural=wood] {
2908 icon-image: "misc/landmark/trees.png";
2909 text: auto;
2910}
2911area[natural=grassland] {
2912 fill-color: green#b1e0c2;
2913}
2914node[natural=grassland] {
2915 icon-image: "misc/no_icon.png";
2916 text: auto;
2917}
2918area[natural=wetland] {
2919 fill-color: marsh#4f4ff3;
2920}
2921node[natural=wetland] {
2922 icon-image: "misc/no_icon.png";
2923 text: auto;
2924}
2925area[natural=water] {
2926 fill-color: water#0000ff;
2927}
2928node[natural=water] {
2929 icon-image: "nautical/water.png";
2930 text: auto;
2931}
2932way[natural=coastline] {
2933 width: 1;
2934 color: water#0000ff;
2935}
2936node[natural=coastline] {
2937 icon-image: "misc/coastline.png";
2938 text: auto;
2939}
2940area[natural=mud] {
2941 fill-color: mud#cba762;
2942}
2943node[natural=mud] {
2944 icon-image: "misc/mud.png";
2945 text: auto;
2946}
2947area[natural=beach] {
2948 fill-color: beach#f8dba2;
2949}
2950node[natural=beach] {
2951 icon-image: "misc/beach.png";
2952 text: auto;
2953}
2954area[natural=sand] {
2955 fill-color: sand#f8dba2;
2956}
2957node[natural=sand] {
2958 icon-image: "misc/no_icon.png";
2959 text: auto;
2960}
2961area[natural=bay],
2962area[natural=land],
2963area[natural=cave_entrance] {
2964 fill-color: natural#002f00;
2965}
2966node[natural=bay] {
2967 icon-image: "misc/bay.png";
2968 text: auto;
2969}
2970node[natural=land] {
2971 icon-image: "misc/no_icon.png";
2972 text: auto;
2973}
2974node[natural=cave_entrance] {
2975 icon-image: "misc/landmark/cave_entrance.png";
2976 text: auto;
2977}
2978node[natural=tree] {
2979 icon-image: "misc/landmark/trees.png";
2980 text: auto;
2981}
2982node[natural=tree][type=conifer] {
2983 icon-image: "misc/landmark/trees_conifer.png";
2984 text: auto;
2985/* priority="10"*/
2986}
2987node[natural=tree][type=broad_leaved] {
2988 icon-image: "misc/landmark/trees_broad_leaved.png";
2989 text: auto;
2990/* priority="10"*/
2991}
2992node[natural=tree][type=palm] {
2993 icon-image: "misc/landmark/trees_palm.png";
2994 text: auto;
2995/* priority="10"*/
2996}
2997
2998/*****************/
2999/* waterway tags */
3000/*****************/
3001
3002way[waterway=river] {
3003 width: 2;
3004 realwidth: 5;
3005 color: water#0000ff;
3006}
3007area[waterway=riverbank] {
3008 fill-color: riverbank#0000cf;
3009/* priority="10000"*/
3010 width: 1;
3011 realwidth: 5;
3012 color: riverbank#0000cf;
3013}
3014way[waterway=canal], way[waterway=wadi] {
3015 width: 2;
3016 realwidth: 2;
3017 color: water#0000ff;
3018}
3019way[waterway=stream] {
3020 width: 1;
3021 realwidth: 1;
3022 color: stream#6600cc;
3023}
3024way[waterway=ditch], way[waterway=drain] {
3025 width: 1;
3026 realwidth: 1;
3027 color: water#0000ff;
3028}
3029area[waterway=dock] {
3030 fill-color: dock#0000cf;
3031}
3032node[waterway=dock] {
3033 icon-image: "nautical/boatyard.png";
3034 text: auto;
3035}
3036node[waterway=lock_gate] {
3037 icon-image: "nautical/lock_gate.png";
3038 text: auto;
3039}
3040node[waterway=turning_point] {
3041 icon-image: "nautical/turning.png";
3042 text: auto;
3043}
3044area[waterway=boatyard] {
3045 fill-color: manmade#d8d8d8;
3046}
3047node[waterway=boatyard] {
3048 icon-image: "nautical/boatyard.png";
3049 text: auto;
3050}
3051node[waterway=water_point] {
3052 icon-image: "accommodation/camping/water.png";
3053 text: auto;
3054}
3055node[waterway=waste_disposal] {
3056 icon-image: "accommodation/camping/wastewater.png";
3057 text: auto;
3058}
3059node[waterway=mooring] {
3060 icon-image: "nautical/marina.png";
3061 text: auto;
3062}
3063way[waterway=weir] {
3064 width: 2;
3065 color: manmade#d8d8d8;
3066}
3067node[waterway=weir] {
3068 icon-image: "nautical/weir.png";
3069 text: auto;
3070}
3071way[waterway=rapids] {
3072 width: 2;
3073 color: rapids#8080ff;
3074}
3075node[waterway=rapids] {
3076 icon-image: "misc/no_icon.png";
3077 text: auto;
3078}
3079area[waterway=dam]:closed {
3080 fill-color: manmade#d8d8d8;
3081}
3082way[waterway=dam] {
3083 width: 2;
3084 color: manmade#d8d8d8;
3085}
3086node[waterway=dam] {
3087 icon-image: "nautical/dam.png";
3088 text: auto;
3089}
3090/* it's not possible to have both line and area, line seems more likely */
3091way[waterway=waterfall] {
3092 width: 2;
3093 color: manmade#d8d8d8;
3094}
3095node[waterway=waterfall] {
3096 icon-image: "nautical/waterfall.png";
3097 text: auto;
3098}
3099node[waterway=river], node[waterway=riverbank],
3100node[waterway=canal], node[waterway=wadi],
3101node[waterway=stream],
3102node[waterway=ditch], node[waterway=drain] {
3103 icon-image: "misc/deprecated.png";
3104 text: auto;
3105}
3106
3107/**************/
3108/* route tags */
3109/**************/
3110
3111way[route=bus],
3112way[route=ferry],
3113way[route=flight],
3114way[route=ncn],
3115way[route=subsea],
3116way[route=ski],
3117way[route=tour],
3118way[route=pub_crawl] {
3119 width: 1;
3120 color: route#809bc0;
3121 dashes: 9,9;
3122}
3123node[route=bus],
3124node[route=ferry],
3125node[route=flight],
3126node[route=ncn],
3127node[route=subsea],
3128node[route=ski],
3129node[route=tour],
3130node[route=pub_crawl] {
3131 icon-image: "misc/deprecated.png";
3132 text: auto;
3133}
3134
3135/**************/
3136/* sport tags */
3137/**************/
3138
3139area[sport="9pin"],
3140area[sport="10pin"],
3141area[sport=athletics],
3142area[sport=soccer],
3143area[sport=australian_football],
3144area[sport=american_football],
3145area[sport=canadian_football],
3146area[sport=gaelic_football],
3147area[sport=rugby_league],
3148area[sport=rugby_union] {
3149 fill-color: sport#bde3cb;
3150}
3151node[sport="9pin"] {
3152 icon-image: "sport/10pin.png";
3153 text: auto;
3154}
3155node[sport="10pin"] {
3156 icon-image: "sport/10pin.png";
3157 text: auto;
3158}
3159node[sport=athletics] {
3160 icon-image: "sport/athletics.png";
3161 text: auto;
3162}
3163node[sport=soccer],
3164node[sport=australian_football],
3165node[sport=american_football],
3166node[sport=canadian_football],
3167node[sport=gaelic_football] {
3168 icon-image: "sport/soccer.png";
3169 text: auto;
3170}
3171node[sport=rugby_league],
3172node[sport=rugby_union] {
3173 icon-image: "sport/football.png";
3174 text: auto;
3175}
3176area[sport=baseball],
3177area[sport=basketball],
3178area[sport=boules],
3179area[sport=bowls],
3180area[sport=canoe],
3181area[sport=chess],
3182area[sport=climbing],
3183area[sport=cricket],
3184area[sport=cricket_nets],
3185area[sport=croquet] {
3186 fill-color: sport#bde3cb;
3187}
3188node[sport=baseball] {
3189 icon-image: "sport/baseball.png";
3190 text: auto;
3191}
3192node[sport=basketball] {
3193 icon-image: "sport/basketball.png";
3194 text: auto;
3195}
3196node[sport=boules] {
3197 icon-image: "sport/boule.png";
3198 text: auto;
3199}
3200node[sport=bowls] {
3201 icon-image: "sport/boule.png";
3202 text: auto;
3203}
3204node[sport=canoe] {
3205 icon-image: "sport/canoe.png";
3206 text: auto;
3207}
3208node[sport=chess] {
3209 icon-image: "sport/chess.png";
3210 text: auto;
3211}
3212node[sport=climbing] {
3213 icon-image:"sport/climbing.png" ;
3214 text: auto;
3215}
3216node[sport=cricket] {
3217 icon-image: "sport/cricket.png";
3218 text: auto;
3219}
3220node[sport=cricket_nets] {
3221 icon-image: "misc/no_icon.png";
3222 text: auto;
3223}
3224node[sport=croquet] {
3225 icon-image: "sport/croquet.png";
3226 text: auto;
3227}
3228area[sport=cycling],
3229area[sport=dog_racing],
3230area[sport=equestrian],
3231area[sport=golf],
3232area[sport=gymnastics],
3233area[sport=hockey],
3234area[sport=horse_racing],
3235area[sport=karting],
3236area[sport=motocross],
3237area[sport=motor] {
3238 fill-color: sport#bde3cb;
3239}
3240node[sport=cycling] {
3241 icon-image: "sport/cycling.png";
3242 text: auto;
3243}
3244node[sport=dog_racing] {
3245 icon-image: "leisure/dog.png";
3246 text: auto;
3247}
3248node[sport=equestrian] {
3249 icon-image: "sport/riding.png";
3250 text: auto;
3251}
3252node[sport=golf] {
3253 icon-image: "sport/golf.png";
3254 text: auto;
3255}
3256node[sport=gymnastics] {
3257 icon-image: "sport/multi.png";
3258 text: auto;
3259}
3260node[sport=hockey] {
3261 icon-image: "sport/hockey.png";
3262 text: auto;
3263}
3264node[sport=horse_racing] {
3265 icon-image: "sport/riding.png";
3266 text: auto;
3267}
3268node[sport=karting] {
3269 icon-image: "sport/karting.png";
3270 text: auto;
3271}
3272node[sport=motocross] {
3273 icon-image: "sport/motocross.png";
3274 text: auto;
3275}
3276node[sport=motor] {
3277 icon-image: "sport/motor.png";
3278 text: auto;
3279}
3280area[sport=multi],
3281area[sport=pelota],
3282area[sport=racquet],
3283area[sport=skating],
3284area[sport=skateboard],
3285area[sport=swimming],
3286area[sport=skiing],
3287area[sport=table_tennis],
3288area[sport=tennis],
3289area[sport=paintball] {
3290 fill-color: sport#bde3cb;
3291}
3292node[sport=multi] {
3293 icon-image: "sport/multi.png";
3294 text: auto;
3295}
3296node[sport=pelota] {
3297 icon-image: "sport/pelota.png";
3298 text: auto;
3299}
3300node[sport=racquet] {
3301 icon-image: "sport/racquetball.png";
3302 text: auto;
3303}
3304node[sport=skating] {
3305 icon-image: "sport/skating.png";
3306 text: auto;
3307}
3308node[sport=skateboard] {
3309 icon-image: "sport/skateboard.png";
3310 text: auto;
3311}
3312node[sport=swimming] {
3313 icon-image: "sport/pool.png";
3314 text: auto;
3315}
3316node[sport=skiing] {
3317 icon-image: "sport/skiing.png";
3318 text: auto;
3319}
3320node[sport=table_tennis] {
3321 icon-image: "sport/table_tennis.png";
3322 text: auto;
3323}
3324node[sport=tennis] {
3325 icon-image: "sport/tennis.png";
3326 text: auto;
3327}
3328node[sport=paintball] {
3329 icon-image: "misc/no_icon.png";
3330 text: auto;
3331}
3332area[sport=squash],
3333area[sport=shooting],
3334area[sport=volleyball],
3335area[sport=beachvolleyball],
3336area[sport=bowling],
3337area[sport=handball],
3338area[sport=rowing],
3339area[sport=sailing],
3340area[sport=diving],
3341area[sport=badminton] {
3342 fill-color: sport#bde3cb;
3343}
3344node[sport=squash] {
3345 icon-image: "misc/no_icon.png";
3346 text: auto;
3347}
3348node[sport=shooting] {
3349 icon-image: "misc/no_icon.png";
3350 text: auto;
3351}
3352node[sport=volleyball] {
3353 icon-image: "sport/volleyball.png";
3354 text: auto;
3355}
3356node[sport=beachvolleyball] {
3357 icon-image: "sport/beachvolleyball.png";
3358 text: auto;
3359}
3360node[sport=bowling] {
3361 icon-image: "sport/10pin.png";
3362 text: auto;
3363}
3364node[sport=handball] {
3365 icon-image: "sport/handball.png";
3366 text: auto;
3367}
3368node[sport=rowing] {
3369 icon-image: "sport/rowing.png";
3370 text: auto;
3371}
3372node[sport=sailing] {
3373 icon-image: "misc/no_icon.png";
3374 text: auto;
3375}
3376node[sport=diving] {
3377 icon-image: "sport/diving.png";
3378 text: auto;
3379}
3380node[sport=badminton] {
3381 icon-image: "misc/no_icon.png";
3382 text: auto;
3383}
3384area[sport=archery],
3385area[sport=fishing],
3386area[sport=safety_training],
3387area[sport=model_aerodrome],
3388area[sport=rc_car] {
3389 fill-color: sport#bde3cb;
3390}
3391node[sport=archery] {
3392 icon-image: "sport/archery.png";
3393 text: auto;
3394}
3395node[sport=fishing] {
3396 icon-image: "sport/fishing.png";
3397 text: auto;
3398}
3399node[sport=safety_training] {
3400 icon-image: "sport/safety_training.png";
3401 text: auto;
3402}
3403node[sport=model_aerodrome] {
3404 icon-image: "transport/airport.png";
3405 text: auto;
3406}
3407node[sport=rc_car] {
3408 icon-image: "transport/car.png";
3409 text: auto;
3410}
3411
3412/*******************/
3413/* properties tags */
3414/*******************/
3415
3416node[mountain_pass?] {
3417 icon-image: "misc/landmark/mountain_pass.png";
3418 text: auto;
3419}
3420
3421/*****************/
3422/* boundary tags */
3423/*****************/
3424
3425way[boundary=national]::core_boundary,
3426way[boundary=administrative]::core_boundary,
3427way[boundary=postal_code]::core_boundary,
3428way[boundary=political]::core_boundary,
3429way[boundary=national_park]::core_boundary {
3430 z-index: 2;
3431 modifier: false;
3432 width: 1;
3433 color: boundary#FF6600;
3434 dashes: 9,9;
3435/* priority="-10"*/
3436}
3437way[admin_level=9]::core_boundary,
3438relation[admin_level=9] > way::core_boundary,
3439way[admin_level=10]::core_boundary,
3440relation[admin_level=10] > way::core_boundary {
3441 z-index: 2;
3442 modifier: false;
3443 width: 1;
3444 color: boundary#FF6600;
3445 dashes: 9,9;
3446}
3447way[admin_level=7]::core_boundary,
3448relation[admin_level=7] > way::core_boundary,
3449way[admin_level=8]::core_boundary,
3450relation[admin_level=8] > way::core_boundary {
3451 z-index: 2;
3452 modifier: false;
3453 width: 2;
3454 color: boundary#FF6600;
3455 dashes: 9,9;
3456}
3457way[admin_level=5]::core_boundary,
3458relation[admin_level=5] > way::core_boundary,
3459way[admin_level=6]::core_boundary,
3460relation[admin_level=6] > way::core_boundary {
3461 z-index: 2;
3462 modifier: false;
3463 width: 3;
3464 color: boundary#FF6600;
3465 dashes: 9,9;
3466}
3467way[admin_level=3]::core_boundary,
3468relation[admin_level=3] > way::core_boundary,
3469way[admin_level=4]::core_boundary,
3470relation[admin_level=4] > way::core_boundary {
3471 z-index: 2;
3472 modifier: false;
3473 width: 4;
3474 color: boundary#FF6600;
3475 dashes: 9,9;
3476}
3477way[admin_level=1]::core_boundary,
3478relation[admin_level=1] > way::core_boundary,
3479way[admin_level=2]::core_boundary,
3480relation[admin_level=2] > way::core_boundary {
3481 z-index: 2;
3482 modifier: false;
3483 width: 5;
3484 color: boundary#FF6600;
3485 dashes: 9,9;
3486}
3487node[boundary=national],
3488node[boundary=administrative],
3489node[boundary=postal_code],
3490node[boundary=political],
3491node[boundary=national_park] {
3492 icon-image: "misc/deprecated.png";
3493 text: auto;
3494}
3495/* "deprecated" tags
3496 historic=museum -> tourism=museum
3497 man_made=power_wind -> power=generator and power_source=wind
3498 man_made=power_hydro -> power=generator and power_source=hydro
3499 man_made=power_fossil -> power=generator and power_source=fossil
3500 man_made=power_nuclear -> power=generator and power_source=nuclear
3501 amenity=park_bench -> amenity=bench
3502 amenity=signpost -> information=guidepost
3503 amenity=emergency_phone -> emergency=phone
3504 highway minor - classification now more detailed
3505 highway=stile -> barrier=stile
3506 highway=gate -> barrier=gate
3507 highway=cattle_grid -> barrier=cattle_grid
3508 highway=toll_booth -> barrier=toll_booth
3509 highway=viaduct -> bridge=viaduct
3510 railway=viaduct -> bridge=viaduct
3511 waterway=aqueduct -> bridge=aqueduct
3512 natural=marsh -> natural=wetland
3513 leisure=zoo -> tourism=zoo
3514 power=station -> power=plant or power=sub_station
3515*/
3516
Note: See TracBrowser for help on using the repository browser.