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

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

see #9691 - include mapcss version of the default style as an option in the map style dialog
not default yet

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