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 | meta { |
---|
12 | icon: "dialogs/mappaint/josm_small.png"; |
---|
13 | } |
---|
14 | |
---|
15 | canvas { |
---|
16 | default-points: false; |
---|
17 | } |
---|
18 | |
---|
19 | /*************************/ |
---|
20 | /* create style settings */ |
---|
21 | /*************************/ |
---|
22 | |
---|
23 | setting::hide_icons { |
---|
24 | type: boolean; |
---|
25 | label: tr("Hide icons at low zoom"); |
---|
26 | default: true; |
---|
27 | } |
---|
28 | |
---|
29 | setting::shrink_nodes { |
---|
30 | type: boolean; |
---|
31 | label: tr("Less obtrusive node symbols at low zoom"); |
---|
32 | default: true; |
---|
33 | } |
---|
34 | |
---|
35 | setting::highway_labels { |
---|
36 | type: boolean; |
---|
37 | label: tr("Display street labels (at high zoom)"); |
---|
38 | default: true; |
---|
39 | } |
---|
40 | |
---|
41 | setting::alt_turn_icons { |
---|
42 | type: boolean; |
---|
43 | label: tr("Use alternative turn restriction icon set"); |
---|
44 | default: false; |
---|
45 | } |
---|
46 | |
---|
47 | /*********************/ |
---|
48 | /* turn restrictions */ |
---|
49 | /*********************/ |
---|
50 | |
---|
51 | relation[restriction=no_left_turn][!setting("alt_turn_icons")] { |
---|
52 | icon-image: "vehicle/restriction/turn_restrictions/no_left_turn_red.png"; |
---|
53 | set icon_z17; |
---|
54 | text: auto; |
---|
55 | } |
---|
56 | relation[restriction=no_left_turn][setting("alt_turn_icons")] { |
---|
57 | icon-image: "vehicle/restriction/turn_restrictions/no_left_turn.png"; |
---|
58 | set icon_z17; |
---|
59 | text: auto; |
---|
60 | } |
---|
61 | relation[restriction=no_right_turn][!setting("alt_turn_icons")] { |
---|
62 | icon-image: "vehicle/restriction/turn_restrictions/no_right_turn_red.png"; |
---|
63 | set icon_z17; |
---|
64 | text: auto; |
---|
65 | } |
---|
66 | relation[restriction=no_right_turn][setting("alt_turn_icons")] { |
---|
67 | icon-image: "vehicle/restriction/turn_restrictions/no_right_turn.png"; |
---|
68 | set icon_z17; |
---|
69 | text: auto; |
---|
70 | } |
---|
71 | relation[restriction=no_straight_on][!setting("alt_turn_icons")] { |
---|
72 | icon-image: "vehicle/restriction/turn_restrictions/no_straight_on_red.png"; |
---|
73 | set icon_z17; |
---|
74 | text: auto; |
---|
75 | } |
---|
76 | relation[restriction=no_straight_on][setting("alt_turn_icons")] { |
---|
77 | icon-image: "vehicle/restriction/turn_restrictions/no_straight_on.png"; |
---|
78 | set icon_z17; |
---|
79 | text: auto; |
---|
80 | } |
---|
81 | relation[restriction=no_u_turn] { |
---|
82 | icon-image: "vehicle/restriction/turn_restrictions/no_u_turn.png"; |
---|
83 | set icon_z17; |
---|
84 | text: auto; |
---|
85 | } |
---|
86 | relation[restriction=only_left_turn] { |
---|
87 | icon-image: "vehicle/restriction/turn_restrictions/only_left_turn.png"; |
---|
88 | set icon_z17; |
---|
89 | text: auto; |
---|
90 | } |
---|
91 | relation[restriction=only_right_turn] { |
---|
92 | icon-image: "vehicle/restriction/turn_restrictions/only_right_turn.png"; |
---|
93 | set icon_z17; |
---|
94 | text: auto; |
---|
95 | } |
---|
96 | relation[restriction=only_straight_on] { |
---|
97 | icon-image: "vehicle/restriction/turn_restrictions/only_straight_on.png"; |
---|
98 | set icon_z17; |
---|
99 | text: auto; |
---|
100 | } |
---|
101 | node[restriction] { |
---|
102 | icon-image: "misc/deprecated.png"; |
---|
103 | set icon_z17; |
---|
104 | text: auto; |
---|
105 | } |
---|
106 | |
---|
107 | /******************/ |
---|
108 | /* bridge, tunnel */ |
---|
109 | /******************/ |
---|
110 | |
---|
111 | way[bridge?]::core_bridge, |
---|
112 | way[bridge=viaduct]::core_bridge, |
---|
113 | way[bridge=swing]::core_bridge, |
---|
114 | way[bridge=movable]::core_bridge, |
---|
115 | way[bridge=cantilever]::core_bridge, |
---|
116 | way[bridge=covered]::core_bridge, |
---|
117 | way[bridge=low_water_crossing]::core_bridge, |
---|
118 | way[bridge=trestle]::core_bridge, |
---|
119 | way[bridge=aqueduct]::core_bridge { |
---|
120 | major-z-index: 2; |
---|
121 | object-z-index: -1; |
---|
122 | width: +4; |
---|
123 | color: bridge#0000FF; |
---|
124 | opacity: 0.9; |
---|
125 | } |
---|
126 | way[tunnel?]::core_tunnel, |
---|
127 | way[tunnel=culvert]::core_tunnel, |
---|
128 | way[tunnel=building_passage]::core_tunnel, |
---|
129 | way[tunnel=avalanche_protector]::core_tunnel { |
---|
130 | major-z-index: 2; |
---|
131 | object-z-index: -1; |
---|
132 | width: +5; |
---|
133 | color: tunnel#964B00; |
---|
134 | opacity: 0.9; |
---|
135 | } |
---|
136 | node[oneway], |
---|
137 | node[bridge], |
---|
138 | node[tunnel?], |
---|
139 | node[tunnel?!], |
---|
140 | node[cutting?!], |
---|
141 | node[embankment?!] { |
---|
142 | icon-image: "misc/deprecated.png"; |
---|
143 | set icon_z17; |
---|
144 | text: auto; |
---|
145 | } |
---|
146 | |
---|
147 | /****************************/ |
---|
148 | /* access restrictions tags */ |
---|
149 | /****************************/ |
---|
150 | |
---|
151 | way[access?!]::core_access { |
---|
152 | z-index: -1; |
---|
153 | width: +2; |
---|
154 | color: no#ff8080; |
---|
155 | dashes: 2,2; |
---|
156 | } |
---|
157 | way[access=permissive]::core_access { |
---|
158 | z-index: -1; |
---|
159 | width: +2; |
---|
160 | color: permissive#80ff80; |
---|
161 | dashes: 2,2; |
---|
162 | } |
---|
163 | way[access=private]::core_access { |
---|
164 | z-index: -1; |
---|
165 | width: +2; |
---|
166 | color: private#ff8080; |
---|
167 | dashes: 2,2; |
---|
168 | } |
---|
169 | way[access=destination]::core_access { |
---|
170 | z-index: -1; |
---|
171 | width: +2; |
---|
172 | color: destination#8080ff; |
---|
173 | dashes: 2,2; |
---|
174 | } |
---|
175 | node[traffic_sign][access?!] { |
---|
176 | icon-image: "vehicle/restriction/access.png"; |
---|
177 | set icon_z17; |
---|
178 | } |
---|
179 | node[traffic_sign][access=permissive], |
---|
180 | node[traffic_sign][access=private], |
---|
181 | node[traffic_sign][access=destination] { |
---|
182 | icon-image: "misc/no_icon.png"; |
---|
183 | set icon_z17; |
---|
184 | text: auto; |
---|
185 | } |
---|
186 | node[traffic_sign][bicycle?!] { |
---|
187 | icon-image: "vehicle/restriction/bicycle.png"; |
---|
188 | set icon_z17; |
---|
189 | } |
---|
190 | node[traffic_sign][bicycle=designated] { |
---|
191 | icon-image: "vehicle/restriction/bicycle-designated.png"; |
---|
192 | set icon_z17; |
---|
193 | text: auto; |
---|
194 | } |
---|
195 | node[traffic_sign][foot?!] { |
---|
196 | icon-image: "vehicle/restriction/foot.png"; |
---|
197 | set icon_z17; |
---|
198 | } |
---|
199 | node[traffic_sign][foot=designated] { |
---|
200 | icon-image: "vehicle/restriction/foot-designated.png"; |
---|
201 | set icon_z17; |
---|
202 | text: auto; |
---|
203 | } |
---|
204 | node[traffic_sign][goods?!], |
---|
205 | node[traffic_sign][hgv?!] { |
---|
206 | icon-image: "vehicle/restriction/goods.png"; |
---|
207 | set icon_z17; |
---|
208 | } |
---|
209 | node[traffic_sign][horse?!] { |
---|
210 | icon-image: "vehicle/restriction/horse.png"; |
---|
211 | set icon_z17; |
---|
212 | } |
---|
213 | node[traffic_sign][horse=designated] { |
---|
214 | icon-image: "vehicle/restriction/horse-designated.png"; |
---|
215 | set icon_z17; |
---|
216 | } |
---|
217 | node[traffic_sign][motorcycle?!] { |
---|
218 | icon-image: "vehicle/restriction/motorbike.png"; |
---|
219 | set icon_z17; |
---|
220 | } |
---|
221 | node[traffic_sign][motorcar?!] { |
---|
222 | icon-image: "vehicle/restriction/motorcar.png"; |
---|
223 | set icon_z17; |
---|
224 | } |
---|
225 | node[traffic_sign][psv?!] { |
---|
226 | icon-image: "vehicle/restriction/psv.png"; |
---|
227 | set icon_z17; |
---|
228 | } |
---|
229 | node[traffic_sign][motorboat?!], |
---|
230 | node[traffic_sign][boat?!] { |
---|
231 | icon-image: "misc/no_icon.png"; |
---|
232 | set icon_z17; |
---|
233 | } |
---|
234 | node[noexit?] { |
---|
235 | icon-image: "vehicle/restriction/dead_end.png"; |
---|
236 | set icon_z17; |
---|
237 | } |
---|
238 | node[traffic_sign][maxweight] { |
---|
239 | icon-image: "vehicle/restriction/maxweight.png"; |
---|
240 | set icon_z17; |
---|
241 | } |
---|
242 | node[traffic_sign][maxheight] { |
---|
243 | icon-image: "vehicle/restriction/maxheight.png"; |
---|
244 | set icon_z17; |
---|
245 | } |
---|
246 | node[traffic_sign][maxwidth] { |
---|
247 | icon-image: "vehicle/restriction/maxwidth.png"; |
---|
248 | set icon_z17; |
---|
249 | } |
---|
250 | node[traffic_sign][maxlength] { |
---|
251 | icon-image: "vehicle/restriction/maxlength.png"; |
---|
252 | set icon_z17; |
---|
253 | } |
---|
254 | node[traffic_sign][minspeed] { |
---|
255 | icon-image: "vehicle/restriction/minspeed.png"; |
---|
256 | set icon_z17; |
---|
257 | } |
---|
258 | node[traffic_sign][maxstay], |
---|
259 | node[traffic_sign][toll] { |
---|
260 | icon-image: "misc/no_icon.png"; |
---|
261 | set icon_z17; |
---|
262 | } |
---|
263 | |
---|
264 | /*****************************/ |
---|
265 | /* building/entrance/address */ |
---|
266 | /*****************************/ |
---|
267 | |
---|
268 | node["addr:housenumber"], |
---|
269 | node["addr:postcode"] { |
---|
270 | icon-image: "misc/housenumber.png"; |
---|
271 | set icon_z17; |
---|
272 | text: auto; |
---|
273 | } |
---|
274 | way["addr:interpolation"=odd] { |
---|
275 | width: 1; |
---|
276 | color: address#1C86EE; |
---|
277 | dashes: 15,4; |
---|
278 | } |
---|
279 | way["addr:interpolation"=even] { |
---|
280 | width: 1; |
---|
281 | color: address#1C86EE; |
---|
282 | dashes: 4,4; |
---|
283 | } |
---|
284 | way["addr:interpolation"=all], |
---|
285 | way["addr:interpolation"=alphabetic] { |
---|
286 | width: 1; |
---|
287 | color: address#1C86EE; |
---|
288 | dashes: 2,2; |
---|
289 | } |
---|
290 | area[building][!building?!] { |
---|
291 | fill-color: building#cb9999; |
---|
292 | } |
---|
293 | node[building][!building?!] { |
---|
294 | icon-image: "misc/landmark/building.png"; |
---|
295 | set icon_z17; |
---|
296 | text: auto; |
---|
297 | } |
---|
298 | node[building=garage] { |
---|
299 | icon-image: "misc/landuse/garages.png"; |
---|
300 | set icon_z17; |
---|
301 | text: auto; |
---|
302 | } |
---|
303 | node[building=garages] { |
---|
304 | icon-image: "misc/landuse/garages.png"; |
---|
305 | set icon_z17; |
---|
306 | text: auto; |
---|
307 | } |
---|
308 | node[entrance=yes] { |
---|
309 | icon-image: "misc/entrance-yes.png"; |
---|
310 | set icon_z17; |
---|
311 | text: auto; |
---|
312 | } |
---|
313 | node[entrance=main] { |
---|
314 | icon-image: "misc/entrance-main.png"; |
---|
315 | set icon_z17; |
---|
316 | text: auto; |
---|
317 | } |
---|
318 | node[entrance=service] { |
---|
319 | icon-image: "misc/entrance-service.png"; |
---|
320 | set icon_z17; |
---|
321 | text: auto; |
---|
322 | } |
---|
323 | node[entrance=exit] { |
---|
324 | icon-image: "misc/entrance-exit.png"; |
---|
325 | set icon_z17; |
---|
326 | text: auto; |
---|
327 | } |
---|
328 | node[entrance=emergency] { |
---|
329 | icon-image: "misc/entrance-emergency.png"; |
---|
330 | set icon_z17; |
---|
331 | text: auto; |
---|
332 | } |
---|
333 | node[building=entrance] { |
---|
334 | icon-image: "misc/deprecated.png"; |
---|
335 | set icon_z17; |
---|
336 | text: auto; |
---|
337 | } |
---|
338 | |
---|
339 | /****************/ |
---|
340 | /* barrier tags */ |
---|
341 | /****************/ |
---|
342 | |
---|
343 | way[barrier=bollard] { |
---|
344 | width: 2; |
---|
345 | color: barrier#F0F050; |
---|
346 | dashes: 3,9; |
---|
347 | } |
---|
348 | node[barrier=bollard] { |
---|
349 | icon-image: "presets/bollard.png"; |
---|
350 | icon-width: 16; |
---|
351 | set icon_z17; |
---|
352 | text: auto; |
---|
353 | } |
---|
354 | node[barrier=gate] { |
---|
355 | icon-image: "vehicle/gate.png"; |
---|
356 | set icon_z17; |
---|
357 | text: auto; |
---|
358 | } |
---|
359 | way[barrier=yes], |
---|
360 | way[barrier=hedge], |
---|
361 | way[barrier=fence], |
---|
362 | way[barrier=wall], |
---|
363 | way[barrier=guard_rail], |
---|
364 | way[barrier=city_wall], |
---|
365 | way[barrier=retaining_wall], |
---|
366 | way[barrier=block], |
---|
367 | way[barrier=chain], |
---|
368 | way[barrier=ditch], |
---|
369 | way[barrier=kerb] { |
---|
370 | width: 2; |
---|
371 | color: barrier#F0F050; |
---|
372 | } |
---|
373 | node[barrier=hedge], |
---|
374 | node[barrier=wall], |
---|
375 | node[barrier=guard_rail], |
---|
376 | node[barrier=city_wall], |
---|
377 | node[barrier=retaining_wall], |
---|
378 | node[barrier=ditch] { |
---|
379 | icon-image: "misc/deprecated.png"; |
---|
380 | set icon_z17; |
---|
381 | text: auto; |
---|
382 | } |
---|
383 | node[barrier=kerb] { |
---|
384 | icon-image: "vehicle/kerb.svg"; |
---|
385 | set icon_z17; |
---|
386 | text: auto; |
---|
387 | } |
---|
388 | node[barrier=block] { |
---|
389 | icon-image: "vehicle/block.svg"; |
---|
390 | set icon_z17; |
---|
391 | text: auto; |
---|
392 | } |
---|
393 | node[barrier=chain] { |
---|
394 | icon-image: "vehicle/chain.svg"; |
---|
395 | set icon_z17; |
---|
396 | text: auto; |
---|
397 | } |
---|
398 | node[barrier=stile] { |
---|
399 | icon-image: "vehicle/stile.svg"; |
---|
400 | set icon_z17; |
---|
401 | text: auto; |
---|
402 | } |
---|
403 | node[barrier=turnstile] { |
---|
404 | icon-image: "vehicle/turnstile.png"; |
---|
405 | set icon_z17; |
---|
406 | text: auto; |
---|
407 | } |
---|
408 | node[barrier=cycle_barrier] { |
---|
409 | icon-image: "vehicle/cycle_barrier.png"; |
---|
410 | set icon_z17; |
---|
411 | text: auto; |
---|
412 | } |
---|
413 | node[barrier=lift_gate] { |
---|
414 | icon-image: "vehicle/lift_gate.png"; |
---|
415 | set icon_z17; |
---|
416 | text: auto; |
---|
417 | } |
---|
418 | node[barrier=swing_gate] { |
---|
419 | icon-image: "vehicle/swing_gate.png"; |
---|
420 | set icon_z17; |
---|
421 | text: auto; |
---|
422 | } |
---|
423 | area[barrier=toll_booth]:closed { |
---|
424 | fill-color: barrier#F0F050; |
---|
425 | } |
---|
426 | node[barrier=toll_booth] { |
---|
427 | icon-image: "vehicle/toll_booth.png"; |
---|
428 | set icon_z17; |
---|
429 | text: auto; |
---|
430 | } |
---|
431 | node[barrier=entrance] { |
---|
432 | icon-image: "vehicle/entrance.png"; |
---|
433 | set icon_z17; |
---|
434 | text: auto; |
---|
435 | } |
---|
436 | node[barrier=cattle_grid] { |
---|
437 | icon-image: "vehicle/cattle_grid.png"; |
---|
438 | set icon_z17; |
---|
439 | text: auto; |
---|
440 | } |
---|
441 | node[barrier=border_control] { |
---|
442 | icon-image: "vehicle/border_control.png"; |
---|
443 | set icon_z17; |
---|
444 | text: auto; |
---|
445 | } |
---|
446 | node[barrier=sally_port] { |
---|
447 | icon-image: "vehicle/sally_port.png"; |
---|
448 | set icon_z17; |
---|
449 | text: auto; |
---|
450 | } |
---|
451 | node[barrier=spikes] { |
---|
452 | icon-image: "vehicle/spikes.svg"; |
---|
453 | set icon_z17; |
---|
454 | text: auto; |
---|
455 | } |
---|
456 | node[barrier=fence], |
---|
457 | node[barrier=kissing_gate], |
---|
458 | node[barrier=bump_gate], |
---|
459 | node[barrier=portcullis], |
---|
460 | node[barrier=bus_trap], |
---|
461 | node[barrier=drawbridge], |
---|
462 | node[barrier=hampshire_gate] { |
---|
463 | icon-image: "misc/no_icon.png"; |
---|
464 | set icon_z17; |
---|
465 | text: auto; |
---|
466 | } |
---|
467 | |
---|
468 | /****************/ |
---|
469 | /* highway tags */ |
---|
470 | /****************/ |
---|
471 | |
---|
472 | way[motorroad?]::core_motorroad { |
---|
473 | major-z-index: 2; |
---|
474 | z-index: -1; |
---|
475 | width: +4; |
---|
476 | color: motorroad#3377ff; |
---|
477 | } |
---|
478 | way[highway=motorway] { |
---|
479 | width: 3; |
---|
480 | color: motorway#809bc0; |
---|
481 | } |
---|
482 | way[highway=motorway_link] { |
---|
483 | width: 3; |
---|
484 | color: motorway#809bc0; |
---|
485 | } |
---|
486 | way[highway=trunk] { |
---|
487 | width: 3; |
---|
488 | color: trunk#7fc97f; |
---|
489 | } |
---|
490 | way[highway=trunk_link] { |
---|
491 | width: 3; |
---|
492 | color: trunk#7fc97f; |
---|
493 | } |
---|
494 | way[highway=primary] { |
---|
495 | width: 3; |
---|
496 | color: primary#fb805f; |
---|
497 | } |
---|
498 | way[highway=primary_link] { |
---|
499 | width: 3; |
---|
500 | color: primary#fb805f; |
---|
501 | } |
---|
502 | way[highway=secondary] { |
---|
503 | width: 3; |
---|
504 | color: secondary#fdbf6f; |
---|
505 | } |
---|
506 | way[highway=secondary_link] { |
---|
507 | width: 3; |
---|
508 | color: secondary#fdbf6f; |
---|
509 | } |
---|
510 | way[highway=tertiary] { |
---|
511 | width: 2; |
---|
512 | color: tertiary#f7f496; |
---|
513 | } |
---|
514 | way[highway=tertiary_link] { |
---|
515 | width: 2; |
---|
516 | color: tertiary#f7f496; |
---|
517 | } |
---|
518 | way[highway=unclassified] { |
---|
519 | width: 2; |
---|
520 | color: street#c0c0c0; |
---|
521 | } |
---|
522 | way[highway=escape] { |
---|
523 | width: 3; |
---|
524 | color: street#c0c0c0; |
---|
525 | dashes: 3,3; |
---|
526 | } |
---|
527 | way[highway=road] { |
---|
528 | width: 2; |
---|
529 | casing-width: 0.5; |
---|
530 | casing-color: #ff9696; |
---|
531 | color: #770000; |
---|
532 | } |
---|
533 | way[highway=track][area?], relation[type=multipolygon][highway=track] { |
---|
534 | fill-color: highway_track#6e541c; |
---|
535 | } |
---|
536 | way[highway=track] { |
---|
537 | width: 2; |
---|
538 | color: highway_track#6e541c; |
---|
539 | } |
---|
540 | way[highway=residential] { |
---|
541 | width: 2; |
---|
542 | color: street#c0c0c0; |
---|
543 | } |
---|
544 | way[highway=living_street] { |
---|
545 | width: 2; |
---|
546 | dashes: 9,9; |
---|
547 | dashes-background-color: livingdashed#00ff00; |
---|
548 | color: street#c0c0c0; |
---|
549 | } |
---|
550 | way[highway=service][area?], relation[type=multipolygon][highway=service] { |
---|
551 | fill-color: service#809bc0; |
---|
552 | } |
---|
553 | way[highway=service][!area?] { |
---|
554 | width: 1; |
---|
555 | color: service#809bc0; |
---|
556 | } |
---|
557 | way[highway=bridleway] { |
---|
558 | width: 1; |
---|
559 | color: horse#a18559; |
---|
560 | } |
---|
561 | way[highway=cycleway] { |
---|
562 | width: 1; |
---|
563 | color: bicycle#b100ff; |
---|
564 | } |
---|
565 | way[highway=footway][area?], relation[type=multipolygon][highway=footway] { |
---|
566 | fill-color: foot#00ff00; |
---|
567 | } |
---|
568 | way[highway=footway][!area?] { |
---|
569 | width: 1; |
---|
570 | color: foot#00ff00; |
---|
571 | } |
---|
572 | way[highway=path][bicycle!=designated][bicycle!=official][foot!=designated][foot!=official] { |
---|
573 | width: 1; |
---|
574 | dashes: 9,9; |
---|
575 | color: foot#00ff00; |
---|
576 | } |
---|
577 | /* display path with bicycle/foot=designated/official as if it was cycleway/footway */ |
---|
578 | way[highway=path][bicycle=designated], |
---|
579 | way[highway=path][bicycle=official] { |
---|
580 | width: 1; |
---|
581 | color: bicycle#b100ff; |
---|
582 | } |
---|
583 | way[highway=path][foot=designated], |
---|
584 | way[highway=path][foot=official] { |
---|
585 | width: 1; |
---|
586 | color: foot#00ff00; |
---|
587 | } |
---|
588 | way[highway=path][bicycle=designated][foot=designated], |
---|
589 | way[highway=path][bicycle=official][foot=official] { |
---|
590 | width: 1; |
---|
591 | color: bicycle#b100ff; |
---|
592 | dashes: 14,14; |
---|
593 | dashes-background-color: foot#00ff00; |
---|
594 | } |
---|
595 | way[highway=cycleway][foot=yes], |
---|
596 | way[highway=path][bicycle=designated][foot=yes], |
---|
597 | way[highway=path][bicycle=official][foot=yes] { |
---|
598 | width: 1; |
---|
599 | color: bicycle#b100ff; |
---|
600 | dashes: 21,7; |
---|
601 | dashes-background-color: foot#00ff00; |
---|
602 | } |
---|
603 | way[highway=footway][bicycle=yes], |
---|
604 | way[highway=path][bicycle=yes][foot=designated], |
---|
605 | way[highway=path][bicycle=yes][foot=official] { |
---|
606 | width: 1; |
---|
607 | color: foot#00ff00; |
---|
608 | dashes: 21,7; |
---|
609 | dashes-background-color: bicycle#b100ff; |
---|
610 | } |
---|
611 | way[highway=pedestrian][area?], relation[type=multipolygon][highway=pedestrian] { |
---|
612 | width: 3; |
---|
613 | color: foot#00ff00; |
---|
614 | fill-color: foot#00ff00; |
---|
615 | } |
---|
616 | way[highway=pedestrian] { |
---|
617 | width: 3; |
---|
618 | color: foot#00ff00; |
---|
619 | } |
---|
620 | way[highway=steps] { |
---|
621 | width: 3; |
---|
622 | color: foot#00ff00; |
---|
623 | dashes: 2,2; |
---|
624 | } |
---|
625 | node[highway=steps] { |
---|
626 | icon-image: "transport/steps.png"; |
---|
627 | set icon_z17; |
---|
628 | text: auto; |
---|
629 | } |
---|
630 | way[highway=bus_guideway] { |
---|
631 | width: 1; |
---|
632 | color: rail#404040; |
---|
633 | dashes: 9,9; |
---|
634 | } |
---|
635 | way[highway=raceway] { |
---|
636 | width: 1; |
---|
637 | color: raceway#ff80ff; |
---|
638 | } |
---|
639 | way[highway=raceway][area?], relation[type=multipolygon][highway=raceway] { |
---|
640 | fill-color: raceway#ff80ff; |
---|
641 | } |
---|
642 | area[junction=yes] { |
---|
643 | fill-color: junction#c0c0c0; |
---|
644 | } |
---|
645 | node[junction=yes] { |
---|
646 | icon-image: "misc/no_icon.png"; |
---|
647 | set icon_z17; |
---|
648 | text: auto; |
---|
649 | } |
---|
650 | node[highway=traffic_mirror] { |
---|
651 | icon-image: "vehicle/traffic_mirror.svg"; |
---|
652 | set icon_z17; |
---|
653 | text: auto; |
---|
654 | } |
---|
655 | node[direction=clockwise] { |
---|
656 | icon-image: "vehicle/restriction/roundabout_left.png"; |
---|
657 | set icon_z17; |
---|
658 | text: auto; |
---|
659 | } |
---|
660 | node[highway=mini_roundabout] { |
---|
661 | icon-image: "vehicle/restriction/roundabout_left.png"; |
---|
662 | set icon_z17; |
---|
663 | text: auto; |
---|
664 | } |
---|
665 | node:righthandtraffic[highway=mini_roundabout] { |
---|
666 | icon-image: "vehicle/restriction/roundabout_right.png"; |
---|
667 | set icon_z17; |
---|
668 | } |
---|
669 | node[highway=stop] { |
---|
670 | icon-image: "vehicle/restriction/stop.png"; |
---|
671 | set icon_z17; |
---|
672 | text: auto; |
---|
673 | } |
---|
674 | node[highway=give_way] { |
---|
675 | icon-image: "vehicle/restriction/right_of_way.png"; |
---|
676 | set icon_z17; |
---|
677 | text: auto; |
---|
678 | } |
---|
679 | node[highway=traffic_signals] { |
---|
680 | icon-image: "vehicle/traffic_signals.svg"; |
---|
681 | set icon_z17; |
---|
682 | text: auto; |
---|
683 | } |
---|
684 | node[highway=traffic_signals][crossing][crossing!=no] { |
---|
685 | icon-image: "vehicle/traffic_signals_crossing.svg"; |
---|
686 | set icon_z17; |
---|
687 | text: auto; |
---|
688 | } |
---|
689 | node[highway=traffic_signals][crossing_ref=zebra] { |
---|
690 | icon-image: "vehicle/traffic_signals_crossing_ref_zebra.svg"; |
---|
691 | set icon_z17; |
---|
692 | text: auto; |
---|
693 | } |
---|
694 | node[highway=traffic_signals][crossing=island] { |
---|
695 | icon-image: "vehicle/traffic_signals_crossing_island.svg"; |
---|
696 | set icon_z17; |
---|
697 | text: auto; |
---|
698 | } |
---|
699 | node[highway=traffic_signals][crossing=traffic_signals] { |
---|
700 | icon-image: "vehicle/traffic_signals_crossing_traffic_signals.svg"; |
---|
701 | set icon_z17; |
---|
702 | text: auto; |
---|
703 | } |
---|
704 | node[highway=street_lamp] { |
---|
705 | icon-image: "misc/streetlamp.png"; |
---|
706 | set icon_z17; |
---|
707 | text: auto; |
---|
708 | } |
---|
709 | node[highway=speed_camera] { |
---|
710 | icon-image: "vehicle/restriction/speed_trap.png"; |
---|
711 | set icon_z17; |
---|
712 | text: auto; |
---|
713 | } |
---|
714 | relation[type=enforcement] >[role="device"] node { |
---|
715 | icon-image: "vehicle/restriction/speed_trap.png"; |
---|
716 | set icon_z17; |
---|
717 | text: auto; |
---|
718 | } |
---|
719 | node[traffic_sign=city_limit] { |
---|
720 | icon-image: "vehicle/restriction/citylimit.png"; |
---|
721 | set icon_z17; |
---|
722 | text: auto; |
---|
723 | } |
---|
724 | node[highway=crossing] { |
---|
725 | icon-image: "vehicle/crossing.svg"; |
---|
726 | set icon_z17; |
---|
727 | text: auto; |
---|
728 | } |
---|
729 | node[highway=crossing][crossing=unmarked] { |
---|
730 | icon-image: "vehicle/crossing_unmarked.svg"; |
---|
731 | set icon_z17; |
---|
732 | text: auto; |
---|
733 | } |
---|
734 | node[highway=crossing][crossing=island] { |
---|
735 | icon-image: "vehicle/crossing_island.svg"; |
---|
736 | set icon_z17; |
---|
737 | text: auto; |
---|
738 | } |
---|
739 | node[highway=crossing][crossing_ref=zebra] { |
---|
740 | icon-image: "vehicle/crossing_ref_zebra.svg"; |
---|
741 | set icon_z17; |
---|
742 | text: auto; |
---|
743 | } |
---|
744 | node[highway=crossing][crossing=traffic_signals] { |
---|
745 | icon-image: "vehicle/crossing_traffic_signals.svg"; |
---|
746 | set icon_z17; |
---|
747 | text: auto; |
---|
748 | } |
---|
749 | node[highway=incline], node[highway=incline_steep] { |
---|
750 | icon-image: "vehicle/restriction/incline.png"; |
---|
751 | set icon_z17; |
---|
752 | text: auto; |
---|
753 | } |
---|
754 | node[highway=motorway_junction] { |
---|
755 | icon-image: "vehicle/motorway_junction.svg"; |
---|
756 | set icon_z17; |
---|
757 | text: auto; |
---|
758 | } |
---|
759 | area[highway=services] { |
---|
760 | fill-color: services#c0c0c0; |
---|
761 | } |
---|
762 | node[highway=services] { |
---|
763 | icon-image: "vehicle/services.png"; |
---|
764 | set icon_z17; |
---|
765 | text: auto; |
---|
766 | } |
---|
767 | area[highway=rest_area] { |
---|
768 | fill-color: services#c0c0c0; |
---|
769 | } |
---|
770 | node[highway=rest_area] { |
---|
771 | icon-image: "vehicle/parking.png"; |
---|
772 | set icon_z17; |
---|
773 | text: auto; |
---|
774 | } |
---|
775 | node[highway=ford], node[ford?] { |
---|
776 | icon-image: "vehicle/ford.png"; |
---|
777 | set icon_z17; |
---|
778 | text: auto; |
---|
779 | } |
---|
780 | way[ford?]::core_ford { |
---|
781 | z-index: 1; |
---|
782 | width: 2; |
---|
783 | color: water#0000ff; |
---|
784 | dashes: 9,9; |
---|
785 | } |
---|
786 | area[highway=platform]:closed { |
---|
787 | fill-color: highway_platform#c0c0c0; |
---|
788 | } |
---|
789 | way[highway=platform] { |
---|
790 | width: 2; |
---|
791 | color: highway_platform#c0c0c0; |
---|
792 | } |
---|
793 | node[highway=turning_circle] { |
---|
794 | icon-image: "vehicle/turning_circle.png"; |
---|
795 | set icon_z17; |
---|
796 | text: auto; |
---|
797 | } |
---|
798 | node[highway=turning_loop] { |
---|
799 | icon-image: "vehicle/turning_loop.png"; |
---|
800 | set icon_z17; |
---|
801 | text: auto; |
---|
802 | } |
---|
803 | node[highway=passing_place] { |
---|
804 | icon-image: "vehicle/passing_place.png"; |
---|
805 | set icon_z17; |
---|
806 | text: auto; |
---|
807 | } |
---|
808 | area[highway=elevator] { |
---|
809 | fill-color: elevator#a6bace; |
---|
810 | } |
---|
811 | node[highway=elevator] { |
---|
812 | icon-image: "service/elevator.png"; |
---|
813 | set icon_z17; |
---|
814 | text: auto; |
---|
815 | } |
---|
816 | way[highway=construction] { |
---|
817 | width: 2; |
---|
818 | color: construction#ffff00; |
---|
819 | dashes: 9,9; |
---|
820 | } |
---|
821 | node[highway=construction] { |
---|
822 | icon-image: "misc/construction.png"; |
---|
823 | set icon_z17; |
---|
824 | text: auto; |
---|
825 | } |
---|
826 | area[highway=emergency_access_point] { |
---|
827 | fill-color: emergency_access_point#c0c0c0; |
---|
828 | } |
---|
829 | node[highway=emergency_access_point] { |
---|
830 | icon-image: "service/emergency_access_point.png"; |
---|
831 | set icon_z17; |
---|
832 | text: auto; |
---|
833 | } |
---|
834 | node[highway=motorway], node[highway=motorway_link], |
---|
835 | node[highway=trunk], node[highway=trunk_link], |
---|
836 | node[highway=primary], node[highway=primary_link], |
---|
837 | node[highway=secondary], node[highway=secondary_link], |
---|
838 | node[highway=tertiary], node[highway=tertiary_link], |
---|
839 | node[highway=unclassified], |
---|
840 | node[highway=road], |
---|
841 | node[highway=unsurfaced], |
---|
842 | node[highway=track], |
---|
843 | node[highway=residential], |
---|
844 | node[highway=living_street], |
---|
845 | node[highway=service], |
---|
846 | node[highway=bridleway], |
---|
847 | node[highway=cycleway], |
---|
848 | node[highway=footway], |
---|
849 | node[highway=path], |
---|
850 | node[highway=pedestrian], |
---|
851 | node[highway=bus_guideway], |
---|
852 | node[highway=platform] { |
---|
853 | icon-image: "misc/deprecated.png"; |
---|
854 | set icon_z17; |
---|
855 | text: auto; |
---|
856 | } |
---|
857 | |
---|
858 | /************************/ |
---|
859 | /* traffic_calming tags */ |
---|
860 | /************************/ |
---|
861 | |
---|
862 | node[traffic_calming] { |
---|
863 | icon-image: "vehicle/traffic_calming_blue.png"; |
---|
864 | set icon_z17; |
---|
865 | text: auto; |
---|
866 | } |
---|
867 | node[traffic_calming=chicane] { |
---|
868 | icon-image: "vehicle/chicane.png"; |
---|
869 | set icon_z17; |
---|
870 | text: auto; |
---|
871 | } |
---|
872 | node[traffic_calming=choker], |
---|
873 | node[traffic_calming=cushion] { |
---|
874 | icon-image: "vehicle/passing_place.png"; |
---|
875 | set icon_z17; |
---|
876 | text: auto; |
---|
877 | } |
---|
878 | |
---|
879 | /****************/ |
---|
880 | /* junction tag */ |
---|
881 | /****************/ |
---|
882 | |
---|
883 | node[junction=roundabout] { |
---|
884 | icon-image: "vehicle/restriction/roundabout_left.png"; |
---|
885 | set icon_z17; |
---|
886 | text: auto; |
---|
887 | } |
---|
888 | node:righthandtraffic[junction=roundabout] { |
---|
889 | icon-image: "vehicle/restriction/roundabout_right.png"; |
---|
890 | set icon_z17; |
---|
891 | } |
---|
892 | |
---|
893 | /*****************/ |
---|
894 | /* cycleway tags */ |
---|
895 | /*****************/ |
---|
896 | |
---|
897 | way[oneway?][cycleway=lane]:righthandtraffic::core_cycleway, |
---|
898 | way[oneway=-1][cycleway=opposite_lane]:righthandtraffic::core_cycleway { |
---|
899 | set lR; |
---|
900 | set righthandtr; |
---|
901 | } |
---|
902 | way[oneway?][cycleway=opposite_lane]:righthandtraffic::core_cycleway, |
---|
903 | way[oneway=-1][cycleway=lane]:righthandtraffic::core_cycleway { |
---|
904 | set lL; |
---|
905 | set righthandtr; |
---|
906 | } |
---|
907 | way[oneway?][cycleway=lane]!.righthandtr::core_cycleway, |
---|
908 | way[oneway=-1][cycleway=opposite_lane]!.righthandtr::core_cycleway { |
---|
909 | set lL; |
---|
910 | } |
---|
911 | way[oneway?][cycleway=opposite_lane]!.righthandtr::core_cycleway, |
---|
912 | way[oneway=-1][cycleway=lane]!.righthandtr::core_cycleway { |
---|
913 | set lR; |
---|
914 | } |
---|
915 | way[cycleway:left=lane]::core_cycleway { |
---|
916 | set lL; |
---|
917 | } |
---|
918 | way[cycleway:right=lane]::core_cycleway { |
---|
919 | set lR; |
---|
920 | } |
---|
921 | way[!oneway][cycleway=lane]::core_cycleway { |
---|
922 | set lL; |
---|
923 | set lR; |
---|
924 | } |
---|
925 | |
---|
926 | way[oneway?][cycleway=track]:righthandtraffic::core_cycleway, |
---|
927 | way[oneway=-1][cycleway=opposite_track]:righthandtraffic::core_cycleway { |
---|
928 | set tR; |
---|
929 | set righthandtr; |
---|
930 | } |
---|
931 | way[oneway?][cycleway=opposite_track]:righthandtraffic::core_cycleway, |
---|
932 | way[oneway=-1][cycleway=track]:righthandtraffic::core_cycleway { |
---|
933 | set tL; |
---|
934 | set righthandtr; |
---|
935 | } |
---|
936 | way[oneway?][cycleway=track]!.righthandtr::core_cycleway, |
---|
937 | way[oneway=-1][cycleway=opposite_track]!.righthandtr::core_cycleway { |
---|
938 | set tL; |
---|
939 | } |
---|
940 | way[oneway?][cycleway=opposite_track]!.righthandtr::core_cycleway, |
---|
941 | way[oneway=-1][cycleway=track]!.righthandtr::core_cycleway { |
---|
942 | set tR; |
---|
943 | } |
---|
944 | way[cycleway:left=track]::core_cycleway { |
---|
945 | set tL; |
---|
946 | } |
---|
947 | way[cycleway:right=track]::core_cycleway { |
---|
948 | set tR; |
---|
949 | } |
---|
950 | way[!oneway][cycleway=track]::core_cycleway { |
---|
951 | set tL; |
---|
952 | set tR; |
---|
953 | } |
---|
954 | |
---|
955 | way.lR::core_cycleway { |
---|
956 | width: 2; |
---|
957 | color: bicycle#b100ff; |
---|
958 | dashes: 6, 10; |
---|
959 | offset: 0 - (prop("width", "default") / 2) - 2; |
---|
960 | major-z-index: 2.1; |
---|
961 | modifier: true; |
---|
962 | } |
---|
963 | way[prop("lL","core_cycleway")]::core_cycleway2 { |
---|
964 | width: 2; |
---|
965 | color: bicycle#b100ff; |
---|
966 | dashes: 6, 10; |
---|
967 | offset: (prop("width", "default") / 2) + 2; |
---|
968 | major-z-index: 2.1; |
---|
969 | modifier: true; |
---|
970 | } |
---|
971 | way.tR::core_cycleway { |
---|
972 | width: 2; |
---|
973 | color: bicycle#b100ff; |
---|
974 | dashes: 25, 8; |
---|
975 | offset: 0 - (prop("width", "default") / 2) - 2; |
---|
976 | major-z-index: 2.1; |
---|
977 | modifier: true; |
---|
978 | } |
---|
979 | way[prop("tL","core_cycleway")]::core_cycleway2 { |
---|
980 | width: 2; |
---|
981 | color: bicycle#b100ff; |
---|
982 | dashes: 25, 8; |
---|
983 | offset: (prop("width", "default") / 2) + 2; |
---|
984 | major-z-index: 2.1; |
---|
985 | modifier: true; |
---|
986 | } |
---|
987 | |
---|
988 | way[cycleway=opposite]::core_cycleway { |
---|
989 | object-z-index: 1; |
---|
990 | width: +0; |
---|
991 | color: bicycle#b100ff; |
---|
992 | dashes: 4,10; |
---|
993 | } |
---|
994 | node[cycleway=lane], node[cycleway=opposite_lane], |
---|
995 | node[cycleway=track], node[cycleway=opposite_track], |
---|
996 | node[cycleway=opposite] { |
---|
997 | icon-image: "misc/deprecated.png"; |
---|
998 | set icon_z17; |
---|
999 | text: auto; |
---|
1000 | } |
---|
1001 | |
---|
1002 | /******************/ |
---|
1003 | /* tracktype tags */ |
---|
1004 | /******************/ |
---|
1005 | |
---|
1006 | way[highway=track][tracktype=grade1] { |
---|
1007 | dashes: 8,1; |
---|
1008 | } |
---|
1009 | way[highway=track][tracktype=grade2] { |
---|
1010 | dashes: 6,2; |
---|
1011 | } |
---|
1012 | way[highway=track][tracktype=grade3] { |
---|
1013 | dashes: 4,3; |
---|
1014 | } |
---|
1015 | way[highway=track][tracktype=grade4] { |
---|
1016 | dashes: 4,5; |
---|
1017 | } |
---|
1018 | way[highway=track][tracktype=grade5] { |
---|
1019 | dashes: 4,7; |
---|
1020 | } |
---|
1021 | |
---|
1022 | /**************/ |
---|
1023 | /* piste tags */ |
---|
1024 | /**************/ |
---|
1025 | |
---|
1026 | way[route=ski]::core_piste { |
---|
1027 | z-index: -1; |
---|
1028 | modifier: false; |
---|
1029 | width: 6; |
---|
1030 | color: ski#809bc0; |
---|
1031 | } |
---|
1032 | area[piste:difficulty=easy][!highway]:closed::core_piste { |
---|
1033 | fill-color: piste_easy#0000ff; |
---|
1034 | } |
---|
1035 | way[piste:difficulty=easy]::core_piste { |
---|
1036 | z-index: -1; /* below line style from highway=* tag */ |
---|
1037 | modifier: false; /* suppress default line if there is no style on default layer */ |
---|
1038 | width: 6; |
---|
1039 | color: piste_easy#0000ff; |
---|
1040 | } |
---|
1041 | area[piste:difficulty=intermediate][!highway]:closed::core_piste { |
---|
1042 | fill-color: piste_intermediate#ff0000; |
---|
1043 | } |
---|
1044 | way[piste:difficulty=intermediate]::core_piste { |
---|
1045 | z-index: -1; |
---|
1046 | modifier: false; |
---|
1047 | width: 6; |
---|
1048 | color: piste_intermediate#ff0000; |
---|
1049 | } |
---|
1050 | area[piste:difficulty=advanced][!highway]:closed::core_piste { |
---|
1051 | fill-color: piste_advanced#606060; |
---|
1052 | } |
---|
1053 | way[piste:difficulty=advanced]::core_piste { |
---|
1054 | z-index: -1; |
---|
1055 | modifier: false; |
---|
1056 | width: 6; |
---|
1057 | color: piste_advanced#606060; |
---|
1058 | } |
---|
1059 | area[piste:difficulty=expert][!highway]:closed::core_piste { |
---|
1060 | fill-color: piste_expert#606060; |
---|
1061 | } |
---|
1062 | way[piste:difficulty=expert]::core_piste { |
---|
1063 | z-index: -1; |
---|
1064 | modifier: false; |
---|
1065 | width: 6; |
---|
1066 | color: piste_expert#606060; |
---|
1067 | } |
---|
1068 | area[piste:difficulty=freeride][!highway]:closed::core_piste { |
---|
1069 | fill-color: piste_freeride#ffff00; |
---|
1070 | } |
---|
1071 | way[piste:difficulty=freeride]::core_piste { |
---|
1072 | z-index: -1; |
---|
1073 | modifier: false; |
---|
1074 | width: 6; |
---|
1075 | color: piste_freeride#ffff00; |
---|
1076 | } |
---|
1077 | area[piste:difficulty=novice][!highway]:closed::core_piste { |
---|
1078 | fill-color: piste_novice#00ff00; |
---|
1079 | } |
---|
1080 | way[piste:difficulty=novice]::core_piste { |
---|
1081 | z-index: -1; |
---|
1082 | modifier: false; |
---|
1083 | width: 6; |
---|
1084 | color: piste_novice#00ff00; |
---|
1085 | } |
---|
1086 | node[piste:type=downhill], |
---|
1087 | node[piste:type=nordic], |
---|
1088 | node[piste:type=skitour], |
---|
1089 | node[piste:type=sled], |
---|
1090 | node[piste:type=sleigh], |
---|
1091 | node[piste:type=snow_park] { |
---|
1092 | icon-image: "sport/skiing.png"; |
---|
1093 | set icon_z17; |
---|
1094 | } |
---|
1095 | |
---|
1096 | /**************/ |
---|
1097 | /* power tags */ |
---|
1098 | /**************/ |
---|
1099 | |
---|
1100 | node[power=tower] { |
---|
1101 | icon-image: "misc/landmark/power/tower_small.png"; |
---|
1102 | set icon_z17; |
---|
1103 | text: auto; |
---|
1104 | } |
---|
1105 | node[power=pole] { |
---|
1106 | icon-image: "misc/landmark/power/pole.png"; |
---|
1107 | set icon_z17; |
---|
1108 | text: auto; |
---|
1109 | } |
---|
1110 | way[power=line], |
---|
1111 | way[power=minor_line] { |
---|
1112 | width: 1; |
---|
1113 | color: power#eeeeee; |
---|
1114 | } |
---|
1115 | way[power=cable] { |
---|
1116 | width: 1; |
---|
1117 | color: power#eeeeee; |
---|
1118 | dashes: 9,9; |
---|
1119 | } |
---|
1120 | node[power=plant], |
---|
1121 | node[power=sub_station], |
---|
1122 | node[power=line], |
---|
1123 | node[power=cable], |
---|
1124 | node[power=minor_line] { |
---|
1125 | icon-image: "misc/deprecated.png"; |
---|
1126 | set icon_z17; |
---|
1127 | text: auto; |
---|
1128 | } |
---|
1129 | area[power=plant], |
---|
1130 | area[power=substation], |
---|
1131 | area[power=transformer], |
---|
1132 | area[power=compensator], |
---|
1133 | area[power=converter], |
---|
1134 | area[power=generator] { |
---|
1135 | fill-color: power#eeeeee; |
---|
1136 | } |
---|
1137 | node[power=cable_distribution_cabinet], |
---|
1138 | node[power=generator] { |
---|
1139 | icon-image: "misc/landmark/power.png"; |
---|
1140 | set icon_z17; |
---|
1141 | text: auto; |
---|
1142 | } |
---|
1143 | node[power=substation] { |
---|
1144 | icon-image: "icons/power_substation.n.16.png"; |
---|
1145 | set icon_z17; |
---|
1146 | text: auto; |
---|
1147 | } |
---|
1148 | node[power=transformer] { |
---|
1149 | icon-image: "misc/landmark/power/transformer.png"; |
---|
1150 | icon-width: 16; |
---|
1151 | set icon_z17; |
---|
1152 | text: auto; |
---|
1153 | } |
---|
1154 | |
---|
1155 | /*************************/ |
---|
1156 | /* generator:source tags */ |
---|
1157 | /*************************/ |
---|
1158 | |
---|
1159 | area[generator:source=nuclear], |
---|
1160 | area[generator:source=wind], |
---|
1161 | area[generator:source=hydro], |
---|
1162 | area[generator:source=tidal], |
---|
1163 | area[generator:source=wave], |
---|
1164 | area[generator:source=osmotic], |
---|
1165 | area[generator:source=geothermal], |
---|
1166 | area[generator:source=solar], |
---|
1167 | area[generator:source=coal], |
---|
1168 | area[generator:source=gas], |
---|
1169 | area[generator:source=biomass], |
---|
1170 | area[generator:source=biofuel], |
---|
1171 | area[generator:source=biogas], |
---|
1172 | area[generator:source=oil], |
---|
1173 | area[generator:source=diesel], |
---|
1174 | area[generator:source=gasoline], |
---|
1175 | area[generator:source=waste] { |
---|
1176 | fill-color: power#eeeeee; |
---|
1177 | } |
---|
1178 | node[generator:source=nuclear] { |
---|
1179 | icon-image: "presets/power_source-nuclear.svg"; |
---|
1180 | set icon_z17; |
---|
1181 | text: auto; |
---|
1182 | } |
---|
1183 | node[generator:source=wind] { |
---|
1184 | icon-image: "presets/power_source-wind.svg"; |
---|
1185 | set icon_z17; |
---|
1186 | text: auto; |
---|
1187 | } |
---|
1188 | node[generator:source=hydro], |
---|
1189 | node[generator:source=tidal], |
---|
1190 | node[generator:source=wave], |
---|
1191 | node[generator:source=osmotic] { |
---|
1192 | icon-image: "presets/power_source-water.svg"; |
---|
1193 | set icon_z17; |
---|
1194 | text: auto; |
---|
1195 | } |
---|
1196 | node[generator:source=geothermal] { |
---|
1197 | icon-image: "presets/power_source-geothermal.svg"; |
---|
1198 | set icon_z17; |
---|
1199 | text: auto; |
---|
1200 | } |
---|
1201 | node[generator:source=solar] { |
---|
1202 | icon-image: "presets/power_source-sun.svg"; |
---|
1203 | set icon_z17; |
---|
1204 | text: auto; |
---|
1205 | } |
---|
1206 | node[generator:source=coal] { |
---|
1207 | icon-image: "presets/power_source-coal.svg"; |
---|
1208 | set icon_z17; |
---|
1209 | text: auto; |
---|
1210 | } |
---|
1211 | node[generator:source=gas] { |
---|
1212 | icon-image: "presets/power_source-gas.svg"; |
---|
1213 | set icon_z17; |
---|
1214 | text: auto; |
---|
1215 | } |
---|
1216 | node[generator:source=biomass], |
---|
1217 | node[generator:source=biofuel], |
---|
1218 | node[generator:source=biogas] { |
---|
1219 | icon-image: "presets/power_source-biofuel.svg"; |
---|
1220 | set icon_z17; |
---|
1221 | text: auto; |
---|
1222 | } |
---|
1223 | node[generator:source=oil], |
---|
1224 | node[generator:source=diesel], |
---|
1225 | node[generator:source=gasoline] { |
---|
1226 | icon-image: "presets/power_source-oil.svg"; |
---|
1227 | set icon_z17; |
---|
1228 | text: auto; |
---|
1229 | } |
---|
1230 | node[generator:source=waste] { |
---|
1231 | icon-image: "presets/power_source-waste.svg"; |
---|
1232 | set icon_z17; |
---|
1233 | text: auto; |
---|
1234 | } |
---|
1235 | node[power_source] { |
---|
1236 | icon-image: "misc/deprecated.png"; |
---|
1237 | set icon_z17; |
---|
1238 | text: auto; |
---|
1239 | } |
---|
1240 | /*****************/ |
---|
1241 | /* man_made tags */ |
---|
1242 | /*****************/ |
---|
1243 | |
---|
1244 | area[man_made=beacon], |
---|
1245 | area[man_made=bridge], |
---|
1246 | area[bridge:support], |
---|
1247 | area[man_made=chimney], |
---|
1248 | area[man_made=crane], |
---|
1249 | area[man_made=gasometer], |
---|
1250 | area[man_made=bunker_silo], |
---|
1251 | area[man_made=lighthouse], |
---|
1252 | area[man_made=monitoring_station], |
---|
1253 | area[man_made=mineshaft] { |
---|
1254 | fill-color: manmade#d8d8d8; |
---|
1255 | } |
---|
1256 | node[man_made=beacon] { |
---|
1257 | icon-image: "misc/landmark/beacon.png"; |
---|
1258 | set icon_z17; |
---|
1259 | text: auto; |
---|
1260 | } |
---|
1261 | node[man_made=bridge] { |
---|
1262 | icon-image: "misc/deprecated.png"; |
---|
1263 | set icon_z17; |
---|
1264 | text: auto; |
---|
1265 | } |
---|
1266 | node[bridge:support] { |
---|
1267 | icon-image: "transport/bridge/support.svg"; |
---|
1268 | set icon_z17; |
---|
1269 | text: auto; |
---|
1270 | } |
---|
1271 | node[man_made=chimney] { |
---|
1272 | icon-image: "misc/landmark/chimney.png"; |
---|
1273 | set icon_z17; |
---|
1274 | text: auto; |
---|
1275 | } |
---|
1276 | node[man_made=crane] { |
---|
1277 | icon-image: "misc/landmark/crane.png"; |
---|
1278 | set icon_z17; |
---|
1279 | text: auto; |
---|
1280 | } |
---|
1281 | node[man_made=flagpole] { |
---|
1282 | icon-image: "misc/flag.png"; |
---|
1283 | set icon_z17; |
---|
1284 | text: auto; |
---|
1285 | } |
---|
1286 | node[man_made=gasometer] { |
---|
1287 | icon-image: "presets/gasometer.png"; |
---|
1288 | icon-width: 16; |
---|
1289 | set icon_z17; |
---|
1290 | text: auto; |
---|
1291 | } |
---|
1292 | node[man_made=bunker_silo] { |
---|
1293 | icon-image: "bunker_silo.svg"; |
---|
1294 | set icon_z17; |
---|
1295 | text: auto; |
---|
1296 | } |
---|
1297 | area[man_made=groyne]:closed { |
---|
1298 | fill-color: manmade#d8d8d8; |
---|
1299 | } |
---|
1300 | way[man_made=groyne] { |
---|
1301 | width: 2; |
---|
1302 | color: manmade#d8d8d8; |
---|
1303 | } |
---|
1304 | area[man_made=breakwater]:closed { |
---|
1305 | fill-color: manmade#d8d8d8; |
---|
1306 | } |
---|
1307 | way[man_made=breakwater] { |
---|
1308 | width: 2; |
---|
1309 | color: manmade#d8d8d8; |
---|
1310 | } |
---|
1311 | node[man_made=lighthouse] { |
---|
1312 | icon-image: "misc/landmark/lighthouse.png"; |
---|
1313 | set icon_z17; |
---|
1314 | text: auto; |
---|
1315 | } |
---|
1316 | node[man_made=monitoring_station] { |
---|
1317 | icon-image: "misc/landmark/measurement_station.png"; |
---|
1318 | set icon_z17; |
---|
1319 | text: auto; |
---|
1320 | } |
---|
1321 | node[man_made=mineshaft] { |
---|
1322 | icon-image: "misc/landmark/mine.png"; |
---|
1323 | set icon_z17; |
---|
1324 | text: auto; |
---|
1325 | } |
---|
1326 | node[man_made=adit] { |
---|
1327 | icon-image: "misc/landmark/adit.png"; |
---|
1328 | set icon_z17; |
---|
1329 | text: auto; |
---|
1330 | } |
---|
1331 | area[man_made=pier]:closed { |
---|
1332 | fill-color: pier#660000; |
---|
1333 | } |
---|
1334 | way[man_made=pier] { |
---|
1335 | width: 2; |
---|
1336 | color: pier#660000; |
---|
1337 | } |
---|
1338 | node[man_made=pier] { |
---|
1339 | icon-image: "nautical/pier.png"; |
---|
1340 | set icon_z17; |
---|
1341 | text: auto; |
---|
1342 | } |
---|
1343 | way[embankment?][!highway][!railway][!waterway], |
---|
1344 | way[man_made=embankment][!highway][!railway][!waterway] { |
---|
1345 | repeat-image: "misc/embankment-pattern.png"; |
---|
1346 | repeat-image-align: top; |
---|
1347 | width: 1; |
---|
1348 | color: embankment#c14d00; |
---|
1349 | } |
---|
1350 | way[embankment?][highway], |
---|
1351 | way[embankment?][railway], |
---|
1352 | way[embankment?][waterway], |
---|
1353 | way[man_made=embankment][highway], |
---|
1354 | way[man_made=embankment][railway], |
---|
1355 | way[man_made=embankment][waterway] { |
---|
1356 | repeat-image: "misc/embankment-pattern-centered.png"; |
---|
1357 | } |
---|
1358 | way[man_made=pipeline] { |
---|
1359 | width: 2; |
---|
1360 | color: pipeline#660000; |
---|
1361 | } |
---|
1362 | node[man_made=breakwater], |
---|
1363 | node[man_made=groyne], |
---|
1364 | node[man_made=embankment], |
---|
1365 | node[man_made=pipeline] { |
---|
1366 | icon-image: "misc/deprecated.png"; |
---|
1367 | set icon_z17; |
---|
1368 | text: auto; |
---|
1369 | } |
---|
1370 | node[man_made=petroleum_well] { |
---|
1371 | icon-image: "misc/no_icon.png"; |
---|
1372 | set icon_z17; |
---|
1373 | text: auto; |
---|
1374 | } |
---|
1375 | area[man_made=reservoir_covered], |
---|
1376 | area[man_made=surveillance], |
---|
1377 | area[man_made=tower], |
---|
1378 | area[man_made=wastewater_plant], |
---|
1379 | area[man_made=watermill], |
---|
1380 | area[man_made=water_tower], |
---|
1381 | area[man_made=water_well], |
---|
1382 | area[man_made=windmill], |
---|
1383 | area[man_made=works], |
---|
1384 | area[man_made=water_works] { |
---|
1385 | fill-color: manmade#d8d8d8; |
---|
1386 | } |
---|
1387 | node[man_made=reservoir_covered] { |
---|
1388 | icon-image: "misc/landmark/reservoir_covered.png"; |
---|
1389 | set icon_z17; |
---|
1390 | text: auto; |
---|
1391 | } |
---|
1392 | node[man_made=surveillance] { |
---|
1393 | icon-image: "presets/surveillance.png"; |
---|
1394 | icon-width: 16; |
---|
1395 | set icon_z17; |
---|
1396 | text: auto; |
---|
1397 | } |
---|
1398 | node[man_made=survey_point] { |
---|
1399 | icon-image: "misc/landmark/survey_point.png"; |
---|
1400 | set icon_z17; |
---|
1401 | text: auto; |
---|
1402 | } |
---|
1403 | node[man_made=tower] { |
---|
1404 | icon-image: "misc/landmark/tower.png"; |
---|
1405 | set icon_z17; |
---|
1406 | text: auto; |
---|
1407 | } |
---|
1408 | node[man_made=wastewater_plant] { |
---|
1409 | icon-image: "misc/landmark/wastewater_plant.png"; |
---|
1410 | set icon_z17; |
---|
1411 | text: auto; |
---|
1412 | } |
---|
1413 | node[man_made=watermill] { |
---|
1414 | icon-image: "misc/landmark/watermill.png"; |
---|
1415 | set icon_z17; |
---|
1416 | text: auto; |
---|
1417 | } |
---|
1418 | node[man_made=water_tower] { |
---|
1419 | icon-image: "misc/landmark/water_tower.png"; |
---|
1420 | set icon_z17; |
---|
1421 | text: auto; |
---|
1422 | } |
---|
1423 | node[man_made=water_well] { |
---|
1424 | icon-image: "misc/landmark/water_well.png"; |
---|
1425 | set icon_z17; |
---|
1426 | text: auto; |
---|
1427 | } |
---|
1428 | node[man_made=windmill] { |
---|
1429 | icon-image: "misc/landmark/windmill.png"; |
---|
1430 | set icon_z17; |
---|
1431 | text: auto; |
---|
1432 | } |
---|
1433 | node[man_made=works] { |
---|
1434 | icon-image: "misc/landmark/works.png"; |
---|
1435 | set icon_z17; |
---|
1436 | text: auto; |
---|
1437 | } |
---|
1438 | node[man_made=water_works] { |
---|
1439 | icon-image: "misc/landmark/water_works.png"; |
---|
1440 | set icon_z17; |
---|
1441 | text: auto; |
---|
1442 | } |
---|
1443 | |
---|
1444 | /***************/ |
---|
1445 | /* office tags */ |
---|
1446 | /***************/ |
---|
1447 | |
---|
1448 | area[office=company], |
---|
1449 | area[office=government] { |
---|
1450 | fill-color: office#de5696; |
---|
1451 | } |
---|
1452 | node[office=company] { |
---|
1453 | icon-image: "icons/office_blue.png"; |
---|
1454 | set icon_z17; |
---|
1455 | text: auto; |
---|
1456 | } |
---|
1457 | node[office=government] { |
---|
1458 | icon-image: "icons/office_pink.png"; |
---|
1459 | set icon_z17; |
---|
1460 | text: auto; |
---|
1461 | } |
---|
1462 | |
---|
1463 | /****************/ |
---|
1464 | /* leisure tags */ |
---|
1465 | /****************/ |
---|
1466 | |
---|
1467 | area[leisure=sports_centre], |
---|
1468 | area[leisure=golf_course], |
---|
1469 | area[leisure=stadium], |
---|
1470 | area[leisure=track][!area?!]:closed, |
---|
1471 | area[leisure=pitch], |
---|
1472 | area[leisure=horse_riding], |
---|
1473 | area[leisure=water_park] { |
---|
1474 | fill-color: leisure#c7f1a3; |
---|
1475 | } |
---|
1476 | node[leisure=sports_centre] { |
---|
1477 | icon-image: "sport/centre.png"; |
---|
1478 | set icon_z17; |
---|
1479 | text: auto; |
---|
1480 | } |
---|
1481 | node[leisure=golf_course] { |
---|
1482 | icon-image: "sport/golf.svg"; |
---|
1483 | set icon_z17; |
---|
1484 | text: auto; |
---|
1485 | } |
---|
1486 | node[leisure=stadium] { |
---|
1487 | icon-image: "sport/stadium.png"; |
---|
1488 | set icon_z17; |
---|
1489 | text: auto; |
---|
1490 | } |
---|
1491 | way[leisure=track] { |
---|
1492 | width: 2; |
---|
1493 | color: leisure#c7f1a3; |
---|
1494 | } |
---|
1495 | node[leisure=track] { |
---|
1496 | icon-image: "sport/track.png"; |
---|
1497 | set icon_z17; |
---|
1498 | text: auto; |
---|
1499 | } |
---|
1500 | node[leisure=pitch] { |
---|
1501 | icon-image: "sport/pitch.png"; |
---|
1502 | set icon_z17; |
---|
1503 | text: auto; |
---|
1504 | } |
---|
1505 | node[leisure=horse_riding] { |
---|
1506 | icon-image: "presets/equestrian.png"; |
---|
1507 | icon-width: 16; |
---|
1508 | set icon_z17; |
---|
1509 | text: auto; |
---|
1510 | } |
---|
1511 | node[leisure=water_park] { |
---|
1512 | icon-image: "leisure/water_park.png"; |
---|
1513 | set icon_z17; |
---|
1514 | text: auto; |
---|
1515 | } |
---|
1516 | area[leisure=marina] { |
---|
1517 | fill-color: marina#0070cf; |
---|
1518 | } |
---|
1519 | node[leisure=marina] { |
---|
1520 | icon-image: "nautical/marina.png"; |
---|
1521 | set icon_z17; |
---|
1522 | text: auto; |
---|
1523 | } |
---|
1524 | way[leisure=slipway] { |
---|
1525 | width: 2; |
---|
1526 | color: leisure#c7f1a3; |
---|
1527 | } |
---|
1528 | node[leisure=slipway] { |
---|
1529 | icon-image: "nautical/slipway.png"; |
---|
1530 | set icon_z17; |
---|
1531 | text: auto; |
---|
1532 | } |
---|
1533 | area[leisure=fishing], |
---|
1534 | area[leisure=nature_reserve], |
---|
1535 | area[leisure=park], |
---|
1536 | area[leisure=playground], |
---|
1537 | area[leisure=garden], |
---|
1538 | area[leisure=common], |
---|
1539 | area[leisure=firepit] { |
---|
1540 | fill-color: leisure#c7f1a3; |
---|
1541 | } |
---|
1542 | node[leisure=fishing] { |
---|
1543 | icon-image: "sport/fishing.png"; |
---|
1544 | set icon_z17; |
---|
1545 | text: auto; |
---|
1546 | } |
---|
1547 | node[leisure=nature_reserve] { |
---|
1548 | icon-image: "leisure/nature_reserve.png"; |
---|
1549 | set icon_z17; |
---|
1550 | text: auto; |
---|
1551 | } |
---|
1552 | node[leisure=park] { |
---|
1553 | icon-image: "misc/deprecated.png"; |
---|
1554 | set icon_z17; |
---|
1555 | text: auto; |
---|
1556 | } |
---|
1557 | node[leisure=playground] { |
---|
1558 | icon-image: "leisure/playground.png"; |
---|
1559 | set icon_z17; |
---|
1560 | text: auto; |
---|
1561 | } |
---|
1562 | node[leisure=garden] { |
---|
1563 | icon-image: "leisure/garden.png"; |
---|
1564 | set icon_z17; |
---|
1565 | text: auto; |
---|
1566 | } |
---|
1567 | node[leisure=common] { |
---|
1568 | icon-image: "leisure/common.png"; |
---|
1569 | set icon_z17; |
---|
1570 | text: auto; |
---|
1571 | } |
---|
1572 | node[leisure=firepit] { |
---|
1573 | icon-image: "leisure/firepit.svg"; |
---|
1574 | set icon_z17; |
---|
1575 | text: auto; |
---|
1576 | } |
---|
1577 | node[leisure=picnic_table] { |
---|
1578 | icon-image: "leisure/picnic.png"; |
---|
1579 | set icon_z17; |
---|
1580 | text: auto; |
---|
1581 | } |
---|
1582 | area[leisure=swimming_pool] { |
---|
1583 | fill-color: swimming_pool#51c4ef; |
---|
1584 | } |
---|
1585 | node[leisure=swimming_pool] { |
---|
1586 | icon-image: "sport/pool.png"; |
---|
1587 | set icon_z17; |
---|
1588 | text: auto; |
---|
1589 | } |
---|
1590 | area[leisure=miniature_golf], |
---|
1591 | area[leisure=dog_park], |
---|
1592 | area[leisure=ice_rink], |
---|
1593 | area[leisure=sauna] { |
---|
1594 | fill-color: leisure#c7f1a3; |
---|
1595 | } |
---|
1596 | node[leisure=miniature_golf] { |
---|
1597 | icon-image: "sport/miniature_golf.svg"; |
---|
1598 | set icon_z17; |
---|
1599 | text: auto; |
---|
1600 | } |
---|
1601 | node[leisure=dog_park] { |
---|
1602 | icon-image: "presets/dogpark.png"; |
---|
1603 | icon-width: 16; |
---|
1604 | set icon_z17; |
---|
1605 | text: auto; |
---|
1606 | } |
---|
1607 | node[leisure=ice_rink] { |
---|
1608 | icon-image: "sport/hockey.png"; |
---|
1609 | set icon_z17; |
---|
1610 | text: auto; |
---|
1611 | } |
---|
1612 | node[leisure=sauna] { |
---|
1613 | icon-image: "leisure/sauna.png"; |
---|
1614 | set icon_z17; |
---|
1615 | text: auto; |
---|
1616 | } |
---|
1617 | |
---|
1618 | /********************/ |
---|
1619 | /* advertising tags */ |
---|
1620 | /********************/ |
---|
1621 | |
---|
1622 | node[advertising=column] { |
---|
1623 | icon-image: "leisure/advertising_column.svg"; |
---|
1624 | set icon_z17; |
---|
1625 | text: auto; |
---|
1626 | } |
---|
1627 | node[advertising=billboard] { |
---|
1628 | icon-image: "leisure/billboard.svg"; |
---|
1629 | set icon_z17; |
---|
1630 | text: auto; |
---|
1631 | } |
---|
1632 | |
---|
1633 | /*************/ |
---|
1634 | /* shop tags */ |
---|
1635 | /*************/ |
---|
1636 | |
---|
1637 | area[shop=supermarket], |
---|
1638 | area[shop=convenience], |
---|
1639 | area[shop=bakery], |
---|
1640 | area[shop=butcher], |
---|
1641 | area[shop=bicycle], |
---|
1642 | area[shop=doityourself], |
---|
1643 | area[shop=dry_cleaning], |
---|
1644 | area[shop=laundry], |
---|
1645 | area[shop=outdoor], |
---|
1646 | area[shop=kiosk], |
---|
1647 | area[shop=alcohol], |
---|
1648 | area[shop=beverages], |
---|
1649 | area[shop=books], |
---|
1650 | area[shop=boutique], |
---|
1651 | area[shop=car], |
---|
1652 | area[shop=car_dealer], |
---|
1653 | area[shop=car_repair], |
---|
1654 | area[shop=tyres], |
---|
1655 | area[shop=chemist], |
---|
1656 | area[shop=clothes], |
---|
1657 | area[shop=computer], |
---|
1658 | area[shop=confectionery], |
---|
1659 | area[shop=copyshop], |
---|
1660 | area[shop=curtain], |
---|
1661 | area[shop=cycle_repair], |
---|
1662 | area[shop=department_store], |
---|
1663 | area[shop=deli], |
---|
1664 | area[shop=electronics], |
---|
1665 | area[shop=erotic], |
---|
1666 | area[shop=furniture], |
---|
1667 | area[shop=fabric], |
---|
1668 | area[shop=florist], |
---|
1669 | area[shop=frame], |
---|
1670 | area[shop=gift], |
---|
1671 | area[shop=greengrocer], |
---|
1672 | area[shop=garden_centre], |
---|
1673 | area[shop=hairdresser], |
---|
1674 | area[shop=hardware], |
---|
1675 | area[shop=hearing_aids], |
---|
1676 | area[shop=hifi], |
---|
1677 | area[shop=jewelry], |
---|
1678 | area[shop=kitchen], |
---|
1679 | area[shop=mall], |
---|
1680 | area[shop=mobile_phone], |
---|
1681 | area[shop=motorcycle], |
---|
1682 | area[shop=musical_instrument], |
---|
1683 | area[shop=newsagent], |
---|
1684 | area[shop=optician], |
---|
1685 | area[shop=medical_supply], |
---|
1686 | area[shop=paint], |
---|
1687 | area[shop=pawnbroker], |
---|
1688 | area[shop=seafood], |
---|
1689 | area[shop=shoes], |
---|
1690 | area[shop=sports], |
---|
1691 | area[shop=stationery], |
---|
1692 | area[shop=tailor], |
---|
1693 | area[shop=travel_agency], |
---|
1694 | area[shop=toys], |
---|
1695 | area[shop=vacuum_cleaner], |
---|
1696 | area[shop=variety_store], |
---|
1697 | area[shop=video], |
---|
1698 | area[shop=bookmaker], |
---|
1699 | area[shop=lottery], |
---|
1700 | area[shop=shopping_centre], |
---|
1701 | area[shop=pet], |
---|
1702 | area[shop=ticket], |
---|
1703 | area[shop=interior_decoration], |
---|
1704 | area[shop=car_parts], |
---|
1705 | area[shop=video_games], |
---|
1706 | area[shop=bed], |
---|
1707 | area[shop=beauty], |
---|
1708 | area[shop=tea], |
---|
1709 | area[shop=coffee], |
---|
1710 | area[shop=antiques], |
---|
1711 | area[shop=music], |
---|
1712 | area[shop=funeral_directors], |
---|
1713 | area[shop=wine], |
---|
1714 | area[shop=farm], |
---|
1715 | area[shop=tattoo], |
---|
1716 | area[shop=art], |
---|
1717 | area[shop=bag] { |
---|
1718 | fill-color: shop#00005f; |
---|
1719 | } |
---|
1720 | node[shop=supermarket] { |
---|
1721 | icon-image: "shop/supermarket.png"; |
---|
1722 | set icon_z17; |
---|
1723 | text: auto; |
---|
1724 | } |
---|
1725 | node[shop=convenience] { |
---|
1726 | icon-image: "shop/convenience.png"; |
---|
1727 | set icon_z17; |
---|
1728 | text: auto; |
---|
1729 | } |
---|
1730 | node[shop=bakery] { |
---|
1731 | icon-image: "shop/groceries/bakery.png"; |
---|
1732 | set icon_z17; |
---|
1733 | text: auto; |
---|
1734 | } |
---|
1735 | node[shop=butcher] { |
---|
1736 | icon-image: "shop/groceries/butcher.png"; |
---|
1737 | set icon_z17; |
---|
1738 | text: auto; |
---|
1739 | } |
---|
1740 | node[shop=bicycle] { |
---|
1741 | icon-image: "sport/bicycle.png"; |
---|
1742 | set icon_z17; |
---|
1743 | text: auto; |
---|
1744 | } |
---|
1745 | node[shop=doityourself] { |
---|
1746 | icon-image: "shop/diy_store.png"; |
---|
1747 | set icon_z17; |
---|
1748 | text: auto; |
---|
1749 | } |
---|
1750 | node[shop=dry_cleaning], |
---|
1751 | node[shop=laundry] { |
---|
1752 | icon-image: "shop/laundry.png"; |
---|
1753 | set icon_z17; |
---|
1754 | text: auto; |
---|
1755 | } |
---|
1756 | node[shop=outdoor] { |
---|
1757 | icon-image: "shop/outdoor.png"; |
---|
1758 | set icon_z17; |
---|
1759 | text: auto; |
---|
1760 | } |
---|
1761 | node[shop=kiosk] { |
---|
1762 | icon-image: "shop/kiosk.png"; |
---|
1763 | set icon_z17; |
---|
1764 | text: auto; |
---|
1765 | } |
---|
1766 | node[shop=beverages] { |
---|
1767 | icon-image: "shop/beverages.png"; |
---|
1768 | set icon_z17; |
---|
1769 | text: auto; |
---|
1770 | } |
---|
1771 | node[shop=alcohol] { |
---|
1772 | icon-image: "shop/alcohol.png"; |
---|
1773 | set icon_z17; |
---|
1774 | text: auto; |
---|
1775 | } |
---|
1776 | node[shop=books] { |
---|
1777 | icon-image: "shop/book.svg"; |
---|
1778 | set icon_z17; |
---|
1779 | text: auto; |
---|
1780 | } |
---|
1781 | node[shop=boutique] { |
---|
1782 | icon-image: "shop/boutique.png"; |
---|
1783 | set icon_z17; |
---|
1784 | text: auto; |
---|
1785 | } |
---|
1786 | node[shop=car], |
---|
1787 | node[shop=car_dealer] { |
---|
1788 | icon-image: "vehicle.png"; |
---|
1789 | set icon_z17; |
---|
1790 | text: auto; |
---|
1791 | } |
---|
1792 | node[shop=car_repair] { |
---|
1793 | icon-image: "vehicle/repair_shop.png"; |
---|
1794 | set icon_z17; |
---|
1795 | text: auto; |
---|
1796 | } |
---|
1797 | node[shop=tyres] { |
---|
1798 | icon-image: "vehicle/tyres.png"; |
---|
1799 | set icon_z17; |
---|
1800 | text: auto; |
---|
1801 | } |
---|
1802 | node[shop=chemist] { |
---|
1803 | icon-image: "shop/chemist.png"; |
---|
1804 | set icon_z17; |
---|
1805 | text: auto; |
---|
1806 | } |
---|
1807 | node[shop=clothes] { |
---|
1808 | icon-image: "shop/clothes.png"; |
---|
1809 | set icon_z17; |
---|
1810 | text: auto; |
---|
1811 | } |
---|
1812 | node[shop=computer] { |
---|
1813 | icon-image: "shop/computer.png"; |
---|
1814 | set icon_z17; |
---|
1815 | text: auto; |
---|
1816 | } |
---|
1817 | node[shop=confectionery] { |
---|
1818 | icon-image: "shop/groceries/confectionery.png"; |
---|
1819 | set icon_z17; |
---|
1820 | text: auto; |
---|
1821 | } |
---|
1822 | node[shop=copyshop] { |
---|
1823 | icon-image: "shop/copyshop.png"; |
---|
1824 | set icon_z17; |
---|
1825 | text: auto; |
---|
1826 | } |
---|
1827 | node[shop=curtain] { |
---|
1828 | icon-image: "shop/curtain.png"; |
---|
1829 | set icon_z17; |
---|
1830 | text: auto; |
---|
1831 | } |
---|
1832 | node[shop=cycle_repair] { |
---|
1833 | icon-image: "sport/bicycle.png"; |
---|
1834 | set icon_z17; |
---|
1835 | text: auto; |
---|
1836 | } |
---|
1837 | node[shop=department_store] { |
---|
1838 | icon-image: "shop/mall.png"; |
---|
1839 | set icon_z17; |
---|
1840 | text: auto; |
---|
1841 | } |
---|
1842 | node[shop=deli] { |
---|
1843 | icon-image: "shop/groceries/deli.png"; |
---|
1844 | set icon_z17; |
---|
1845 | text: auto; |
---|
1846 | } |
---|
1847 | node[shop=electronics] { |
---|
1848 | icon-image: "shop/electronics.png"; |
---|
1849 | set icon_z17; |
---|
1850 | text: auto; |
---|
1851 | } |
---|
1852 | node[shop=erotic] { |
---|
1853 | icon-image: "shop/erotic.png"; |
---|
1854 | set icon_z17; |
---|
1855 | text: auto; |
---|
1856 | } |
---|
1857 | node[shop=furniture] { |
---|
1858 | icon-image: "shop/furniture.png"; |
---|
1859 | set icon_z17; |
---|
1860 | text: auto; |
---|
1861 | } |
---|
1862 | node[shop=fabric] { |
---|
1863 | icon-image: "shop/fabric.png"; |
---|
1864 | set icon_z17; |
---|
1865 | text: auto; |
---|
1866 | } |
---|
1867 | node[shop=florist] { |
---|
1868 | icon-image: "shop/florist.png"; |
---|
1869 | set icon_z17; |
---|
1870 | text: auto; |
---|
1871 | } |
---|
1872 | node[shop=frame] { |
---|
1873 | icon-image: "shop/frame.png"; |
---|
1874 | set icon_z17; |
---|
1875 | text: auto; |
---|
1876 | } |
---|
1877 | node[shop=gift] { |
---|
1878 | icon-image: "presets/present.svg"; |
---|
1879 | set icon_z17; |
---|
1880 | text: auto; |
---|
1881 | } |
---|
1882 | node[shop=greengrocer] { |
---|
1883 | icon-image: "shop/groceries/greengrocer.png"; |
---|
1884 | set icon_z17; |
---|
1885 | text: auto; |
---|
1886 | } |
---|
1887 | node[shop=garden_centre] { |
---|
1888 | icon-image: "shop/garden_centre.png"; |
---|
1889 | set icon_z17; |
---|
1890 | text: auto; |
---|
1891 | } |
---|
1892 | node[shop=hairdresser] { |
---|
1893 | icon-image: "shop/hairdresser.png"; |
---|
1894 | set icon_z17; |
---|
1895 | text: auto; |
---|
1896 | } |
---|
1897 | node[shop=hardware] { |
---|
1898 | icon-image: "shop/hardware.png"; |
---|
1899 | set icon_z17; |
---|
1900 | text: auto; |
---|
1901 | } |
---|
1902 | node[shop=hearing_aids] { |
---|
1903 | icon-image: "shop/hearing_aids.png"; |
---|
1904 | set icon_z17; |
---|
1905 | text: auto; |
---|
1906 | } |
---|
1907 | node[shop=hifi] { |
---|
1908 | icon-image: "shop/hifi.png"; |
---|
1909 | set icon_z17; |
---|
1910 | text: auto; |
---|
1911 | } |
---|
1912 | node[shop=jewelry] { |
---|
1913 | icon-image: "shop/jewelry.png"; |
---|
1914 | set icon_z17; |
---|
1915 | text: auto; |
---|
1916 | } |
---|
1917 | node[shop=kitchen] { |
---|
1918 | icon-image: "shop/kitchen.png"; |
---|
1919 | set icon_z17; |
---|
1920 | text: auto; |
---|
1921 | } |
---|
1922 | node[shop=mall] { |
---|
1923 | icon-image: "shop/mall.png"; |
---|
1924 | set icon_z17; |
---|
1925 | text: auto; |
---|
1926 | } |
---|
1927 | node[shop=mobile_phone] { |
---|
1928 | icon-image: "shop/mobile_phone.png"; |
---|
1929 | set icon_z17; |
---|
1930 | text: auto; |
---|
1931 | } |
---|
1932 | node[shop=motorcycle] { |
---|
1933 | icon-image: "vehicle/motorbike.png"; |
---|
1934 | set icon_z17; |
---|
1935 | text: auto; |
---|
1936 | } |
---|
1937 | node[shop=musical_instrument] { |
---|
1938 | icon-image: "shop/musical_instrument.png"; |
---|
1939 | set icon_z17; |
---|
1940 | text: auto; |
---|
1941 | } |
---|
1942 | node[shop=newsagent] { |
---|
1943 | icon-image: "shop/kiosk.png"; |
---|
1944 | set icon_z17; |
---|
1945 | text: auto; |
---|
1946 | } |
---|
1947 | node[shop=optician] { |
---|
1948 | icon-image: "shop/optician.png"; |
---|
1949 | set icon_z17; |
---|
1950 | text: auto; |
---|
1951 | } |
---|
1952 | node[shop=medical_supply] { |
---|
1953 | icon-image: "shop/medical_supply.svg"; |
---|
1954 | set icon_z17; |
---|
1955 | text: auto; |
---|
1956 | } |
---|
1957 | node[shop=paint] { |
---|
1958 | icon-image: "shop/paint.png"; |
---|
1959 | set icon_z17; |
---|
1960 | text: auto; |
---|
1961 | } |
---|
1962 | node[shop=pawnbroker] { |
---|
1963 | icon-image: "presets/pawnbroker.svg"; |
---|
1964 | set icon_z17; |
---|
1965 | text: auto; |
---|
1966 | } |
---|
1967 | node[shop=seafood] { |
---|
1968 | icon-image: "shop/groceries/seafood.png"; |
---|
1969 | set icon_z17; |
---|
1970 | text: auto; |
---|
1971 | } |
---|
1972 | node[shop=shoes] { |
---|
1973 | icon-image: "shop/shoes.png"; |
---|
1974 | set icon_z17; |
---|
1975 | text: auto; |
---|
1976 | } |
---|
1977 | node[shop=sports] { |
---|
1978 | icon-image: "sport/multi.png"; |
---|
1979 | set icon_z17; |
---|
1980 | text: auto; |
---|
1981 | } |
---|
1982 | node[shop=stationery] { |
---|
1983 | icon-image: "shop/stationery.png"; |
---|
1984 | set icon_z17; |
---|
1985 | text: auto; |
---|
1986 | } |
---|
1987 | node[shop=tailor] { |
---|
1988 | icon-image: "shop/tailor.png"; |
---|
1989 | set icon_z17; |
---|
1990 | text: auto; |
---|
1991 | } |
---|
1992 | node[shop=travel_agency] { |
---|
1993 | icon-image: "presets/travel.png"; |
---|
1994 | icon-width: 16; |
---|
1995 | set icon_z17; |
---|
1996 | text: auto; |
---|
1997 | } |
---|
1998 | node[shop=toys] { |
---|
1999 | icon-image: "shop/toys.png"; |
---|
2000 | set icon_z17; |
---|
2001 | text: auto; |
---|
2002 | } |
---|
2003 | node[shop=vacuum_cleaner] { |
---|
2004 | icon-image: "shop/vacuum_cleaner.png"; |
---|
2005 | set icon_z17; |
---|
2006 | text: auto; |
---|
2007 | } |
---|
2008 | node[shop=variety_store] { |
---|
2009 | icon-image: "shop/variety_store.png"; |
---|
2010 | set icon_z17; |
---|
2011 | text: auto; |
---|
2012 | } |
---|
2013 | node[shop=video] { |
---|
2014 | icon-image: "shop/video.png"; |
---|
2015 | set icon_z17; |
---|
2016 | text: auto; |
---|
2017 | } |
---|
2018 | node[shop=bookmaker] { |
---|
2019 | icon-image: "presets/lottery.svg"; |
---|
2020 | set icon_z17; |
---|
2021 | text: auto; |
---|
2022 | } |
---|
2023 | node[shop=lottery] { |
---|
2024 | icon-image: "presets/lottery.svg"; |
---|
2025 | set icon_z17; |
---|
2026 | text: auto; |
---|
2027 | } |
---|
2028 | /* duplicate of shopping_centre? */ |
---|
2029 | node[shop=shopping_centre] { |
---|
2030 | icon-image: "shop/mall.png"; |
---|
2031 | set icon_z17; |
---|
2032 | text: auto; |
---|
2033 | } |
---|
2034 | node[shop=pet] { |
---|
2035 | icon-image: "shop/pet.svg"; |
---|
2036 | set icon_z17; |
---|
2037 | text: auto; |
---|
2038 | } |
---|
2039 | node[shop=ticket] { |
---|
2040 | icon-image: "shop/ticket.svg"; |
---|
2041 | set icon_z17; |
---|
2042 | text: auto; |
---|
2043 | } |
---|
2044 | node[shop=interior_decoration] { |
---|
2045 | icon-image: "shop/interior_decoration.svg"; |
---|
2046 | set icon_z17; |
---|
2047 | text: auto; |
---|
2048 | } |
---|
2049 | node[shop=car_parts] { |
---|
2050 | icon-image: "vehicle/car_parts.svg"; |
---|
2051 | set icon_z17; |
---|
2052 | text: auto; |
---|
2053 | } |
---|
2054 | node[shop=video_games] { |
---|
2055 | icon-image: "shop/video_games.png"; |
---|
2056 | set icon_z17; |
---|
2057 | text: auto; |
---|
2058 | } |
---|
2059 | node[shop=bed] { |
---|
2060 | icon-image: "shop/bed.svg"; |
---|
2061 | set icon_z17; |
---|
2062 | text: auto; |
---|
2063 | } |
---|
2064 | node[shop=beauty] { |
---|
2065 | icon-image: "shop/beauty.svg"; |
---|
2066 | set icon_z17; |
---|
2067 | text: auto; |
---|
2068 | } |
---|
2069 | node[shop=tea] { |
---|
2070 | icon-image: "shop/groceries/tea.svg"; |
---|
2071 | set icon_z17; |
---|
2072 | text: auto; |
---|
2073 | } |
---|
2074 | node[shop=coffee] { |
---|
2075 | icon-image: "shop/groceries/coffee.svg"; |
---|
2076 | set icon_z17; |
---|
2077 | text: auto; |
---|
2078 | } |
---|
2079 | node[shop=antiques] { |
---|
2080 | icon-image: "shop/antique.svg"; |
---|
2081 | set icon_z17; |
---|
2082 | text: auto; |
---|
2083 | } |
---|
2084 | node[shop=music] { |
---|
2085 | icon-image: "shop/music.svg"; |
---|
2086 | set icon_z17; |
---|
2087 | text: auto; |
---|
2088 | } |
---|
2089 | node[shop=funeral_directors] { |
---|
2090 | icon-image: "shop/funeral_directors.svg"; |
---|
2091 | set icon_z17; |
---|
2092 | text: auto; |
---|
2093 | } |
---|
2094 | node[shop=wine] { |
---|
2095 | icon-image: "shop/wine.svg"; |
---|
2096 | set icon_z17; |
---|
2097 | text: auto; |
---|
2098 | } |
---|
2099 | node[shop=farm] { |
---|
2100 | icon-image: "presets/apple.png"; |
---|
2101 | set icon_z17; |
---|
2102 | text: auto; |
---|
2103 | } |
---|
2104 | node[shop=tattoo] { |
---|
2105 | icon-image: "shop/tattoo.svg"; |
---|
2106 | set icon_z17; |
---|
2107 | text: auto; |
---|
2108 | } |
---|
2109 | node[shop=art] { |
---|
2110 | icon-image: "shop/art.svg"; |
---|
2111 | set icon_z17; |
---|
2112 | text: auto; |
---|
2113 | } |
---|
2114 | node[shop=bag] { |
---|
2115 | icon-image: "shop/bag.svg"; |
---|
2116 | set icon_z17; |
---|
2117 | text: auto; |
---|
2118 | } |
---|
2119 | |
---|
2120 | /****************/ |
---|
2121 | /* amenity tags */ |
---|
2122 | /****************/ |
---|
2123 | |
---|
2124 | area[amenity=pub], |
---|
2125 | area[amenity=biergarten], |
---|
2126 | area[amenity=nightclub], |
---|
2127 | area[amenity=stripclub], |
---|
2128 | area[amenity=brothel], |
---|
2129 | area[amenity=cafe], |
---|
2130 | area[amenity=restaurant], |
---|
2131 | area[amenity=food_court], |
---|
2132 | area[amenity=fast_food], |
---|
2133 | area[amenity=bar], |
---|
2134 | area[amenity=ice_cream] { |
---|
2135 | fill-color: amenity#ecba52; |
---|
2136 | } |
---|
2137 | node[amenity=pub] { |
---|
2138 | icon-image: "food/pub.png"; |
---|
2139 | set icon_z17; |
---|
2140 | text: auto; |
---|
2141 | } |
---|
2142 | node[amenity=biergarten] { |
---|
2143 | icon-image: "food/biergarten.png"; |
---|
2144 | set icon_z17; |
---|
2145 | text: auto; |
---|
2146 | } |
---|
2147 | node[amenity=nightclub] { |
---|
2148 | icon-image: "leisure/discoball.svg"; |
---|
2149 | set icon_z17; |
---|
2150 | text: auto; |
---|
2151 | } |
---|
2152 | node[amenity=stripclub] { |
---|
2153 | icon-image: "leisure/nightclub.png"; |
---|
2154 | set icon_z17; |
---|
2155 | text: auto; |
---|
2156 | } |
---|
2157 | node[amenity=brothel] { |
---|
2158 | icon-image: "leisure/stripclub.png"; |
---|
2159 | set icon_z17; |
---|
2160 | text: auto; |
---|
2161 | } |
---|
2162 | node[amenity=cafe] { |
---|
2163 | icon-image: "food/cafe.png"; |
---|
2164 | set icon_z17; |
---|
2165 | text: auto; |
---|
2166 | } |
---|
2167 | node[amenity=restaurant], |
---|
2168 | node[amenity=food_court] { |
---|
2169 | icon-image: "food/restaurant.png"; |
---|
2170 | set icon_z17; |
---|
2171 | text: auto; |
---|
2172 | } |
---|
2173 | node[amenity=fast_food] { |
---|
2174 | icon-image: "food/fastfood.png"; |
---|
2175 | set icon_z17; |
---|
2176 | text: auto; |
---|
2177 | } |
---|
2178 | node[amenity=bar] { |
---|
2179 | icon-image: "food/bar.png"; |
---|
2180 | set icon_z17; |
---|
2181 | text: auto; |
---|
2182 | } |
---|
2183 | node[amenity=ice_cream] { |
---|
2184 | icon-image: "food/icecream.png"; |
---|
2185 | set icon_z17; |
---|
2186 | text: auto; |
---|
2187 | } |
---|
2188 | area[amenity=parking_space], |
---|
2189 | area[amenity=parking], |
---|
2190 | area[amenity=motorcycle_parking], |
---|
2191 | area[amenity=bicycle_parking], |
---|
2192 | area[amenity=bicycle_rental], |
---|
2193 | area[amenity=bicycle_repair_station], |
---|
2194 | area[amenity=car_rental], |
---|
2195 | area[amenity=car_sharing], |
---|
2196 | area[amenity=car_wash], |
---|
2197 | area[amenity=taxi], |
---|
2198 | area[amenity=fuel] { |
---|
2199 | fill-color: amenity_traffic#f7efb7; |
---|
2200 | } |
---|
2201 | node[amenity=parking_space] { |
---|
2202 | icon-image: "vehicle/parking/parking_space.svg"; |
---|
2203 | set icon_z17; |
---|
2204 | text: auto; |
---|
2205 | } |
---|
2206 | node[amenity=parking] { |
---|
2207 | icon-image: "vehicle/parking.png"; |
---|
2208 | set icon_z17; |
---|
2209 | text: auto; |
---|
2210 | } |
---|
2211 | node[amenity=parking_entrance] { |
---|
2212 | icon-image: "vehicle/parking.png"; |
---|
2213 | set icon_z17; |
---|
2214 | text: auto; |
---|
2215 | } |
---|
2216 | node[amenity=parking_entrance][parking=multi-storey], |
---|
2217 | node[amenity=parking][parking=multi-storey] { |
---|
2218 | icon-image: "vehicle/parking/multi-storey.png"; |
---|
2219 | set icon_z17; |
---|
2220 | text: auto; |
---|
2221 | } |
---|
2222 | node[amenity=parking_entrance][parking=underground], |
---|
2223 | node[amenity=parking][parking=underground] { |
---|
2224 | icon-image: "vehicle/parking/underground.png"; |
---|
2225 | set icon_z17; |
---|
2226 | text: auto; |
---|
2227 | } |
---|
2228 | node[amenity=motorcycle_parking] { |
---|
2229 | icon-image: "vehicle/parking/motorbike.png"; |
---|
2230 | set icon_z17; |
---|
2231 | text: auto; |
---|
2232 | } |
---|
2233 | node[amenity=bicycle_parking] { |
---|
2234 | icon-image: "vehicle/parking/bicycle.png"; |
---|
2235 | set icon_z17; |
---|
2236 | text: auto; |
---|
2237 | } |
---|
2238 | node[park_ride][park_ride!=no] { |
---|
2239 | icon-image: "vehicle/parking/park_ride.svg"; |
---|
2240 | set icon_z17; |
---|
2241 | text: auto; |
---|
2242 | } |
---|
2243 | node[amenity=parking_space][wheelchair?] { |
---|
2244 | icon-image: "vehicle/parking/handicapped.png"; |
---|
2245 | set icon_z17; |
---|
2246 | text: auto; |
---|
2247 | } |
---|
2248 | node[amenity=bicycle_rental] { |
---|
2249 | icon-image: "vehicle/rental/bicycle.png"; |
---|
2250 | set icon_z17; |
---|
2251 | text: auto; |
---|
2252 | } |
---|
2253 | node[amenity=bicycle_repair_station] { |
---|
2254 | icon-image: "vehicle/bicycle_repair_station.svg"; |
---|
2255 | set icon_z17; |
---|
2256 | text: auto; |
---|
2257 | } |
---|
2258 | node[amenity=car_rental] { |
---|
2259 | icon-image: "vehicle/rental/car.png"; |
---|
2260 | set icon_z17; |
---|
2261 | text: auto; |
---|
2262 | } |
---|
2263 | node[amenity=car_sharing] { |
---|
2264 | icon-image: "vehicle/car_sharing.png"; |
---|
2265 | set icon_z17; |
---|
2266 | text: auto; |
---|
2267 | } |
---|
2268 | node[amenity=car_wash] { |
---|
2269 | icon-image: "vehicle/car_wash.png"; |
---|
2270 | set icon_z17; |
---|
2271 | text: auto; |
---|
2272 | } |
---|
2273 | node[amenity=taxi] { |
---|
2274 | icon-image: "transport/taxi.png"; |
---|
2275 | set icon_z17; |
---|
2276 | text: auto; |
---|
2277 | } |
---|
2278 | node[amenity=fuel] { |
---|
2279 | icon-image: "vehicle/fuel.png"; |
---|
2280 | set icon_z17; |
---|
2281 | text: auto; |
---|
2282 | } |
---|
2283 | node[amenity=charging_station] { |
---|
2284 | icon-image: "vehicle/fuel/charging_station.png"; |
---|
2285 | set icon_z17; |
---|
2286 | text: auto; |
---|
2287 | } |
---|
2288 | node[amenity=grit_bin] { |
---|
2289 | icon-image: "misc/grit_bin.png"; |
---|
2290 | set icon_z17; |
---|
2291 | text: auto; |
---|
2292 | } |
---|
2293 | node[amenity=telephone] { |
---|
2294 | icon-image: "service/telephone.png"; |
---|
2295 | set icon_z17; |
---|
2296 | text: auto; |
---|
2297 | } |
---|
2298 | node[amenity=clock] { |
---|
2299 | icon-image: "service/clock.png"; |
---|
2300 | set icon_z17; |
---|
2301 | text: auto; |
---|
2302 | } |
---|
2303 | area[emergency=aed], |
---|
2304 | area[amenity=toilets], |
---|
2305 | area[amenity=shower], |
---|
2306 | area[amenity=recycling] { |
---|
2307 | fill-color: amenity_light#f7efb7; |
---|
2308 | } |
---|
2309 | node[emergency=phone] { |
---|
2310 | icon-image: "vehicle/emergency_phone.png"; |
---|
2311 | set icon_z17; |
---|
2312 | text: auto; |
---|
2313 | } |
---|
2314 | node[emergency=aed] { |
---|
2315 | icon-image: "presets/aed.svg"; |
---|
2316 | set icon_z17; |
---|
2317 | text: auto; |
---|
2318 | } |
---|
2319 | node[emergency=defibrillator] { |
---|
2320 | icon-image: "presets/aed.svg"; |
---|
2321 | set icon_z17; |
---|
2322 | text: auto; |
---|
2323 | } |
---|
2324 | node[amenity=toilets] { |
---|
2325 | icon-image: "service/toilets.png"; |
---|
2326 | set icon_z17; |
---|
2327 | text: auto; |
---|
2328 | } |
---|
2329 | node[amenity=shower] { |
---|
2330 | icon-image: "service/shower.svg"; |
---|
2331 | set icon_z17; |
---|
2332 | text: auto; |
---|
2333 | } |
---|
2334 | node[amenity=recycling] { |
---|
2335 | icon-image: "service/recycling.png"; |
---|
2336 | set icon_z17; |
---|
2337 | text: auto; |
---|
2338 | } |
---|
2339 | node[amenity=waste_basket] { |
---|
2340 | icon-image: "service/recycling/trash-bin.png"; |
---|
2341 | set icon_z17; |
---|
2342 | text: auto; |
---|
2343 | } |
---|
2344 | node[amenity=waste_disposal] { |
---|
2345 | icon-image: "service/recycling/waste_disposal.png"; |
---|
2346 | set icon_z17; |
---|
2347 | text: auto; |
---|
2348 | } |
---|
2349 | area[amenity=public_building], |
---|
2350 | area[amenity=townhall], |
---|
2351 | area[amenity=embassy], |
---|
2352 | area[amenity=community_centre] { |
---|
2353 | fill-color: amenity_light#f7efb7; |
---|
2354 | } |
---|
2355 | node[amenity=public_building] { |
---|
2356 | icon-image: "service.png"; |
---|
2357 | set icon_z17; |
---|
2358 | text: auto; |
---|
2359 | } |
---|
2360 | node[amenity=townhall] { |
---|
2361 | icon-image: "presets/townhall.png"; |
---|
2362 | set icon_z17; |
---|
2363 | text: auto; |
---|
2364 | } |
---|
2365 | node[amenity=embassy] { |
---|
2366 | icon-image: "service/administration/embassy.png"; |
---|
2367 | set icon_z17; |
---|
2368 | text: auto; |
---|
2369 | } |
---|
2370 | node[amenity=community_centre] { |
---|
2371 | icon-image: "service/community_centre.png"; |
---|
2372 | set icon_z17; |
---|
2373 | text: auto; |
---|
2374 | } |
---|
2375 | area[amenity=water_point], |
---|
2376 | area[amenity=fountain] { |
---|
2377 | fill-color: light_water#00005f; |
---|
2378 | } |
---|
2379 | node[amenity=drinking_water] { |
---|
2380 | icon-image: "food/drinking_water.png"; |
---|
2381 | set icon_z17; |
---|
2382 | text: auto; |
---|
2383 | } |
---|
2384 | node[amenity=water_point] { |
---|
2385 | icon-image: "accommodation/camping/water.png"; |
---|
2386 | set icon_z17; |
---|
2387 | text: auto; |
---|
2388 | } |
---|
2389 | node[amenity=fountain] { |
---|
2390 | icon-image: "misc/fountain.png"; |
---|
2391 | set icon_z17; |
---|
2392 | text: auto; |
---|
2393 | } |
---|
2394 | area[amenity=place_of_worship], |
---|
2395 | area[amenity=grave_yard], |
---|
2396 | area[amenity=crematorium], |
---|
2397 | area[amenity=post_office], |
---|
2398 | area[amenity=studio], |
---|
2399 | area[amenity=school], |
---|
2400 | area[amenity=university], |
---|
2401 | area[amenity=college], |
---|
2402 | area[amenity=kindergarten], |
---|
2403 | area[amenity=driving_school] { |
---|
2404 | fill-color: amenity_light#f7efb7; |
---|
2405 | } |
---|
2406 | node[amenity=place_of_worship] { |
---|
2407 | icon-image: "religion.png"; |
---|
2408 | set icon_z17; |
---|
2409 | text: auto; |
---|
2410 | } |
---|
2411 | node[amenity=place_of_worship][religion=bahai] { |
---|
2412 | icon-image: "religion/bahai.png"; |
---|
2413 | set icon_z17; |
---|
2414 | text: auto; |
---|
2415 | } |
---|
2416 | node[amenity=place_of_worship][religion=buddhist] { |
---|
2417 | icon-image: "religion/buddhism.png"; |
---|
2418 | set icon_z17; |
---|
2419 | text: auto; |
---|
2420 | } |
---|
2421 | node[amenity=place_of_worship][religion=christian] { |
---|
2422 | icon-image: "religion/church.png"; |
---|
2423 | set icon_z17; |
---|
2424 | text: auto; |
---|
2425 | } |
---|
2426 | node[amenity=place_of_worship][religion=hindu] { |
---|
2427 | icon-image: "religion/hinduism.png"; |
---|
2428 | set icon_z17; |
---|
2429 | text: auto; |
---|
2430 | } |
---|
2431 | node[amenity=place_of_worship][religion=jain] { |
---|
2432 | icon-image: "religion/jainism.png"; |
---|
2433 | set icon_z17; |
---|
2434 | text: auto; |
---|
2435 | } |
---|
2436 | node[amenity=place_of_worship][religion=jewish] { |
---|
2437 | icon-image: "religion/jewish.png"; |
---|
2438 | set icon_z17; |
---|
2439 | text: auto; |
---|
2440 | } |
---|
2441 | node[amenity=place_of_worship][religion=muslim] { |
---|
2442 | icon-image: "religion/muslim.png"; |
---|
2443 | set icon_z17; |
---|
2444 | text: auto; |
---|
2445 | } |
---|
2446 | node[amenity=place_of_worship][religion=sikh] { |
---|
2447 | icon-image: "religion/sikhism.png"; |
---|
2448 | set icon_z17; |
---|
2449 | text: auto; |
---|
2450 | } |
---|
2451 | node[amenity=place_of_worship][religion=shinto] { |
---|
2452 | icon-image: "religion/shinto.png"; |
---|
2453 | set icon_z17; |
---|
2454 | text: auto; |
---|
2455 | } |
---|
2456 | node[amenity=place_of_worship][religion=spiritualist] { |
---|
2457 | icon-image: "misc/no_icon.png"; |
---|
2458 | set icon_z17; |
---|
2459 | text: auto; |
---|
2460 | } |
---|
2461 | node[amenity=place_of_worship][religion=taoist] { |
---|
2462 | icon-image: "religion/taoism.png"; |
---|
2463 | set icon_z17; |
---|
2464 | text: auto; |
---|
2465 | } |
---|
2466 | node[amenity=place_of_worship][religion=unitarian] { |
---|
2467 | icon-image: "misc/no_icon.png"; |
---|
2468 | set icon_z17; |
---|
2469 | text: auto; |
---|
2470 | } |
---|
2471 | node[amenity=place_of_worship][religion=zoroastrian] { |
---|
2472 | icon-image: "misc/no_icon.png"; |
---|
2473 | set icon_z17; |
---|
2474 | text: auto; |
---|
2475 | } |
---|
2476 | node[amenity=grave_yard] { |
---|
2477 | icon-image: "rendering/landuse/cemetery.png"; |
---|
2478 | set icon_z17; |
---|
2479 | text: auto; |
---|
2480 | } |
---|
2481 | node[amenity=crematorium] { |
---|
2482 | icon-image: "misc/no_icon.png"; |
---|
2483 | set icon_z17; |
---|
2484 | text: auto; |
---|
2485 | } |
---|
2486 | node[amenity=post_office] { |
---|
2487 | icon-image: "service/post_office.png"; |
---|
2488 | set icon_z17; |
---|
2489 | text: auto; |
---|
2490 | } |
---|
2491 | node[amenity=post_box] { |
---|
2492 | icon-image: "service/post_box.png"; |
---|
2493 | set icon_z17; |
---|
2494 | text: auto; |
---|
2495 | } |
---|
2496 | node[amenity=studio] { |
---|
2497 | icon-image: "service/studio.png"; |
---|
2498 | set icon_z17; |
---|
2499 | text: auto; |
---|
2500 | } |
---|
2501 | node[amenity=school] { |
---|
2502 | icon-image: "education/school.png"; |
---|
2503 | set icon_z17; |
---|
2504 | text: auto; |
---|
2505 | } |
---|
2506 | node[amenity=university] { |
---|
2507 | icon-image: "education/university.png"; |
---|
2508 | set icon_z17; |
---|
2509 | text: auto; |
---|
2510 | } |
---|
2511 | node[amenity=college] { |
---|
2512 | icon-image: "education/college.png"; |
---|
2513 | set icon_z17; |
---|
2514 | text: auto; |
---|
2515 | } |
---|
2516 | node[amenity=kindergarten] { |
---|
2517 | icon-image: "education/kindergarten.png"; |
---|
2518 | set icon_z17; |
---|
2519 | text: auto; |
---|
2520 | } |
---|
2521 | node[amenity=driving_school] { |
---|
2522 | icon-image: "education/driving_school.png"; |
---|
2523 | set icon_z17; |
---|
2524 | text: auto; |
---|
2525 | } |
---|
2526 | area[amenity=pharmacy], |
---|
2527 | area[amenity=hospital], |
---|
2528 | area[amenity=clinic], |
---|
2529 | area[amenity=nursing_home], |
---|
2530 | area[amenity=social_facility], |
---|
2531 | area[amenity=nursery], |
---|
2532 | area[amenity=baby_hatch], |
---|
2533 | area[amenity=doctors], |
---|
2534 | area[amenity=dentist], |
---|
2535 | area[amenity=veterinary] { |
---|
2536 | fill-color: health#eeeeee; |
---|
2537 | } |
---|
2538 | node[amenity=pharmacy] { |
---|
2539 | icon-image: "health/pharmacy.png"; |
---|
2540 | set icon_z17; |
---|
2541 | text: auto; |
---|
2542 | } |
---|
2543 | node[amenity=hospital], |
---|
2544 | node[amenity=clinic] { |
---|
2545 | icon-image: "health/hospital.png"; |
---|
2546 | set icon_z17; |
---|
2547 | text: auto; |
---|
2548 | } |
---|
2549 | node[amenity=nursing_home], |
---|
2550 | node[amenity=social_facility], |
---|
2551 | node[amenity=nursery] { |
---|
2552 | icon-image: "misc/no_icon.png"; |
---|
2553 | set icon_z17; |
---|
2554 | text: auto; |
---|
2555 | } |
---|
2556 | node[amenity=baby_hatch] { |
---|
2557 | icon-image: "health/baby_hatch.png"; |
---|
2558 | set icon_z17; |
---|
2559 | text: auto; |
---|
2560 | } |
---|
2561 | node[amenity=doctors] { |
---|
2562 | icon-image: "health/doctor.png"; |
---|
2563 | set icon_z17; |
---|
2564 | text: auto; |
---|
2565 | } |
---|
2566 | node[amenity=dentist] { |
---|
2567 | icon-image: "health/dentist.png"; |
---|
2568 | set icon_z17; |
---|
2569 | text: auto; |
---|
2570 | } |
---|
2571 | node[amenity=veterinary] { |
---|
2572 | icon-image: "health/veterinary.png"; |
---|
2573 | set icon_z17; |
---|
2574 | text: auto; |
---|
2575 | } |
---|
2576 | area[amenity=library], |
---|
2577 | area[amenity=police], |
---|
2578 | area[amenity=ranger_station], |
---|
2579 | area[amenity=fire_station], |
---|
2580 | area[amenity=bus_station], |
---|
2581 | area[amenity=ferry_terminal], |
---|
2582 | area[amenity=theatre], |
---|
2583 | area[amenity=cinema], |
---|
2584 | area[amenity=arts_centre], |
---|
2585 | area[amenity=courthouse], |
---|
2586 | area[amenity=prison], |
---|
2587 | area[amenity=bank], |
---|
2588 | area[amenity=bureau_de_change], |
---|
2589 | area[amenity=bbq] { |
---|
2590 | fill-color: amenity_light#f7efb7; |
---|
2591 | } |
---|
2592 | node[amenity=library] { |
---|
2593 | icon-image: "shop/library.png"; |
---|
2594 | set icon_z17; |
---|
2595 | text: auto; |
---|
2596 | } |
---|
2597 | node[amenity=police] { |
---|
2598 | icon-image: "service/police.png"; |
---|
2599 | set icon_z17; |
---|
2600 | text: auto; |
---|
2601 | } |
---|
2602 | node[amenity=ranger_station] { |
---|
2603 | icon-image: "service/ranger_station.svg"; |
---|
2604 | set icon_z17; |
---|
2605 | text: auto; |
---|
2606 | } |
---|
2607 | node[amenity=fire_station] { |
---|
2608 | icon-image: "service/firebrigade.png"; |
---|
2609 | set icon_z17; |
---|
2610 | text: auto; |
---|
2611 | } |
---|
2612 | node[amenity=bus_station] { |
---|
2613 | icon-image: "transport/bus.png"; |
---|
2614 | set icon_z17; |
---|
2615 | text: auto; |
---|
2616 | } |
---|
2617 | node[amenity=ferry_terminal] { |
---|
2618 | icon-image: "nautical/ferry.png"; |
---|
2619 | icon-width: 16; |
---|
2620 | set icon_z17; |
---|
2621 | text: auto; |
---|
2622 | } |
---|
2623 | node[amenity=theatre] { |
---|
2624 | icon-image: "presets/theater.png"; |
---|
2625 | icon-width: 16; |
---|
2626 | set icon_z17; |
---|
2627 | text: auto; |
---|
2628 | } |
---|
2629 | node[amenity=cinema] { |
---|
2630 | icon-image: "leisure/cinema.png"; |
---|
2631 | set icon_z17; |
---|
2632 | text: auto; |
---|
2633 | } |
---|
2634 | node[amenity=arts_centre] { |
---|
2635 | icon-image: "service/arts_centre.png"; |
---|
2636 | set icon_z17; |
---|
2637 | text: auto; |
---|
2638 | } |
---|
2639 | node[amenity=courthouse] { |
---|
2640 | icon-image: "service/administration/court_of_law.png"; |
---|
2641 | set icon_z17; |
---|
2642 | text: auto; |
---|
2643 | } |
---|
2644 | node[amenity=prison] { |
---|
2645 | icon-image: "service/administration/prison.png"; |
---|
2646 | set icon_z17; |
---|
2647 | text: auto; |
---|
2648 | } |
---|
2649 | node[amenity=bank] { |
---|
2650 | icon-image: "money/bank.png"; |
---|
2651 | set icon_z17; |
---|
2652 | text: auto; |
---|
2653 | } |
---|
2654 | node[amenity=bureau_de_change] { |
---|
2655 | icon-image: "money/exchange.png"; |
---|
2656 | set icon_z17; |
---|
2657 | text: auto; |
---|
2658 | } |
---|
2659 | node[amenity=atm] { |
---|
2660 | icon-image: "money/atm.png"; |
---|
2661 | set icon_z17; |
---|
2662 | text: auto; |
---|
2663 | } |
---|
2664 | way[amenity=bench] { |
---|
2665 | width: 2; |
---|
2666 | color: amenity_light#f7efb7; |
---|
2667 | } |
---|
2668 | node[amenity=bench] { |
---|
2669 | icon-image: "leisure/bench.png"; |
---|
2670 | set icon_z17; |
---|
2671 | text: auto; |
---|
2672 | } |
---|
2673 | node[amenity=bbq] { |
---|
2674 | icon-image: "leisure/bbq.png"; |
---|
2675 | set icon_z17; |
---|
2676 | text: auto; |
---|
2677 | } |
---|
2678 | node[emergency=fire_hydrant] { |
---|
2679 | icon-image: "service/fire_hydrant.png"; |
---|
2680 | set icon_z17; |
---|
2681 | text: auto; |
---|
2682 | } |
---|
2683 | area[amenity=shelter], |
---|
2684 | area[amenity=marketplace], |
---|
2685 | area[amenity=wlan] { |
---|
2686 | fill-color: amenity_light#f7efb7; |
---|
2687 | } |
---|
2688 | node[amenity=shelter] { |
---|
2689 | icon-image: "accommodation/shelter.png"; |
---|
2690 | set icon_z17; |
---|
2691 | text: auto; |
---|
2692 | } |
---|
2693 | node[amenity=shelter][shelter_type=public_transport] { |
---|
2694 | icon-image: "accommodation/shelter_public_transport_brown.png"; |
---|
2695 | set icon_z17; |
---|
2696 | text: auto; |
---|
2697 | } |
---|
2698 | node[amenity=shelter][shelter_type=picnic_shelter] { |
---|
2699 | icon-image: "accommodation/shelter_picnic_brown.png"; |
---|
2700 | set icon_z17; |
---|
2701 | text: auto; |
---|
2702 | } |
---|
2703 | node[amenity=shelter][shelter_type=basic_hut] { |
---|
2704 | icon-image: "accommodation/basic_hut_blue.png"; |
---|
2705 | set icon_z17; |
---|
2706 | text: auto; |
---|
2707 | } |
---|
2708 | node[amenity=shelter][shelter_type=lean_to] { |
---|
2709 | icon-image: "accommodation/shelter_lean_to.svg"; |
---|
2710 | set icon_z17; |
---|
2711 | text: auto; |
---|
2712 | } |
---|
2713 | node[amenity=hunting_stand] { |
---|
2714 | icon-image: "hunting_stand.png"; |
---|
2715 | set icon_z17; |
---|
2716 | text: auto; |
---|
2717 | } |
---|
2718 | node[amenity=marketplace] { |
---|
2719 | icon-image: "place/marketplace.png"; |
---|
2720 | set icon_z17; |
---|
2721 | text: auto; |
---|
2722 | } |
---|
2723 | node[amenity=wlan] { |
---|
2724 | icon-image: "wlan.png"; |
---|
2725 | set icon_z17; |
---|
2726 | text: auto; |
---|
2727 | } |
---|
2728 | node[amenity=vending_machine] { |
---|
2729 | icon-image: "transport/ticket-machine.png"; |
---|
2730 | set icon_z17; |
---|
2731 | } |
---|
2732 | node[vending=excrement_bags] { |
---|
2733 | icon-image: "service/excrement_bags.png"; |
---|
2734 | set icon_z17; |
---|
2735 | text: auto; |
---|
2736 | } |
---|
2737 | |
---|
2738 | /**************/ |
---|
2739 | /* craft tags */ |
---|
2740 | /**************/ |
---|
2741 | |
---|
2742 | area[craft=painter], |
---|
2743 | area[craft=plumber], |
---|
2744 | area[craft=pottery], |
---|
2745 | area[craft=stonemason], |
---|
2746 | area[craft=tiler], |
---|
2747 | area[craft=window_construction] { |
---|
2748 | fill-color: craft#999900; |
---|
2749 | } |
---|
2750 | node[craft=painter] { |
---|
2751 | icon-image: "craft/painter.png"; |
---|
2752 | set icon_z17; |
---|
2753 | text: auto; |
---|
2754 | } |
---|
2755 | node[craft=plumber] { |
---|
2756 | icon-image: "craft/plumber.png"; |
---|
2757 | set icon_z17; |
---|
2758 | text: auto; |
---|
2759 | } |
---|
2760 | node[craft=pottery] { |
---|
2761 | icon-image: "craft/pottery.png"; |
---|
2762 | set icon_z17; |
---|
2763 | text: auto; |
---|
2764 | } |
---|
2765 | node[craft=stonemason] { |
---|
2766 | icon-image: "craft/stonemason.png"; |
---|
2767 | set icon_z17; |
---|
2768 | text: auto; |
---|
2769 | } |
---|
2770 | node[craft=tiler] { |
---|
2771 | icon-image: "craft/tiler.png"; |
---|
2772 | set icon_z17; |
---|
2773 | text: auto; |
---|
2774 | } |
---|
2775 | node[craft=window_construction] { |
---|
2776 | icon-image: "craft/window_construction.png"; |
---|
2777 | set icon_z17; |
---|
2778 | text: auto; |
---|
2779 | } |
---|
2780 | |
---|
2781 | /****************/ |
---|
2782 | /* tourism tags */ |
---|
2783 | /****************/ |
---|
2784 | |
---|
2785 | area[tourism=hotel], |
---|
2786 | area[tourism=motel], |
---|
2787 | area[tourism=guest_house], |
---|
2788 | area[tourism=hostel], |
---|
2789 | area[tourism=chalet], |
---|
2790 | area[tourism=alpine_hut], |
---|
2791 | area[tourism=camp_site], |
---|
2792 | area[tourism=caravan_site] { |
---|
2793 | fill-color: hotel#e1a0a2; |
---|
2794 | } |
---|
2795 | node[tourism=hotel] { |
---|
2796 | icon-image: "accommodation.png"; |
---|
2797 | set icon_z17; |
---|
2798 | text: auto; |
---|
2799 | } |
---|
2800 | node[tourism=motel] { |
---|
2801 | icon-image: "accommodation/motel.png"; |
---|
2802 | set icon_z17; |
---|
2803 | text: auto; |
---|
2804 | } |
---|
2805 | node[tourism=guest_house] { |
---|
2806 | icon-image: "accommodation/guest_house.png"; |
---|
2807 | set icon_z17; |
---|
2808 | text: auto; |
---|
2809 | } |
---|
2810 | node[tourism=hostel] { |
---|
2811 | icon-image: "accommodation/hostel.png"; |
---|
2812 | set icon_z17; |
---|
2813 | text: auto; |
---|
2814 | } |
---|
2815 | node[tourism=chalet] { |
---|
2816 | icon-image: "accommodation/chalet.png"; |
---|
2817 | set icon_z17; |
---|
2818 | text: auto; |
---|
2819 | } |
---|
2820 | node[tourism=alpine_hut] { |
---|
2821 | icon-image: "accommodation/alpine_hut_blue.png"; |
---|
2822 | set icon_z17; |
---|
2823 | text: auto; |
---|
2824 | } |
---|
2825 | node[tourism=wilderness_hut] { |
---|
2826 | icon-image: "accommodation/wilderness_hut_blue.png"; |
---|
2827 | set icon_z17; |
---|
2828 | text: auto; |
---|
2829 | } |
---|
2830 | node[tourism=camp_site] { |
---|
2831 | icon-image: "accommodation/camping.png"; |
---|
2832 | set icon_z17; |
---|
2833 | text: auto; |
---|
2834 | } |
---|
2835 | node[tourism=caravan_site] { |
---|
2836 | icon-image: "accommodation/camping/caravan.png"; |
---|
2837 | set icon_z17; |
---|
2838 | text: auto; |
---|
2839 | } |
---|
2840 | area[tourism=picnic_site], |
---|
2841 | area[tourism=viewpoint], |
---|
2842 | area[tourism=theme_park], |
---|
2843 | area[tourism=attraction], |
---|
2844 | area[tourism=zoo], |
---|
2845 | area[tourism=artwork], |
---|
2846 | area[tourism=museum] { |
---|
2847 | fill-color: tourism#e180a2; |
---|
2848 | } |
---|
2849 | node[tourism=picnic_site] { |
---|
2850 | icon-image: "leisure/picnic.png"; |
---|
2851 | set icon_z17; |
---|
2852 | text: auto; |
---|
2853 | } |
---|
2854 | node[tourism=viewpoint] { |
---|
2855 | icon-image: "sightseeing/viewpoint.png"; |
---|
2856 | set icon_z17; |
---|
2857 | text: auto; |
---|
2858 | } |
---|
2859 | node[tourism=theme_park] { |
---|
2860 | icon-image: "leisure/theme_park.png"; |
---|
2861 | set icon_z17; |
---|
2862 | text: auto; |
---|
2863 | } |
---|
2864 | node[tourism=attraction] { |
---|
2865 | icon-image: "sightseeing.png"; |
---|
2866 | set icon_z17; |
---|
2867 | text: auto; |
---|
2868 | } |
---|
2869 | node[tourism=zoo] { |
---|
2870 | icon-image: "leisure/zoo.png"; |
---|
2871 | set icon_z17; |
---|
2872 | text: auto; |
---|
2873 | } |
---|
2874 | way[tourism=artwork] { |
---|
2875 | width: 2; |
---|
2876 | color: tourism#e180a2; |
---|
2877 | } |
---|
2878 | node[tourism=artwork] { |
---|
2879 | icon-image: "service/arts_centre.png"; |
---|
2880 | set icon_z17; |
---|
2881 | text: auto; |
---|
2882 | } |
---|
2883 | node[tourism=museum] { |
---|
2884 | icon-image: "sightseeing/museum.png"; |
---|
2885 | set icon_z17; |
---|
2886 | text: auto; |
---|
2887 | } |
---|
2888 | |
---|
2889 | /********************/ |
---|
2890 | /* information tags */ |
---|
2891 | /********************/ |
---|
2892 | |
---|
2893 | area[tourism=information] { |
---|
2894 | fill-color: tourism#e180a2; |
---|
2895 | } |
---|
2896 | node[tourism=information] { |
---|
2897 | icon-image: "misc/information.png"; |
---|
2898 | set icon_z17; |
---|
2899 | text: auto; |
---|
2900 | } |
---|
2901 | node[tourism=information][information=guidepost] { |
---|
2902 | icon-image: "misc/information/guidepost.png"; |
---|
2903 | set icon_z17; |
---|
2904 | text: auto; |
---|
2905 | } |
---|
2906 | area[tourism=information][information=office] { |
---|
2907 | fill-color: tourism#e180a2; |
---|
2908 | } |
---|
2909 | node[tourism=information][information=office] { |
---|
2910 | icon-image: "misc/information/informationoffice.png"; |
---|
2911 | set icon_z17; |
---|
2912 | text: auto; |
---|
2913 | } |
---|
2914 | node[tourism=information][information=map] { |
---|
2915 | icon-image: "misc/information/map.png"; |
---|
2916 | set icon_z17; |
---|
2917 | text: auto; |
---|
2918 | } |
---|
2919 | node[tourism=information][information=board] { |
---|
2920 | icon-image: "misc/information/board.png"; |
---|
2921 | set icon_z17; |
---|
2922 | text: auto; |
---|
2923 | } |
---|
2924 | |
---|
2925 | /*****************/ |
---|
2926 | /* historic tags */ |
---|
2927 | /*****************/ |
---|
2928 | |
---|
2929 | area[historic=castle], |
---|
2930 | area[historic=monument], |
---|
2931 | area[historic=memorial], |
---|
2932 | area[historic=archaeological_site], |
---|
2933 | area[historic=ruins], |
---|
2934 | area[historic=battlefield], |
---|
2935 | area[geological=palaeontological_site], |
---|
2936 | area[historic=wayside_cross], |
---|
2937 | area[historic=wayside_shrine], |
---|
2938 | area[historic=boundary_stone] { |
---|
2939 | fill-color: historic#663300; |
---|
2940 | } |
---|
2941 | node[historic=castle] { |
---|
2942 | icon-image: "sightseeing/castle.svg"; |
---|
2943 | set icon_z17; |
---|
2944 | text: auto; |
---|
2945 | } |
---|
2946 | node[historic=monument] { |
---|
2947 | icon-image: "sightseeing/monument.png"; |
---|
2948 | set icon_z17; |
---|
2949 | text: auto; |
---|
2950 | } |
---|
2951 | node[historic=memorial] { |
---|
2952 | icon-image: "sightseeing/memorial.png"; |
---|
2953 | set icon_z17; |
---|
2954 | text: auto; |
---|
2955 | } |
---|
2956 | node[historic=archaeological_site] { |
---|
2957 | icon-image: "sightseeing/archaeological.png"; |
---|
2958 | set icon_z17; |
---|
2959 | text: auto; |
---|
2960 | } |
---|
2961 | node[historic=ruins] { |
---|
2962 | icon-image: "sightseeing/ruins.png"; |
---|
2963 | set icon_z17; |
---|
2964 | text: auto; |
---|
2965 | } |
---|
2966 | node[historic=battlefield] { |
---|
2967 | icon-image: "sightseeing/battlefield.png"; |
---|
2968 | set icon_z17; |
---|
2969 | text: auto; |
---|
2970 | } |
---|
2971 | node[geological=palaeontological_site] { |
---|
2972 | icon-image: "historic/palaeontological_site.png"; |
---|
2973 | set icon_z17; |
---|
2974 | text: auto; |
---|
2975 | } |
---|
2976 | node[historic=wayside_cross] { |
---|
2977 | icon-image: "religion/wayside_cross.png"; |
---|
2978 | set icon_z17; |
---|
2979 | text: auto; |
---|
2980 | } |
---|
2981 | node[historic=wayside_shrine] { |
---|
2982 | icon-image: "religion/wayside_shrine.png"; |
---|
2983 | set icon_z17; |
---|
2984 | text: auto; |
---|
2985 | } |
---|
2986 | node[historic=boundary_stone] { |
---|
2987 | icon-image: "historic/boundary_stone.png"; |
---|
2988 | set icon_z17; |
---|
2989 | text: auto; |
---|
2990 | } |
---|
2991 | |
---|
2992 | /****************/ |
---|
2993 | /* landuse tags */ |
---|
2994 | /****************/ |
---|
2995 | |
---|
2996 | area[landuse], |
---|
2997 | area[leisure], |
---|
2998 | area[amenity], |
---|
2999 | area[place], |
---|
3000 | area[natural], |
---|
3001 | area[man_made] { |
---|
3002 | z-index: -2; /* put areas that can have other areas inside (e.g. building) a little lower, see #9606 */ |
---|
3003 | } |
---|
3004 | area[landuse=farm], |
---|
3005 | area[landuse=farmland] { |
---|
3006 | fill-color: farmland#b8e0b1; |
---|
3007 | } |
---|
3008 | area[landuse=meadow] { |
---|
3009 | fill-color: meadow#b1e0b6; |
---|
3010 | } |
---|
3011 | area[landuse=vineyard], |
---|
3012 | area[landuse=orchard] { |
---|
3013 | fill-color: green#b1e0c2; |
---|
3014 | } |
---|
3015 | area[landuse=quarry] { |
---|
3016 | fill-color: quarry#888888; |
---|
3017 | } |
---|
3018 | area[landuse=landfill] { |
---|
3019 | fill-color: landfill#663300; |
---|
3020 | } |
---|
3021 | area[landuse=basin], |
---|
3022 | area[landuse=reservoir] { |
---|
3023 | fill-color: basin#0000bf; |
---|
3024 | } |
---|
3025 | area[landuse=forest] { |
---|
3026 | fill-color: forest#b1efc8; |
---|
3027 | } |
---|
3028 | area[landuse=allotments] { |
---|
3029 | fill-color: allotments#5dbf80; |
---|
3030 | } |
---|
3031 | area[landuse=greenhouse_horticulture], |
---|
3032 | area[landuse=plant_nursery] { |
---|
3033 | fill-color: green#b1e0c2; |
---|
3034 | } |
---|
3035 | area[landuse=grass] { |
---|
3036 | fill-color: grass#97ca96; |
---|
3037 | } |
---|
3038 | area[landuse=residential] { |
---|
3039 | fill-color: residential#f0f0f0; |
---|
3040 | } |
---|
3041 | area[landuse=garages] { |
---|
3042 | fill-color: garages#d6c8aa; |
---|
3043 | } |
---|
3044 | area[landuse=farmyard] { |
---|
3045 | fill-color: farmyard#f0f0f0; |
---|
3046 | } |
---|
3047 | area[landuse=retail], |
---|
3048 | area[landuse=commercial] { |
---|
3049 | fill-color: retail#ffc4ee; |
---|
3050 | } |
---|
3051 | area[landuse=industrial] { |
---|
3052 | fill-color: industrial#ecd8ff; |
---|
3053 | } |
---|
3054 | area[landuse=brownfield] { |
---|
3055 | fill-color: brownfield#ecba32; |
---|
3056 | } |
---|
3057 | area[landuse=greenfield] { |
---|
3058 | fill-color: greenfield#b1ec5c; |
---|
3059 | } |
---|
3060 | area[landuse=railway] { |
---|
3061 | fill-color: railland#888888; |
---|
3062 | } |
---|
3063 | area[landuse=construction] { |
---|
3064 | fill-color: construction#ffff00; |
---|
3065 | } |
---|
3066 | way[landuse=construction] { |
---|
3067 | width: 1; |
---|
3068 | color: construction#ffff00; |
---|
3069 | dashes: 9,9; |
---|
3070 | } |
---|
3071 | area[landuse=military] { |
---|
3072 | fill-color: military#b62c2c; |
---|
3073 | } |
---|
3074 | area[landuse=religious] { |
---|
3075 | fill-color: religious#ffd454; |
---|
3076 | } |
---|
3077 | area[landuse=cemetery] { |
---|
3078 | fill-color: cemetery#b1efc8; |
---|
3079 | } |
---|
3080 | area[landuse=village_green] { |
---|
3081 | fill-color: green#b1e0c2; |
---|
3082 | } |
---|
3083 | area[landuse=recreation_ground] { |
---|
3084 | fill-color: green#b1e0c2; |
---|
3085 | } |
---|
3086 | node[landuse] { |
---|
3087 | icon-image: "misc/deprecated.png"; |
---|
3088 | set icon_z17; |
---|
3089 | text: auto; |
---|
3090 | } |
---|
3091 | |
---|
3092 | /*****************/ |
---|
3093 | /* military tags */ |
---|
3094 | /*****************/ |
---|
3095 | |
---|
3096 | area[military=airfield], |
---|
3097 | area[military=bunker], |
---|
3098 | area[military=barracks], |
---|
3099 | area[military=danger_area], |
---|
3100 | area[military=range] { |
---|
3101 | fill-color: military#b62c2c; |
---|
3102 | } |
---|
3103 | node[military=airfield] { |
---|
3104 | icon-image: "transport/airport/airfield.png"; |
---|
3105 | set icon_z17; |
---|
3106 | text: auto; |
---|
3107 | } |
---|
3108 | node[military=bunker] { |
---|
3109 | icon-image: "misc/landmark/bunker.png"; |
---|
3110 | set icon_z17; |
---|
3111 | text: auto; |
---|
3112 | } |
---|
3113 | node[military=barracks] { |
---|
3114 | icon-image: "misc/no_icon.png"; |
---|
3115 | set icon_z17; |
---|
3116 | text: auto; |
---|
3117 | } |
---|
3118 | node[military=danger_area] { |
---|
3119 | icon-image: "misc/danger.png"; |
---|
3120 | set icon_z17; |
---|
3121 | text: auto; |
---|
3122 | } |
---|
3123 | node[military=range] { |
---|
3124 | icon-image: "misc/landmark/range.png"; |
---|
3125 | set icon_z17; |
---|
3126 | text: auto; |
---|
3127 | } |
---|
3128 | |
---|
3129 | /*************************/ |
---|
3130 | /* public_transport tags */ |
---|
3131 | /*************************/ |
---|
3132 | |
---|
3133 | node[public_transport=stop_position] { |
---|
3134 | icon-image: "transport/railway_small.png"; |
---|
3135 | set icon_z17; |
---|
3136 | text: auto; |
---|
3137 | } |
---|
3138 | node[highway=bus_stop] { |
---|
3139 | icon-image: "transport/bus_small.png"; |
---|
3140 | set icon_z17; |
---|
3141 | text: auto; |
---|
3142 | } |
---|
3143 | node[public_transport=stop_position][bus=yes] { |
---|
3144 | icon-image: "transport/bus_small.png"; |
---|
3145 | set icon_z17; |
---|
3146 | text: auto; |
---|
3147 | } |
---|
3148 | node[public_transport=stop_position][aerial=yes] { |
---|
3149 | icon-image: "transport/aerialway.png"; |
---|
3150 | set icon_z17; |
---|
3151 | text: auto; |
---|
3152 | } |
---|
3153 | node[public_transport=stop_position][ferry=yes] { |
---|
3154 | icon-image: "transport/ferry.png"; |
---|
3155 | set icon_z17; |
---|
3156 | text: auto; |
---|
3157 | } |
---|
3158 | node[public_transport=stop_position][tram=yes] { |
---|
3159 | icon-image: "transport/tram.png"; |
---|
3160 | set icon_z17; |
---|
3161 | text: auto; |
---|
3162 | } |
---|
3163 | node[public_transport=stop_position][train=yes] { |
---|
3164 | icon-image: "transport/railway_small.png"; |
---|
3165 | set icon_z17; |
---|
3166 | text: auto; |
---|
3167 | } |
---|
3168 | area[public_transport=platform]:closed { |
---|
3169 | fill-color: service#809bc0; |
---|
3170 | } |
---|
3171 | way[public_transport=platform]!:closed { |
---|
3172 | width: 3; |
---|
3173 | color: service#809bc0; |
---|
3174 | dashes: 12,3; |
---|
3175 | } |
---|
3176 | node[public_transport=platform] { |
---|
3177 | icon-image: "transport/bus_small.png"; |
---|
3178 | set icon_z17; |
---|
3179 | text: auto; |
---|
3180 | } |
---|
3181 | node[public_transport=platform][bus=yes] { |
---|
3182 | icon-image: "transport/bus_small.png"; |
---|
3183 | set icon_z17; |
---|
3184 | text: auto; |
---|
3185 | } |
---|
3186 | node[public_transport=platform][aerial=yes] { |
---|
3187 | icon-image: "transport/aerialway/station.png"; |
---|
3188 | set icon_z17; |
---|
3189 | text: auto; |
---|
3190 | } |
---|
3191 | node[public_transport=platform][ferry=yes] { |
---|
3192 | icon-image: "transport/ferry.png"; |
---|
3193 | set icon_z17; |
---|
3194 | text: auto; |
---|
3195 | } |
---|
3196 | node[public_transport=platform][tram=yes], |
---|
3197 | node[public_transport=platform][train=yes] { |
---|
3198 | icon-image: "transport/railway_station.png"; |
---|
3199 | set icon_z17; |
---|
3200 | text: auto; |
---|
3201 | } |
---|
3202 | |
---|
3203 | /****************/ |
---|
3204 | /* railway tags */ |
---|
3205 | /****************/ |
---|
3206 | |
---|
3207 | area[railway=station], |
---|
3208 | area[railway=tram_station], |
---|
3209 | area[railway=subway_entrance] { |
---|
3210 | fill-color: railwaypoint#f7efb7; |
---|
3211 | } |
---|
3212 | node[railway=station], node[railway=tram_station] { |
---|
3213 | icon-image: "transport/railway_station.png"; |
---|
3214 | set icon_z17; |
---|
3215 | text: auto; |
---|
3216 | } |
---|
3217 | node[railway=halt] { |
---|
3218 | icon-image: "transport/railway_small.png"; |
---|
3219 | set icon_z17; |
---|
3220 | text: auto; |
---|
3221 | } |
---|
3222 | node[railway=tram_stop] { |
---|
3223 | icon-image: "transport/tram.png"; |
---|
3224 | set icon_z17; |
---|
3225 | text: auto; |
---|
3226 | } |
---|
3227 | node[railway=subway_entrance] { |
---|
3228 | icon-image: "transport/underground.png"; |
---|
3229 | set icon_z17; |
---|
3230 | text: auto; |
---|
3231 | } |
---|
3232 | node[railway=crossing] { |
---|
3233 | icon-image: "vehicle/crossing.png"; |
---|
3234 | set icon_z17; |
---|
3235 | text: auto; |
---|
3236 | } |
---|
3237 | node[railway=level_crossing] { |
---|
3238 | icon-image: "presets/level_crossing.png"; |
---|
3239 | icon-width: 16; |
---|
3240 | set icon_z17; |
---|
3241 | text: auto; |
---|
3242 | } |
---|
3243 | way[railway=rail] { |
---|
3244 | width: 2; |
---|
3245 | color: rail#404040; |
---|
3246 | dashes: 9,9; |
---|
3247 | dashes-background-color: raildashed#ffffff; |
---|
3248 | } |
---|
3249 | way[railway=rail][service=siding] { |
---|
3250 | width: 1; |
---|
3251 | } |
---|
3252 | way[railway=rail][service=yard], |
---|
3253 | way[railway=rail][service=spur] { |
---|
3254 | width: 1; |
---|
3255 | color: railyard#552200 |
---|
3256 | } |
---|
3257 | /* draw tram on top of other way (highway=*) or |
---|
3258 | as a standalone style */ |
---|
3259 | way[highway][railway=tram]::core_railway, way[!highway][railway=tram] { |
---|
3260 | object-z-index: 1; |
---|
3261 | modifier: false; /* don't draw default way if there is no line on default layer */ |
---|
3262 | width: 1; |
---|
3263 | color: railover#202020; |
---|
3264 | dashes: 9,9; |
---|
3265 | casing-width: 1; |
---|
3266 | casing-color: otherrail#808080; |
---|
3267 | casing-linecap: round; |
---|
3268 | casing-dashes: 9,9; |
---|
3269 | } |
---|
3270 | way[railway=light_rail] { |
---|
3271 | width: 2; |
---|
3272 | color: otherrail#808080; |
---|
3273 | dashes: 9,9; |
---|
3274 | } |
---|
3275 | way[railway=subway] { |
---|
3276 | width: 1; |
---|
3277 | color: subway#606060; |
---|
3278 | dashes: 9,9; |
---|
3279 | } |
---|
3280 | way[railway=preserved] { |
---|
3281 | width: 1; |
---|
3282 | color: oldrail#404040; |
---|
3283 | dashes: 9,9; |
---|
3284 | } |
---|
3285 | /* disused often appears together with highway=xy */ |
---|
3286 | /* -> draw on separate layer with higher z-index, but use */ |
---|
3287 | /* modifier: false; to suppress default line when used alone. */ |
---|
3288 | /* use default layer when used without highway=* to display bridge correctly */ |
---|
3289 | way[railway=disused][highway]::core_railway, |
---|
3290 | way[railway=disused][!highway], |
---|
3291 | way[railway=abandoned][highway]::core_railway, |
---|
3292 | way[railway=abandoned][!highway] { |
---|
3293 | width: 1; |
---|
3294 | modifier: false; |
---|
3295 | z-index: 1; |
---|
3296 | color: oldrail#404040; |
---|
3297 | dashes: 9,9; |
---|
3298 | } |
---|
3299 | way[railway=narrow_gauge], |
---|
3300 | way[railway=monorail] { |
---|
3301 | width: 1; |
---|
3302 | color: rail#404040; |
---|
3303 | dashes: 9,9; |
---|
3304 | } |
---|
3305 | area[railway=turntable] { |
---|
3306 | fill-color: rail#404040; |
---|
3307 | } |
---|
3308 | node[railway=turntable] { |
---|
3309 | icon-image: "transport/turntable.png"; |
---|
3310 | set icon_z17; |
---|
3311 | text: auto; |
---|
3312 | } |
---|
3313 | node[railway=buffer_stop] { |
---|
3314 | icon-image: "transport/buffer_stop.png"; |
---|
3315 | set icon_z17; |
---|
3316 | text: auto; |
---|
3317 | } |
---|
3318 | area[railway=platform]:closed { |
---|
3319 | fill-color: rail#404040; |
---|
3320 | } |
---|
3321 | way[railway=platform] { |
---|
3322 | width: 2; |
---|
3323 | color: rail#404040; |
---|
3324 | } |
---|
3325 | way[railway=funicular] { |
---|
3326 | width: 1; |
---|
3327 | color: rail#404040; |
---|
3328 | dashes: 9,9; |
---|
3329 | } |
---|
3330 | node[railway=switch] { |
---|
3331 | icon-image: "presets/railway_switch.png"; |
---|
3332 | icon-width: 16; |
---|
3333 | set icon_z17; |
---|
3334 | text: auto; |
---|
3335 | } |
---|
3336 | node[railway=rail], node[railway=tram], node[railway=light_rail], |
---|
3337 | node[railway=subway], node[railway=preserved], |
---|
3338 | node[railway=disused], node[railway=abandoned], |
---|
3339 | node[railway=narrow_gauge], node[railway=monorail], |
---|
3340 | node[railway=platform], node[railway=funicular], |
---|
3341 | node[service=yard], node[service=siding], node[service=spur] { |
---|
3342 | icon-image: "misc/deprecated.png"; |
---|
3343 | set icon_z17; |
---|
3344 | text: auto; |
---|
3345 | } |
---|
3346 | way[railway=construction][!highway] { |
---|
3347 | width: 1; |
---|
3348 | color: construction#ffff00; |
---|
3349 | dashes: 9,9; |
---|
3350 | } |
---|
3351 | way[railway=construction][construction=rail] { |
---|
3352 | width: 2; |
---|
3353 | color: rail#404040; |
---|
3354 | dashes: 9,9; |
---|
3355 | dashes-background-color: construction#ffff00; |
---|
3356 | } |
---|
3357 | way[railway=construction][construction=light_rail] { |
---|
3358 | width: 2; |
---|
3359 | } |
---|
3360 | way[railway=construction][construction=tram][highway]::core_railway, |
---|
3361 | way[railway=construction][construction=tram][!highway] { |
---|
3362 | z-index: 1; |
---|
3363 | width: 1; |
---|
3364 | color: railover#202020; |
---|
3365 | dashes: 9,9; |
---|
3366 | casing-width: 1; |
---|
3367 | casing-color: construction#ffff00; |
---|
3368 | casing-linecap: round; |
---|
3369 | casing-dashes: 9,9; |
---|
3370 | } |
---|
3371 | |
---|
3372 | /****************/ |
---|
3373 | /* aeroway tags */ |
---|
3374 | /****************/ |
---|
3375 | |
---|
3376 | area[aeroway=aerodrome] { |
---|
3377 | fill-color: aeroway#660000; |
---|
3378 | width: 2; |
---|
3379 | dashes: 9,9; |
---|
3380 | } |
---|
3381 | node[aeroway=aerodrome] { |
---|
3382 | icon-image: "transport/airport.png"; |
---|
3383 | set icon_z17; |
---|
3384 | text: auto; |
---|
3385 | } |
---|
3386 | area[aeroway=terminal] { |
---|
3387 | fill-color: terminal#bb0000; |
---|
3388 | } |
---|
3389 | node[aeroway=terminal] { |
---|
3390 | icon-image: "transport/airport/terminal.png"; |
---|
3391 | set icon_z17; |
---|
3392 | text: auto; |
---|
3393 | } |
---|
3394 | area[aeroway=helipad] { |
---|
3395 | fill-color: aeroway_dark#330000; |
---|
3396 | } |
---|
3397 | node[aeroway=helipad] { |
---|
3398 | icon-image: "transport/airport/helipad.png"; |
---|
3399 | set icon_z17; |
---|
3400 | text: auto; |
---|
3401 | } |
---|
3402 | area[aeroway=runway]:closed { |
---|
3403 | fill-color: aeroway_dark#330000; |
---|
3404 | } |
---|
3405 | way[aeroway=runway] { |
---|
3406 | width: 3; |
---|
3407 | color: aeroway_dark#330000; |
---|
3408 | } |
---|
3409 | area[aeroway=taxiway]:closed { |
---|
3410 | fill-color: aeroway#660000; |
---|
3411 | } |
---|
3412 | way[aeroway=taxiway] { |
---|
3413 | width: 2; |
---|
3414 | color: aeroway#660000; |
---|
3415 | } |
---|
3416 | way[aeroway=parking_position] { |
---|
3417 | width: 1; |
---|
3418 | color: aeroway#660000; |
---|
3419 | } |
---|
3420 | node[aeroway=parking_position] { |
---|
3421 | icon-image: "transport/airport/parking_position.png"; |
---|
3422 | set icon_z17; |
---|
3423 | text: auto; |
---|
3424 | } |
---|
3425 | area[aeroway=apron], |
---|
3426 | area[aeroway=hangar] { |
---|
3427 | fill-color: aeroway_light#990000; |
---|
3428 | } |
---|
3429 | node[aeroway=apron], |
---|
3430 | node[aeroway=runway], |
---|
3431 | node[aeroway=taxiway] { |
---|
3432 | icon-image: "misc/deprecated.png"; |
---|
3433 | set icon_z17; |
---|
3434 | text: auto; |
---|
3435 | } |
---|
3436 | node[aeroway=hangar] { |
---|
3437 | icon-image: "transport/airport/hangar.png"; |
---|
3438 | set icon_z17; |
---|
3439 | text: auto; |
---|
3440 | } |
---|
3441 | node[aeroway=gate] { |
---|
3442 | icon-image: "transport/airport/gate.png"; |
---|
3443 | set icon_z17; |
---|
3444 | text: auto; |
---|
3445 | } |
---|
3446 | node[aeroway=windsock] { |
---|
3447 | icon-image: "transport/airport/windsock.png"; |
---|
3448 | set icon_z17; |
---|
3449 | text: auto; |
---|
3450 | } |
---|
3451 | |
---|
3452 | /******************/ |
---|
3453 | /* aerialway tags */ |
---|
3454 | /******************/ |
---|
3455 | |
---|
3456 | way[aerialway=cable_car], |
---|
3457 | way[aerialway=gondola] { |
---|
3458 | width: 1; |
---|
3459 | color: aerialway#663300; |
---|
3460 | dashes: 9,9; |
---|
3461 | } |
---|
3462 | way[aerialway=chair_lift] { |
---|
3463 | width: 1; |
---|
3464 | color: aerialway#663300; |
---|
3465 | dashes: 6,6; |
---|
3466 | } |
---|
3467 | way[aerialway=mixed_lift] { |
---|
3468 | width: 1; |
---|
3469 | color: aerialway#663300; |
---|
3470 | dashes: 6,6,9,6; |
---|
3471 | } |
---|
3472 | way[aerialway=j-bar], |
---|
3473 | way[aerialway=t-bar], |
---|
3474 | way[aerialway=platter], |
---|
3475 | way[aerialway=rope_tow], |
---|
3476 | way[aerialway=drag_lift] { |
---|
3477 | width: 1; |
---|
3478 | color: aerialway#663300; |
---|
3479 | dashes: 3,3; |
---|
3480 | } |
---|
3481 | way[aerialway=magic_carpet] { |
---|
3482 | width: 1; |
---|
3483 | color: aerialway#663300; |
---|
3484 | dashes: 3,3; |
---|
3485 | } |
---|
3486 | way[aerialway=goods] { |
---|
3487 | width: 1; |
---|
3488 | color: aerialway#663300; |
---|
3489 | dashes: 2,2; |
---|
3490 | } |
---|
3491 | area[aerialway=station] { |
---|
3492 | fill-color: aerialway#663300; |
---|
3493 | } |
---|
3494 | node[aerialway=station] { |
---|
3495 | icon-image: "transport/aerialway/station.png"; |
---|
3496 | set icon_z17; |
---|
3497 | text: auto; |
---|
3498 | } |
---|
3499 | node[aerialway=pylon] { |
---|
3500 | icon-image: "transport/aerialway/pylon.svg"; |
---|
3501 | set icon_z17; |
---|
3502 | text: auto; |
---|
3503 | } |
---|
3504 | node[aerialway=cable_car], |
---|
3505 | node[aerialway=gondola], |
---|
3506 | node[aerialway=chair_lift], |
---|
3507 | node[aerialway=mixed_lift], |
---|
3508 | node[aerialway=drag_lift], |
---|
3509 | node[aerialway=t-bar], |
---|
3510 | node[aerialway=j-bar], |
---|
3511 | node[aerialway=platter], |
---|
3512 | node[aerialway=magic_carpet], |
---|
3513 | node[aerialway=rope_tow], |
---|
3514 | node[aerialway=goods] { |
---|
3515 | icon-image: "misc/deprecated.png"; |
---|
3516 | set icon_z17; |
---|
3517 | text: auto; |
---|
3518 | } |
---|
3519 | |
---|
3520 | /**************/ |
---|
3521 | /* sport tags */ |
---|
3522 | /**************/ |
---|
3523 | |
---|
3524 | area[sport="9pin"], |
---|
3525 | area[sport="10pin"], |
---|
3526 | area[sport=athletics], |
---|
3527 | area[sport=soccer], |
---|
3528 | area[sport=australian_football], |
---|
3529 | area[sport=american_football], |
---|
3530 | area[sport=canadian_football], |
---|
3531 | area[sport=gaelic_games], |
---|
3532 | area[sport=rugby_league], |
---|
3533 | area[sport=rugby_union] { |
---|
3534 | fill-color: sport#bde3cb; |
---|
3535 | } |
---|
3536 | node[sport="9pin"] { |
---|
3537 | icon-image: "sport/10pin.png"; |
---|
3538 | set icon_z17; |
---|
3539 | text: auto; |
---|
3540 | } |
---|
3541 | node[sport="10pin"] { |
---|
3542 | icon-image: "sport/10pin.png"; |
---|
3543 | set icon_z17; |
---|
3544 | text: auto; |
---|
3545 | } |
---|
3546 | node[sport=athletics] { |
---|
3547 | icon-image: "sport/athletics.png"; |
---|
3548 | set icon_z17; |
---|
3549 | text: auto; |
---|
3550 | } |
---|
3551 | node[sport=soccer], |
---|
3552 | node[sport=gaelic_games] { |
---|
3553 | icon-image: "sport/soccer.png"; |
---|
3554 | set icon_z17; |
---|
3555 | text: auto; |
---|
3556 | } |
---|
3557 | node[sport=australian_football], |
---|
3558 | node[sport=american_football], |
---|
3559 | node[sport=canadian_football], |
---|
3560 | node[sport=rugby_league], |
---|
3561 | node[sport=rugby_union] { |
---|
3562 | icon-image: "sport/football.png"; |
---|
3563 | set icon_z17; |
---|
3564 | text: auto; |
---|
3565 | } |
---|
3566 | area[sport=baseball], |
---|
3567 | area[sport=basketball], |
---|
3568 | area[sport=boules], |
---|
3569 | area[sport=bowls], |
---|
3570 | area[sport=canoe], |
---|
3571 | area[sport=chess], |
---|
3572 | area[sport=climbing]:closed, |
---|
3573 | area[sport=cricket], |
---|
3574 | area[sport=cricket_nets], |
---|
3575 | area[sport=croquet] { |
---|
3576 | fill-color: sport#bde3cb; |
---|
3577 | } |
---|
3578 | node[sport=baseball] { |
---|
3579 | icon-image: "sport/baseball.png"; |
---|
3580 | set icon_z17; |
---|
3581 | text: auto; |
---|
3582 | } |
---|
3583 | node[sport=basketball] { |
---|
3584 | icon-image: "sport/basketball.png"; |
---|
3585 | set icon_z17; |
---|
3586 | text: auto; |
---|
3587 | } |
---|
3588 | node[sport=boules] { |
---|
3589 | icon-image: "sport/boule.png"; |
---|
3590 | set icon_z17; |
---|
3591 | text: auto; |
---|
3592 | } |
---|
3593 | node[sport=bowls] { |
---|
3594 | icon-image: "sport/boule.png"; |
---|
3595 | set icon_z17; |
---|
3596 | text: auto; |
---|
3597 | } |
---|
3598 | node[sport=canoe] { |
---|
3599 | icon-image: "sport/canoe.svg"; |
---|
3600 | set icon_z17; |
---|
3601 | text: auto; |
---|
3602 | } |
---|
3603 | node[sport=chess] { |
---|
3604 | icon-image: "sport/chess.png"; |
---|
3605 | set icon_z17; |
---|
3606 | text: auto; |
---|
3607 | } |
---|
3608 | node[sport=climbing] { |
---|
3609 | icon-image: "sport/climbing.png"; |
---|
3610 | set icon_z17; |
---|
3611 | text: auto; |
---|
3612 | } |
---|
3613 | node[sport=cricket] { |
---|
3614 | icon-image: "sport/cricket.png"; |
---|
3615 | set icon_z17; |
---|
3616 | text: auto; |
---|
3617 | } |
---|
3618 | node[sport=cricket_nets] { |
---|
3619 | icon-image: "sport/cricket.png"; |
---|
3620 | set icon_z17; |
---|
3621 | text: auto; |
---|
3622 | } |
---|
3623 | node[sport=croquet] { |
---|
3624 | icon-image: "sport/croquet.png"; |
---|
3625 | set icon_z17; |
---|
3626 | text: auto; |
---|
3627 | } |
---|
3628 | area[sport=cycling], |
---|
3629 | area[sport=dog_racing], |
---|
3630 | area[sport=equestrian], |
---|
3631 | area[sport=golf], |
---|
3632 | area[sport=gymnastics], |
---|
3633 | area[sport=hockey], |
---|
3634 | area[sport=horse_racing], |
---|
3635 | area[sport=karting], |
---|
3636 | area[sport=motocross], |
---|
3637 | area[sport=motor] { |
---|
3638 | fill-color: sport#bde3cb; |
---|
3639 | } |
---|
3640 | node[sport=cycling] { |
---|
3641 | icon-image: "sport/cycling.png"; |
---|
3642 | set icon_z17; |
---|
3643 | text: auto; |
---|
3644 | } |
---|
3645 | node[sport=dog_racing] { |
---|
3646 | icon-image: "leisure/dog.png"; |
---|
3647 | set icon_z17; |
---|
3648 | text: auto; |
---|
3649 | } |
---|
3650 | node[sport=equestrian] { |
---|
3651 | icon-image: "presets/equestrian.png"; |
---|
3652 | icon-width: 16; |
---|
3653 | set icon_z17; |
---|
3654 | text: auto; |
---|
3655 | } |
---|
3656 | node[sport=golf] { |
---|
3657 | icon-image: "sport/golf.svg"; |
---|
3658 | set icon_z17; |
---|
3659 | text: auto; |
---|
3660 | } |
---|
3661 | node[sport=gymnastics] { |
---|
3662 | icon-image: "presets/gymnastics.png"; |
---|
3663 | icon-width: 16; |
---|
3664 | set icon_z17; |
---|
3665 | text: auto; |
---|
3666 | } |
---|
3667 | node[sport=hockey] { |
---|
3668 | icon-image: "sport/hockey.png"; |
---|
3669 | set icon_z17; |
---|
3670 | text: auto; |
---|
3671 | } |
---|
3672 | node[sport=horse_racing] { |
---|
3673 | icon-image: "sport/riding.png"; |
---|
3674 | set icon_z17; |
---|
3675 | text: auto; |
---|
3676 | } |
---|
3677 | node[sport=karting] { |
---|
3678 | icon-image: "sport/karting.png"; |
---|
3679 | set icon_z17; |
---|
3680 | text: auto; |
---|
3681 | } |
---|
3682 | node[sport=motocross] { |
---|
3683 | icon-image: "sport/motocross.png"; |
---|
3684 | set icon_z17; |
---|
3685 | text: auto; |
---|
3686 | } |
---|
3687 | node[sport=motor] { |
---|
3688 | icon-image: "sport/motor.png"; |
---|
3689 | set icon_z17; |
---|
3690 | text: auto; |
---|
3691 | } |
---|
3692 | area[sport=multi], |
---|
3693 | area[sport=pelota], |
---|
3694 | area[sport=racquet], |
---|
3695 | area[sport=skating], |
---|
3696 | area[sport=skateboard] { |
---|
3697 | fill-color: sport#bde3cb; |
---|
3698 | } |
---|
3699 | node[sport=multi] { |
---|
3700 | icon-image: "sport/multi.png"; |
---|
3701 | set icon_z17; |
---|
3702 | text: auto; |
---|
3703 | } |
---|
3704 | node[sport=pelota] { |
---|
3705 | icon-image: "sport/pelota.png"; |
---|
3706 | set icon_z17; |
---|
3707 | text: auto; |
---|
3708 | } |
---|
3709 | node[sport=racquet] { |
---|
3710 | icon-image: "sport/racquetball.png"; |
---|
3711 | set icon_z17; |
---|
3712 | text: auto; |
---|
3713 | } |
---|
3714 | node[sport=skating] { |
---|
3715 | icon-image: "sport/skating.png"; |
---|
3716 | set icon_z17; |
---|
3717 | text: auto; |
---|
3718 | } |
---|
3719 | node[sport=skateboard] { |
---|
3720 | icon-image: "sport/skateboard.png"; |
---|
3721 | set icon_z17; |
---|
3722 | text: auto; |
---|
3723 | } |
---|
3724 | area[sport=swimming] { |
---|
3725 | fill-color: swimming_pool#51c4ef; |
---|
3726 | } |
---|
3727 | node[sport=swimming] { |
---|
3728 | icon-image: "sport/pool.png"; |
---|
3729 | set icon_z17; |
---|
3730 | text: auto; |
---|
3731 | } |
---|
3732 | area[sport=table_tennis], |
---|
3733 | area[sport=tennis], |
---|
3734 | area[sport=paintball] { |
---|
3735 | fill-color: sport#bde3cb; |
---|
3736 | } |
---|
3737 | node[sport=table_tennis] { |
---|
3738 | icon-image: "sport/table_tennis.png"; |
---|
3739 | set icon_z17; |
---|
3740 | text: auto; |
---|
3741 | } |
---|
3742 | node[sport=tennis] { |
---|
3743 | icon-image: "sport/tennis.png"; |
---|
3744 | set icon_z17; |
---|
3745 | text: auto; |
---|
3746 | } |
---|
3747 | node[sport=paintball] { |
---|
3748 | icon-image: "misc/no_icon.png"; |
---|
3749 | set icon_z17; |
---|
3750 | text: auto; |
---|
3751 | } |
---|
3752 | area[sport=squash], |
---|
3753 | area[sport=shooting], |
---|
3754 | area[sport=volleyball], |
---|
3755 | area[sport=beachvolleyball], |
---|
3756 | area[sport=bowling], |
---|
3757 | area[sport=handball], |
---|
3758 | area[sport=rowing], |
---|
3759 | area[sport=sailing], |
---|
3760 | area[sport=scuba_diving], |
---|
3761 | area[sport=badminton] { |
---|
3762 | fill-color: sport#bde3cb; |
---|
3763 | } |
---|
3764 | node[sport=squash] { |
---|
3765 | icon-image: "misc/no_icon.png"; |
---|
3766 | set icon_z17; |
---|
3767 | text: auto; |
---|
3768 | } |
---|
3769 | node[sport=shooting] { |
---|
3770 | icon-image: "presets/range.png"; |
---|
3771 | icon-width: 16; |
---|
3772 | set icon_z17; |
---|
3773 | text: auto; |
---|
3774 | } |
---|
3775 | node[sport=volleyball] { |
---|
3776 | icon-image: "sport/volleyball.png"; |
---|
3777 | set icon_z17; |
---|
3778 | text: auto; |
---|
3779 | } |
---|
3780 | node[sport=beachvolleyball] { |
---|
3781 | icon-image: "sport/beachvolleyball.png"; |
---|
3782 | set icon_z17; |
---|
3783 | text: auto; |
---|
3784 | } |
---|
3785 | node[sport=bowling] { |
---|
3786 | icon-image: "sport/10pin.png"; |
---|
3787 | set icon_z17; |
---|
3788 | text: auto; |
---|
3789 | } |
---|
3790 | node[sport=handball] { |
---|
3791 | icon-image: "sport/handball.png"; |
---|
3792 | set icon_z17; |
---|
3793 | text: auto; |
---|
3794 | } |
---|
3795 | node[sport=rowing] { |
---|
3796 | icon-image: "sport/rowing.png"; |
---|
3797 | set icon_z17; |
---|
3798 | text: auto; |
---|
3799 | } |
---|
3800 | node[sport=sailing] { |
---|
3801 | icon-image: "misc/no_icon.png"; |
---|
3802 | set icon_z17; |
---|
3803 | text: auto; |
---|
3804 | } |
---|
3805 | node[sport=scuba_diving] { |
---|
3806 | icon-image: "sport/scuba_diving.svg"; |
---|
3807 | set icon_z17; |
---|
3808 | text: auto; |
---|
3809 | } |
---|
3810 | node[sport=badminton] { |
---|
3811 | icon-image: "misc/no_icon.png"; |
---|
3812 | set icon_z17; |
---|
3813 | text: auto; |
---|
3814 | } |
---|
3815 | area[sport=archery], |
---|
3816 | area[sport=fishing], |
---|
3817 | area[sport=safety_training], |
---|
3818 | area[sport=model_aerodrome], |
---|
3819 | area[sport=rc_car] { |
---|
3820 | fill-color: sport#bde3cb; |
---|
3821 | } |
---|
3822 | node[sport=archery] { |
---|
3823 | icon-image: "sport/archery.png"; |
---|
3824 | set icon_z17; |
---|
3825 | text: auto; |
---|
3826 | } |
---|
3827 | node[sport=fishing] { |
---|
3828 | icon-image: "sport/fishing.png"; |
---|
3829 | set icon_z17; |
---|
3830 | text: auto; |
---|
3831 | } |
---|
3832 | node[sport=safety_training] { |
---|
3833 | icon-image: "sport/safety_training.png"; |
---|
3834 | set icon_z17; |
---|
3835 | text: auto; |
---|
3836 | } |
---|
3837 | node[sport=model_aerodrome] { |
---|
3838 | icon-image: "transport/airport.png"; |
---|
3839 | set icon_z17; |
---|
3840 | text: auto; |
---|
3841 | } |
---|
3842 | node[sport=rc_car] { |
---|
3843 | icon-image: "transport/car.png"; |
---|
3844 | set icon_z17; |
---|
3845 | text: auto; |
---|
3846 | } |
---|
3847 | |
---|
3848 | /****************/ |
---|
3849 | /* natural tags */ |
---|
3850 | /****************/ |
---|
3851 | |
---|
3852 | area[natural=spring] { |
---|
3853 | fill-color: light_water#00005f; |
---|
3854 | } |
---|
3855 | node[natural=spring] { |
---|
3856 | icon-image: "misc/landmark/spring.png"; |
---|
3857 | set icon_z17; |
---|
3858 | text: auto; |
---|
3859 | } |
---|
3860 | node[natural=saddle] { |
---|
3861 | icon-image: "presets/saddle.svg"; |
---|
3862 | set icon_z0; |
---|
3863 | text: auto; |
---|
3864 | set text_z0; |
---|
3865 | } |
---|
3866 | node[natural=peak] { |
---|
3867 | icon-image: "presets/peak.svg"; |
---|
3868 | set icon_z0; |
---|
3869 | text: auto; |
---|
3870 | set text_z0; |
---|
3871 | } |
---|
3872 | node[natural=peak][tourism=viewpoint] { |
---|
3873 | icon-image: "sightseeing/peak_viewpoint.svg"; |
---|
3874 | set icon_z0; |
---|
3875 | text: auto; |
---|
3876 | set text_z0; |
---|
3877 | } |
---|
3878 | area[natural=glacier] { |
---|
3879 | fill-color: glacier#ffffff; |
---|
3880 | } |
---|
3881 | node[natural=glacier] { |
---|
3882 | icon-image: "misc/landmark/glacier_small.png"; |
---|
3883 | set icon_z0; |
---|
3884 | text: auto; |
---|
3885 | set text_z0; |
---|
3886 | } |
---|
3887 | node[natural=volcano] { |
---|
3888 | icon-image: "misc/landmark/volcano_small.png"; |
---|
3889 | set icon_z0; |
---|
3890 | text: auto; |
---|
3891 | set text_z0; |
---|
3892 | } |
---|
3893 | area[natural=cliff]:closed { |
---|
3894 | fill-color: natural#002f00; |
---|
3895 | } |
---|
3896 | way[natural=cliff] { |
---|
3897 | repeat-image: "misc/cliff-pattern.png"; |
---|
3898 | repeat-image-align: top; |
---|
3899 | width: 1; |
---|
3900 | color: #b2b2b2; |
---|
3901 | } |
---|
3902 | node[natural=cliff] { |
---|
3903 | icon-image: "misc/cliff.png"; |
---|
3904 | set icon_z17; |
---|
3905 | text: auto; |
---|
3906 | } |
---|
3907 | way[natural=ridge] { |
---|
3908 | width: 1; |
---|
3909 | color: natural#002f00; |
---|
3910 | } |
---|
3911 | way[natural=valley] { |
---|
3912 | width: 1; |
---|
3913 | color: natural#002f00; |
---|
3914 | } |
---|
3915 | area[natural=scree] { |
---|
3916 | fill-color: natural#002f00; |
---|
3917 | } |
---|
3918 | area[natural=scrub] { |
---|
3919 | fill-color: scrub#007000; |
---|
3920 | } |
---|
3921 | area[natural=fell] { |
---|
3922 | fill-color: natural#002f00; |
---|
3923 | } |
---|
3924 | area[natural=heath] { |
---|
3925 | fill-color: heath#ffffc0; |
---|
3926 | } |
---|
3927 | way[natural=tree_row] { |
---|
3928 | width: 2; |
---|
3929 | color: woodarea#008000; |
---|
3930 | } |
---|
3931 | area[natural=wood] { |
---|
3932 | fill-color: woodarea#008000; |
---|
3933 | } |
---|
3934 | area[natural=grassland] { |
---|
3935 | fill-color: green#b1e0c2; |
---|
3936 | } |
---|
3937 | area[natural=wetland] { |
---|
3938 | fill-color: marsh#4f4ff3; |
---|
3939 | } |
---|
3940 | area[natural=water] { |
---|
3941 | fill-color: water#0000ff; |
---|
3942 | } |
---|
3943 | way[natural=coastline] { |
---|
3944 | width: 1; |
---|
3945 | color: water#0000ff; |
---|
3946 | } |
---|
3947 | area[natural=mud] { |
---|
3948 | fill-color: mud#cba762; |
---|
3949 | } |
---|
3950 | area[natural=beach] { |
---|
3951 | fill-color: beach#f8dba2; |
---|
3952 | } |
---|
3953 | area[natural=sand] { |
---|
3954 | fill-color: sand#f8dba2; |
---|
3955 | } |
---|
3956 | area[natural=bare_rock] { |
---|
3957 | fill-color: bare_rock#f8f8c7; |
---|
3958 | } |
---|
3959 | area[natural=rock] { |
---|
3960 | fill-color: stone#f8f8c7; |
---|
3961 | } |
---|
3962 | node[natural=rock] { |
---|
3963 | icon-image: "misc/rock.svg"; |
---|
3964 | set icon_z17; |
---|
3965 | text: auto; |
---|
3966 | } |
---|
3967 | area[natural=stone] { |
---|
3968 | fill-color: stone#f8f8c7; |
---|
3969 | } |
---|
3970 | node[natural=stone] { |
---|
3971 | icon-image: "misc/stone.svg"; |
---|
3972 | set icon_z17; |
---|
3973 | text: auto; |
---|
3974 | } |
---|
3975 | area[natural=bay], |
---|
3976 | area[natural=cave_entrance] { |
---|
3977 | fill-color: natural#002f00; |
---|
3978 | } |
---|
3979 | node[natural=bay] { |
---|
3980 | icon-image: "misc/bay.png"; |
---|
3981 | set icon_z17; |
---|
3982 | text: auto; |
---|
3983 | } |
---|
3984 | node[natural=cave_entrance] { |
---|
3985 | icon-image: "misc/landmark/cave_entrance.png"; |
---|
3986 | set icon_z17; |
---|
3987 | text: auto; |
---|
3988 | } |
---|
3989 | node[natural=tree] { |
---|
3990 | icon-image: "misc/landmark/trees.png"; |
---|
3991 | set icon_z17; |
---|
3992 | text: auto; |
---|
3993 | } |
---|
3994 | node[natural=tree][type=conifer], |
---|
3995 | node[natural=tree][leaf_type=needleleaved] { |
---|
3996 | icon-image: "misc/landmark/trees_conifer.png"; |
---|
3997 | set icon_z17; |
---|
3998 | text: auto; |
---|
3999 | } |
---|
4000 | node[natural=tree][type=broad_leaved], |
---|
4001 | node[natural=tree][leaf_type=broadleaved] { |
---|
4002 | icon-image: "misc/landmark/trees_broad_leaved.png"; |
---|
4003 | set icon_z17; |
---|
4004 | text: auto; |
---|
4005 | } |
---|
4006 | node[natural=tree][type=palm] { |
---|
4007 | icon-image: "misc/landmark/trees_palm.png"; |
---|
4008 | set icon_z17; |
---|
4009 | text: auto; |
---|
4010 | } |
---|
4011 | node[natural=scree], |
---|
4012 | node[natural=scrub], |
---|
4013 | node[natural=fell], |
---|
4014 | node[natural=heath], |
---|
4015 | node[natural=tree_row], |
---|
4016 | node[natural=wood], |
---|
4017 | node[natural=grassland], |
---|
4018 | node[natural=wetland], |
---|
4019 | node[natural=water], |
---|
4020 | node[natural=coastline], |
---|
4021 | node[natural=mud], |
---|
4022 | node[natural=beach], |
---|
4023 | node[natural=sand], |
---|
4024 | node[natural=land], |
---|
4025 | node[natural=bare_rock], |
---|
4026 | node[natural=ridge], |
---|
4027 | node[natural=valley] { |
---|
4028 | icon-image: "misc/deprecated.png"; |
---|
4029 | set icon_z17; |
---|
4030 | text: auto; |
---|
4031 | } |
---|
4032 | /*****************/ |
---|
4033 | /* waterway tags */ |
---|
4034 | /*****************/ |
---|
4035 | |
---|
4036 | way[waterway=river] { |
---|
4037 | width: 2; |
---|
4038 | color: water#0000ff; |
---|
4039 | } |
---|
4040 | area[waterway=riverbank] { |
---|
4041 | fill-color: riverbank#0000cf; |
---|
4042 | width: 1; |
---|
4043 | color: riverbank#0000cf; |
---|
4044 | } |
---|
4045 | way[waterway=canal] { |
---|
4046 | width: 2; |
---|
4047 | color: water#0000ff; |
---|
4048 | } |
---|
4049 | way[waterway=stream] { |
---|
4050 | width: 1; |
---|
4051 | color: stream#6600cc; |
---|
4052 | } |
---|
4053 | way[waterway=ditch], way[waterway=drain] { |
---|
4054 | width: 1; |
---|
4055 | color: water#0000ff; |
---|
4056 | } |
---|
4057 | area[waterway=dock] { |
---|
4058 | fill-color: dock#0000cf; |
---|
4059 | } |
---|
4060 | node[waterway=dock] { |
---|
4061 | icon-image: "nautical/boatyard.png"; |
---|
4062 | set icon_z17; |
---|
4063 | text: auto; |
---|
4064 | } |
---|
4065 | node[waterway=lock_gate] { |
---|
4066 | icon-image: "nautical/lock_gate.png"; |
---|
4067 | set icon_z17; |
---|
4068 | text: auto; |
---|
4069 | } |
---|
4070 | node[waterway=turning_point] { |
---|
4071 | icon-image: "nautical/turning.png"; |
---|
4072 | set icon_z17; |
---|
4073 | text: auto; |
---|
4074 | } |
---|
4075 | area[waterway=boatyard] { |
---|
4076 | fill-color: manmade#d8d8d8; |
---|
4077 | } |
---|
4078 | node[waterway=boatyard] { |
---|
4079 | icon-image: "nautical/boatyard.png"; |
---|
4080 | set icon_z17; |
---|
4081 | text: auto; |
---|
4082 | } |
---|
4083 | node[waterway=water_point], |
---|
4084 | node[waterway=waste_disposal], |
---|
4085 | node[waterway=mooring] { |
---|
4086 | icon-image: "misc/deprecated.png"; |
---|
4087 | set icon_z17; |
---|
4088 | text: auto; |
---|
4089 | } |
---|
4090 | node[mooring] { |
---|
4091 | icon-image: "nautical/marina.png"; |
---|
4092 | set icon_z17; |
---|
4093 | text: auto; |
---|
4094 | } |
---|
4095 | way[waterway=weir] { |
---|
4096 | width: 2; |
---|
4097 | color: manmade#d8d8d8; |
---|
4098 | } |
---|
4099 | node[waterway=weir] { |
---|
4100 | icon-image: "nautical/weir.png"; |
---|
4101 | set icon_z17; |
---|
4102 | text: auto; |
---|
4103 | } |
---|
4104 | area[waterway=dam]:closed { |
---|
4105 | fill-color: manmade#d8d8d8; |
---|
4106 | } |
---|
4107 | way[waterway=dam] { |
---|
4108 | width: 2; |
---|
4109 | color: manmade#d8d8d8; |
---|
4110 | } |
---|
4111 | node[waterway=dam] { |
---|
4112 | icon-image: "nautical/dam.png"; |
---|
4113 | set icon_z17; |
---|
4114 | text: auto; |
---|
4115 | } |
---|
4116 | /* it's not possible to have both line and area, line seems more likely */ |
---|
4117 | way[waterway=waterfall] { |
---|
4118 | width: 2; |
---|
4119 | color: manmade#d8d8d8; |
---|
4120 | } |
---|
4121 | node[waterway=waterfall] { |
---|
4122 | icon-image: "nautical/waterfall.png"; |
---|
4123 | set icon_z17; |
---|
4124 | text: auto; |
---|
4125 | } |
---|
4126 | node[waterway=river], node[waterway=riverbank], |
---|
4127 | node[waterway=canal], node[waterway=wadi], |
---|
4128 | node[waterway=stream], |
---|
4129 | node[waterway=ditch], node[waterway=drain] { |
---|
4130 | icon-image: "misc/deprecated.png"; |
---|
4131 | set icon_z17; |
---|
4132 | text: auto; |
---|
4133 | } |
---|
4134 | |
---|
4135 | /**************/ |
---|
4136 | /* route tags */ |
---|
4137 | /**************/ |
---|
4138 | |
---|
4139 | way[route=ferry] { |
---|
4140 | width: 1; |
---|
4141 | color: ferry#809bc0; |
---|
4142 | dashes: 9,9; |
---|
4143 | } |
---|
4144 | node[route=bus], |
---|
4145 | node[route=ferry], |
---|
4146 | node[route=flight], |
---|
4147 | node[route=ncn], |
---|
4148 | node[route=subsea], |
---|
4149 | node[route=ski], |
---|
4150 | node[route=tour], |
---|
4151 | node[route=pub_crawl] { |
---|
4152 | icon-image: "misc/deprecated.png"; |
---|
4153 | set icon_z17; |
---|
4154 | text: auto; |
---|
4155 | } |
---|
4156 | |
---|
4157 | /*******************/ |
---|
4158 | /* properties tags */ |
---|
4159 | /*******************/ |
---|
4160 | |
---|
4161 | node[mountain_pass?] { |
---|
4162 | icon-image: "misc/landmark/mountain_pass.png"; |
---|
4163 | set icon_z0; |
---|
4164 | text: auto; |
---|
4165 | set text_z0; |
---|
4166 | } |
---|
4167 | |
---|
4168 | /*****************/ |
---|
4169 | /* boundary tags */ |
---|
4170 | /*****************/ |
---|
4171 | |
---|
4172 | way[boundary=protected_area]::core_boundary, |
---|
4173 | way[boundary=administrative]::core_boundary, |
---|
4174 | way[boundary=postal_code]::core_boundary, |
---|
4175 | way[boundary=political]::core_boundary, |
---|
4176 | way[boundary=maritime]::core_boundary, |
---|
4177 | way[boundary=national_park]::core_boundary { |
---|
4178 | z-index: 2; |
---|
4179 | modifier: false; |
---|
4180 | width: 1; |
---|
4181 | color: boundary#FF6600; |
---|
4182 | dashes: 9,9; |
---|
4183 | } |
---|
4184 | way[admin_level=9]::core_boundary, |
---|
4185 | relation[admin_level=9] > way::core_boundary, |
---|
4186 | way[admin_level=10]::core_boundary, |
---|
4187 | relation[admin_level=10] > way::core_boundary { |
---|
4188 | z-index: 2; |
---|
4189 | modifier: false; |
---|
4190 | width: 1; |
---|
4191 | color: boundary#FF6600; |
---|
4192 | dashes: 9,9; |
---|
4193 | } |
---|
4194 | way[admin_level=7]::core_boundary, |
---|
4195 | relation[admin_level=7] > way::core_boundary, |
---|
4196 | way[admin_level=8]::core_boundary, |
---|
4197 | relation[admin_level=8] > way::core_boundary { |
---|
4198 | z-index: 2; |
---|
4199 | modifier: false; |
---|
4200 | width: 2; |
---|
4201 | color: boundary#FF6600; |
---|
4202 | dashes: 9,9; |
---|
4203 | } |
---|
4204 | way[admin_level=5]::core_boundary, |
---|
4205 | relation[admin_level=5] > way::core_boundary, |
---|
4206 | way[admin_level=6]::core_boundary, |
---|
4207 | relation[admin_level=6] > way::core_boundary { |
---|
4208 | z-index: 2; |
---|
4209 | modifier: false; |
---|
4210 | width: 3; |
---|
4211 | color: boundary#FF6600; |
---|
4212 | dashes: 9,9; |
---|
4213 | } |
---|
4214 | way[admin_level=3]::core_boundary, |
---|
4215 | relation[admin_level=3] > way::core_boundary, |
---|
4216 | way[admin_level=4]::core_boundary, |
---|
4217 | relation[admin_level=4] > way::core_boundary { |
---|
4218 | z-index: 2; |
---|
4219 | modifier: false; |
---|
4220 | width: 4; |
---|
4221 | color: boundary#FF6600; |
---|
4222 | dashes: 9,9; |
---|
4223 | } |
---|
4224 | way[admin_level=1]::core_boundary, |
---|
4225 | relation[admin_level=1] > way::core_boundary, |
---|
4226 | way[admin_level=2]::core_boundary, |
---|
4227 | relation[admin_level=2] > way::core_boundary { |
---|
4228 | z-index: 2; |
---|
4229 | modifier: false; |
---|
4230 | width: 5; |
---|
4231 | color: boundary#FF6600; |
---|
4232 | dashes: 9,9; |
---|
4233 | } |
---|
4234 | node[boundary=national], |
---|
4235 | node[boundary=administrative], |
---|
4236 | node[boundary=postal_code], |
---|
4237 | node[boundary=political], |
---|
4238 | node[boundary=national_park] { |
---|
4239 | icon-image: "misc/deprecated.png"; |
---|
4240 | set icon_z17; |
---|
4241 | text: auto; |
---|
4242 | } |
---|
4243 | |
---|
4244 | /******************/ |
---|
4245 | /* maxspeed nodes */ |
---|
4246 | /******************/ |
---|
4247 | node[traffic_sign][maxspeed=none][!is_prop_set(icon-image)] { |
---|
4248 | icon-image: "vehicle/restriction/maxspeed_none.svg"; |
---|
4249 | set icon_z17; |
---|
4250 | } |
---|
4251 | node[traffic_sign][maxspeed=~/^[0-9]+$/][!is_prop_set(icon-image)] { |
---|
4252 | maxspeedprop: tag(maxspeed); |
---|
4253 | set maxspeedclass; |
---|
4254 | } |
---|
4255 | node[traffic_sign][maxspeed=signals][!is_prop_set(icon-image)] { |
---|
4256 | maxspeedprop: " ?"; |
---|
4257 | set maxspeedclass; |
---|
4258 | } |
---|
4259 | node[traffic_sign][maxspeed=~/^[0-9]+ mph/][!is_prop_set(icon-image)] { |
---|
4260 | maxspeedprop: get(split(" mph",tag(maxspeed)),0); |
---|
4261 | set maxspeedclass; |
---|
4262 | } |
---|
4263 | node[traffic_sign][maxspeed=~/[0-9]+ km\/h/][!is_prop_set(icon-image)] { |
---|
4264 | maxspeedprop: get(split(" km/h",tag(maxspeed)),0); |
---|
4265 | set maxspeedclass; |
---|
4266 | } |
---|
4267 | node[traffic_sign][maxspeed=~/[0-9]+ knots/][!is_prop_set(icon-image)] { |
---|
4268 | maxspeedprop: get(split(" knots",tag(maxspeed)),0); |
---|
4269 | set maxspeedclass; |
---|
4270 | } |
---|
4271 | node[prop(maxspeedclass, default)][!is_prop_set(icon-image, default)]::core_maxnodebg { |
---|
4272 | /* background (white) */ |
---|
4273 | symbol-shape: circle; |
---|
4274 | symbol-size: 17; |
---|
4275 | symbol-fill-color: white; |
---|
4276 | major-z-index: 4.2; |
---|
4277 | } |
---|
4278 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodebg, |
---|
4279 | node[traffic_sign][maxspeed=signals]::core_maxnodebg { |
---|
4280 | /* background (black) */ |
---|
4281 | symbol-fill-color: black; |
---|
4282 | } |
---|
4283 | node[prop(maxspeedclass, default)]::core_maxnodefg { |
---|
4284 | /* foreground (black text and red circle) */ |
---|
4285 | symbol-shape: circle; |
---|
4286 | symbol-size: 15; |
---|
4287 | symbol-stroke-color: crimson; |
---|
4288 | symbol-stroke-width: 2; |
---|
4289 | text: prop(maxspeedprop, default); |
---|
4290 | font-size: 8; |
---|
4291 | font-weight: bold; |
---|
4292 | text-color: black; |
---|
4293 | text-anchor-horizontal: center; |
---|
4294 | text-anchor-vertical: center; |
---|
4295 | text-offset-x: 0; |
---|
4296 | text-offset-y: -1; |
---|
4297 | major-z-index: 4.2; |
---|
4298 | } |
---|
4299 | node[traffic_sign][maxspeed]["maxspeed:variable"]["maxspeed:variable"!="no"]::core_maxnodefg, |
---|
4300 | node[traffic_sign][maxspeed=signals]::core_maxnodefg { |
---|
4301 | /* foreground (white text) */ |
---|
4302 | text-color: white; |
---|
4303 | } |
---|
4304 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodebg { |
---|
4305 | symbol-shape: none; |
---|
4306 | } |
---|
4307 | node|z-16[prop(maxspeedclass, default)][setting("hide_icons")]::core_maxnodefg { |
---|
4308 | text: none; |
---|
4309 | symbol-shape: none; |
---|
4310 | } |
---|
4311 | |
---|
4312 | /**************/ |
---|
4313 | /* place tags */ |
---|
4314 | /**************/ |
---|
4315 | |
---|
4316 | /* lot's of "openGeoDB:..." tags can be found in germany */ |
---|
4317 | node["openGeoDB:type"=Stadt], |
---|
4318 | node["openGeoDB:type"=Kreis], |
---|
4319 | node["openGeoDB:type"=Gemeinde], |
---|
4320 | node["openGeoDB:type"=Ort], |
---|
4321 | node["openGeoDB:type"=District], |
---|
4322 | node["openGeoDB:location"=locality] { |
---|
4323 | icon-image: "place/settlement/openGeoDB.png"; |
---|
4324 | set icon_z0; |
---|
4325 | text: auto; |
---|
4326 | set text_z0; |
---|
4327 | font-size: 10; |
---|
4328 | font-weight: bold; |
---|
4329 | text-color:black; |
---|
4330 | text-halo-color: white; |
---|
4331 | text-halo-radius: 1; |
---|
4332 | } |
---|
4333 | area[place=continent], |
---|
4334 | area[place=country], |
---|
4335 | area[place=state], |
---|
4336 | area[place=region], |
---|
4337 | area[place=county], |
---|
4338 | area[place=city], |
---|
4339 | area[place=town], |
---|
4340 | area[place=village], |
---|
4341 | area[place=hamlet], |
---|
4342 | area[place=farm], |
---|
4343 | area[place=isolated_dwelling], |
---|
4344 | area[place=neighbourhood], |
---|
4345 | area[place=suburb], |
---|
4346 | area[place=locality], |
---|
4347 | area[place=island], |
---|
4348 | area[place=islet] { |
---|
4349 | fill-color: place#8de3cb; |
---|
4350 | } |
---|
4351 | node[place=continent], |
---|
4352 | node[place=country], |
---|
4353 | node[place=state], |
---|
4354 | node[place=region], |
---|
4355 | node[place=county] { |
---|
4356 | icon-image: "place/settlement/capital.png"; |
---|
4357 | set icon_z0; |
---|
4358 | text: auto; |
---|
4359 | set text_z0; |
---|
4360 | font-size: 10; |
---|
4361 | font-weight: bold; |
---|
4362 | text-color:black; |
---|
4363 | text-halo-color: white; |
---|
4364 | text-halo-radius: 1; |
---|
4365 | z-index: 2.9; |
---|
4366 | } |
---|
4367 | node[place=city] { |
---|
4368 | icon-image: "place/settlement/city.png"; |
---|
4369 | set icon_z0; |
---|
4370 | text: auto; |
---|
4371 | set text_z0; |
---|
4372 | font-size: 10; |
---|
4373 | font-weight: bold; |
---|
4374 | text-color:black; |
---|
4375 | text-halo-color: white; |
---|
4376 | text-halo-radius: 1; |
---|
4377 | z-index: 2.8; |
---|
4378 | } |
---|
4379 | node[place=town] { |
---|
4380 | icon-image: "place/settlement/town.png"; |
---|
4381 | set icon_z0; |
---|
4382 | text: auto; |
---|
4383 | set text_z0; |
---|
4384 | font-size: 10; |
---|
4385 | font-weight: bold; |
---|
4386 | text-color:black; |
---|
4387 | text-halo-color: white; |
---|
4388 | text-halo-radius: 1; |
---|
4389 | z-index: 2.7; |
---|
4390 | } |
---|
4391 | node[place=suburb] { |
---|
4392 | icon-image: "place/settlement/suburb.png"; |
---|
4393 | set icon_z0; |
---|
4394 | text: auto; |
---|
4395 | set text_z0; |
---|
4396 | font-size: 10; |
---|
4397 | font-weight: bold; |
---|
4398 | text-color:black; |
---|
4399 | text-halo-color: white; |
---|
4400 | text-halo-radius: 1; |
---|
4401 | z-index: 2.6; |
---|
4402 | } |
---|
4403 | node[place=village] { |
---|
4404 | icon-image: "place/settlement/village.png"; |
---|
4405 | set icon_z0; |
---|
4406 | text: auto; |
---|
4407 | set text_z0; |
---|
4408 | font-size: 10; |
---|
4409 | font-weight: bold; |
---|
4410 | text-color:black; |
---|
4411 | text-halo-color: white; |
---|
4412 | text-halo-radius: 1; |
---|
4413 | z-index: 2.5; |
---|
4414 | } |
---|
4415 | node[place=neighbourhood] { |
---|
4416 | icon-image: "place/settlement/neighbourhood.png"; |
---|
4417 | set icon_z0; |
---|
4418 | text: auto; |
---|
4419 | set text_z0; |
---|
4420 | font-size: 10; |
---|
4421 | font-weight: bold; |
---|
4422 | text-color:black; |
---|
4423 | text-halo-color: white; |
---|
4424 | text-halo-radius: 1; |
---|
4425 | z-index: 2.4; |
---|
4426 | } |
---|
4427 | node[place=hamlet] { |
---|
4428 | icon-image: "place/settlement/hamlet.png"; |
---|
4429 | set icon_z0; |
---|
4430 | text: auto; |
---|
4431 | set text_z0; |
---|
4432 | font-size: 10; |
---|
4433 | font-weight: bold; |
---|
4434 | text-color:black; |
---|
4435 | text-halo-color: white; |
---|
4436 | text-halo-radius: 1; |
---|
4437 | z-index: 2.3; |
---|
4438 | } |
---|
4439 | node[place=isolated_dwelling] { |
---|
4440 | icon-image: "place/settlement/isolated_dwelling.png"; |
---|
4441 | set icon_z0; |
---|
4442 | text: auto; |
---|
4443 | set text_z0; |
---|
4444 | font-size: 10; |
---|
4445 | font-weight: bold; |
---|
4446 | text-color:black; |
---|
4447 | text-halo-color: white; |
---|
4448 | text-halo-radius: 1; |
---|
4449 | z-index: 2.2; |
---|
4450 | } |
---|
4451 | node[place=farm] { |
---|
4452 | icon-image: "place/settlement/farm.png"; |
---|
4453 | set icon_z0; |
---|
4454 | text: auto; |
---|
4455 | set text_z0; |
---|
4456 | font-size: 10; |
---|
4457 | font-weight: bold; |
---|
4458 | text-color:black; |
---|
4459 | text-halo-color: white; |
---|
4460 | text-halo-radius: 1; |
---|
4461 | z-index: 2.1; |
---|
4462 | } |
---|
4463 | node[place=locality] { |
---|
4464 | icon-image: "place/locality.png"; |
---|
4465 | set icon_z0; |
---|
4466 | text: auto; |
---|
4467 | set text_z0; |
---|
4468 | font-size: 10; |
---|
4469 | font-weight: bold; |
---|
4470 | text-color:black; |
---|
4471 | text-halo-color: white; |
---|
4472 | text-halo-radius: 1; |
---|
4473 | } |
---|
4474 | node[place=island] { |
---|
4475 | icon-image: "place/island.png"; |
---|
4476 | set icon_z0; |
---|
4477 | text: auto; |
---|
4478 | set text_z0; |
---|
4479 | font-size: 10; |
---|
4480 | font-weight: bold; |
---|
4481 | text-color:black; |
---|
4482 | text-halo-color: white; |
---|
4483 | text-halo-radius: 1; |
---|
4484 | } |
---|
4485 | node[place=islet] { |
---|
4486 | icon-image: "place/islet.png"; |
---|
4487 | set icon_z0; |
---|
4488 | text: auto; |
---|
4489 | set text_z0; |
---|
4490 | font-size: 10; |
---|
4491 | font-weight: bold; |
---|
4492 | text-color:black; |
---|
4493 | text-halo-color: white; |
---|
4494 | text-halo-radius: 1; |
---|
4495 | } |
---|
4496 | |
---|
4497 | /***************************/ |
---|
4498 | /* "work in progress" tags */ |
---|
4499 | /***************************/ |
---|
4500 | |
---|
4501 | node|z16-[fixme]::core_fixme, |
---|
4502 | node|z-15[fixme][!setting("hide_icons")]::core_fixme, |
---|
4503 | node|z16-[FIXME]::core_fixme, |
---|
4504 | node|z-15[FIXME][!setting("hide_icons")]::core_fixme { |
---|
4505 | object-z-index: 20; |
---|
4506 | icon-image: "misc/fixme-annotation.png"; |
---|
4507 | } |
---|
4508 | node|z16-[note]::core_note, |
---|
4509 | node|z-15[note][!setting("hide_icons")]::core_note { |
---|
4510 | object-z-index: 10; |
---|
4511 | icon-image: "misc/note-annotation.png"; |
---|
4512 | } |
---|
4513 | |
---|
4514 | /* special display of unreviewed tiger data (USA) */ |
---|
4515 | way["tiger:reviewed"=no]::core_tiger { |
---|
4516 | major-z-index: -10; |
---|
4517 | width: 11; |
---|
4518 | color: tiger_data#808000; |
---|
4519 | opacity: 0.6; |
---|
4520 | } |
---|
4521 | |
---|
4522 | /****************************************/ |
---|
4523 | /* zoom levels and general node display */ |
---|
4524 | /****************************************/ |
---|
4525 | |
---|
4526 | /* |
---|
4527 | Summary of different zoom levels: |
---|
4528 | (any zoom) place=* and a few natural icons with their text is shown |
---|
4529 | |z-15 untagged way nodes are hidden completely |
---|
4530 | |z16- fixme=* and note=* symbols |
---|
4531 | |z17- normal POI icons (without text), |
---|
4532 | street name along highway=* ways |
---|
4533 | |z18- text for normal POI icons is shown |
---|
4534 | |
---|
4535 | * text size and node size is adapted according to zoom level (see style source below) |
---|
4536 | * maxspeed icons should not be distinguishable from POIs with "icon-image" property |
---|
4537 | |
---|
4538 | */ |
---|
4539 | |
---|
4540 | node { |
---|
4541 | text: auto; |
---|
4542 | } |
---|
4543 | node|z-16[setting("hide_icons")], |
---|
4544 | node|z17-[!is_prop_set("icon-image")][setting("hide_icons")]!.maxspeedclass, |
---|
4545 | node[!is_prop_set("icon-image")][!setting("hide_icons")]!.maxspeedclass { |
---|
4546 | symbol-size: 2; |
---|
4547 | symbol-shape: square; |
---|
4548 | symbol-stroke-color: node_standard#ffff00; |
---|
4549 | major-z-index: 4.95; /* put node squares above line text */ |
---|
4550 | } |
---|
4551 | way > node|z-15[setting("shrink_nodes")]!:tagged { |
---|
4552 | symbol-shape: none; |
---|
4553 | } |
---|
4554 | node:connection { |
---|
4555 | symbol-stroke-color: node_connection#ffff00; |
---|
4556 | } |
---|
4557 | node:tagged { |
---|
4558 | symbol-stroke-color: none; |
---|
4559 | symbol-fill-color: node_tagged#00ffff; |
---|
4560 | } |
---|
4561 | |
---|
4562 | way > node|z16[setting("shrink_nodes")]!:tagged { symbol-size: 1; } |
---|
4563 | |
---|
4564 | node|z17[setting("shrink_nodes")] { symbol-size: 4; } |
---|
4565 | way > node|z17[setting("shrink_nodes")] { symbol-size: 2; } |
---|
4566 | node|z17[setting("shrink_nodes")]:connection { symbol-size: 4; } |
---|
4567 | |
---|
4568 | node|z18[setting("shrink_nodes")] { symbol-size: 4; } |
---|
4569 | way > node|z18[setting("shrink_nodes")] { symbol-size: 3; } |
---|
4570 | node|z18[setting("shrink_nodes")]:connection { symbol-size: 5; } |
---|
4571 | |
---|
4572 | node|z19-[setting("shrink_nodes")] { symbol-size: 4; } |
---|
4573 | way > node|z19-[setting("shrink_nodes")] { symbol-size: 4; } |
---|
4574 | node|z19-[setting("shrink_nodes")]:connection { symbol-size: 6; } |
---|
4575 | |
---|
4576 | node[!setting("shrink_nodes")] { symbol-size: 4; } |
---|
4577 | way > node[!setting("shrink_nodes")] { symbol-size: 4; } |
---|
4578 | node[!setting("shrink_nodes")]:connection { symbol-size: 6; } |
---|
4579 | |
---|
4580 | node|z-16[setting("hide_icons")].icon_z17!.icon_z0, |
---|
4581 | relation|z-16[type=restriction][setting("hide_icons")] { |
---|
4582 | icon-image: none; |
---|
4583 | } |
---|
4584 | node|z-17[setting("hide_icons")]!.text_z0 { |
---|
4585 | text: none; |
---|
4586 | } |
---|
4587 | |
---|
4588 | node|z19,area|z19 { font-size: 9; } |
---|
4589 | node|z20-,area|z20- { font-size: 10; } |
---|
4590 | |
---|
4591 | /*******************/ |
---|
4592 | /* way text labels */ |
---|
4593 | /*******************/ |
---|
4594 | |
---|
4595 | way|z17-[highway^=motorway][setting("highway_labels")], |
---|
4596 | way|z17-[highway^=trunk][setting("highway_labels")], |
---|
4597 | way|z17-[highway^=primary][setting("highway_labels")], |
---|
4598 | way|z17-[highway^=secondary][setting("highway_labels")], |
---|
4599 | way|z17-[highway^=tertiary][setting("highway_labels")], |
---|
4600 | way|z17-[highway=unclassified][setting("highway_labels")], |
---|
4601 | way|z17-[highway=residential][setting("highway_labels")], |
---|
4602 | way|z17-[highway=living_street][setting("highway_labels")], |
---|
4603 | way|z17-[highway=pedestrian][!area?][setting("highway_labels")], |
---|
4604 | way|z17-[highway=service][setting("highway_labels")], |
---|
4605 | way|z17-[highway=track][setting("highway_labels")] { |
---|
4606 | text: auto; |
---|
4607 | text-color: black; |
---|
4608 | font-size: 9; |
---|
4609 | text-position: line; |
---|
4610 | text-halo-opacity: 1; |
---|
4611 | text-halo-radius: 1.5; |
---|
4612 | } |
---|
4613 | way|z17-[highway^=motorway][setting("highway_labels")] { |
---|
4614 | text-halo-color: motorway#809bc0; |
---|
4615 | } |
---|
4616 | way|z17-[highway^=trunk][setting("highway_labels")] { |
---|
4617 | text-halo-color: trunk#7fc97f; |
---|
4618 | } |
---|
4619 | way|z17-[highway^=primary][setting("highway_labels")] { |
---|
4620 | text-halo-color: primary#fb805f; |
---|
4621 | } |
---|
4622 | way|z17-[highway^=secondary][setting("highway_labels")] { |
---|
4623 | text-halo-color: secondary#fdbf6f; |
---|
4624 | } |
---|
4625 | way|z17-[highway^=tertiary][setting("highway_labels")] { |
---|
4626 | text-halo-color: tertiary#f7f496; |
---|
4627 | } |
---|
4628 | way|z17-[highway=unclassified][setting("highway_labels")], |
---|
4629 | way|z17-[highway=residential][setting("highway_labels")], |
---|
4630 | way|z17-[highway=living_street][setting("highway_labels")] { |
---|
4631 | text-halo-color: street#c0c0c0; |
---|
4632 | } |
---|
4633 | way[highway=pedestrian][!area?][setting("highway_labels")] { |
---|
4634 | text-halo-color: foot#00ff00; |
---|
4635 | } |
---|
4636 | way|z17-[highway=service][setting("highway_labels")] { |
---|
4637 | text-halo-color: service#809bc0; |
---|
4638 | } |
---|
4639 | way|z17-[highway=track][setting("highway_labels")] { |
---|
4640 | text-halo-color: highway_track#6e541c; |
---|
4641 | } |
---|
4642 | way|z18[highway][setting("highway_labels")] { |
---|
4643 | font-size: 10; |
---|
4644 | } |
---|
4645 | way|z19[highway][setting("highway_labels")] { |
---|
4646 | font-size: 11; |
---|
4647 | } |
---|
4648 | way|z20-[highway][setting("highway_labels")] { |
---|
4649 | font-size: 12; |
---|
4650 | } |
---|
4651 | |
---|
4652 | /* "deprecated" tags |
---|
4653 | historic=museum -> tourism=museum |
---|
4654 | man_made=power_wind -> power=generator and power_source=wind |
---|
4655 | man_made=power_hydro -> power=generator and power_source=hydro |
---|
4656 | man_made=power_fossil -> power=generator and power_source=fossil |
---|
4657 | man_made=power_nuclear -> power=generator and power_source=nuclear |
---|
4658 | amenity=park_bench -> amenity=bench |
---|
4659 | amenity=signpost -> information=guidepost |
---|
4660 | amenity=emergency_phone -> emergency=phone |
---|
4661 | highway minor - classification now more detailed |
---|
4662 | highway=stile -> barrier=stile |
---|
4663 | highway=gate -> barrier=gate |
---|
4664 | highway=cattle_grid -> barrier=cattle_grid |
---|
4665 | highway=toll_booth -> barrier=toll_booth |
---|
4666 | highway=viaduct -> bridge=viaduct |
---|
4667 | railway=viaduct -> bridge=viaduct |
---|
4668 | waterway=aqueduct -> bridge=aqueduct |
---|
4669 | natural=marsh -> natural=wetland |
---|
4670 | leisure=zoo -> tourism=zoo |
---|
4671 | power=station -> power=plant or power=sub_station |
---|
4672 | */ |
---|