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