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