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

Last change on this file since 7364 was 7364, checked in by Don-vip, 11 years ago

fix #10345 - render only explicit values for tunnel (patch by Klumbumbus)

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