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