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

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

fix #10127 - render type of tree (leaf_type=broadleaved/needleleaved)

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