1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
/* 
Suche nach: node[amenity=recycling]
ohne Rücksicht ob [type=container] vorhanden ist
 
KEINE Garantie !!!
immer Tags kontollieren
*/
 
[out:json];
 
(
  node[amenity=recycling]({{bbox}});
);
out body;
>;
out skel qt;
 
{{style: 
node, area
{ color:black; fill-color:gray; }
 
/* erstmal alle die ok scheinen, fill=green */
 
node[recycling:glass_bottles=yes]
{ color:black; fill-color:green; }
 
node[recycling:clothes=yes]
{ color:black; fill-color:yellow; }
 
node[recycling:paper=yes]
{ color:black; fill-color:blue; }
 
/* Fehlersuche: 
:glass statt :glass_bottles 
*/
node[recycling:glass=yes]
{ fill-color:red; }
 
/* container mit (unnötigem) Namen */
node[name]
{ fill-color:pink; }
 
/* Klamottencontainer ohne Operator */
node[recycling:clothes=yes]
[!operator]
{ fill-color:purple; }
 
/* sonstiger Quatsch */
node[clothes=yes],
node[glass=yes],
node[glass_bottles=yes],
node[recycling=~/(glass|glass_bottles|clothes|shoes)/]
{ color:red; fill-color:red; }
 
}}
2 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet