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

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

see #10043 - water color for sport=swimming

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