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
 
/*
 
Diese Abfrage wurde von Ralph Plennert erstellt.
 
Kontakt:
Ralph Plennert
osm@plennert.eu
user:plennert
https://wiki.openstreetmap.org/wiki/Brandschutz_mit_OSM
 
Abfrage von Hydranten in Singen (Hohentwiel)
 
*/
 
 
 
{{geocodeArea:Singen}}->.searchArea;
(
  node["emergency"="fire_hydrant"]["fire_hydrant:type"="pillar"](area.searchArea);
  node["emergency"="fire_hydrant"]["fire_hydrant:type"="underground"](area.searchArea);
 
  >;
);
 
{{style:
  node[fire_hydrant:type=pillar] {
    icon-image: url('https://upload.wikimedia.org/wikipedia/commons/6/65/DE_Oberflurhydrant.png');
    icon-width: 18;
  } 
 
node[fire_hydrant:type=underground] {
    icon-image: url('https://upload.wikimedia.org/wikipedia/commons/9/9d/DE_Unterflurhydrant.jpg');
    icon-width: 18;
  } 
 
}}
 
out;
20 m
Leaflet © OpenStreetMap contributors
1