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