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

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

fix #10313 - support for man_made=embankment (plus rendering of embankment=yes)

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