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

Last change on this file since 7292 was 7292, checked in by bastiK, 9 years ago

see #10224 - New icon for amenity=charging_station (by Klumbumbus)

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