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
 
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“waterway=stream or waterway=river in bielefeld”
*/
[out:json][timeout:25];
// fetch area “bielefeld” to search in
{{geocodeArea:bielefeld}}->.searchArea;
// gather results
(
  // query part for: “waterway=stream”
 
  way["waterway"="stream"](area.searchArea);
  relation["waterway"="stream"](area.searchArea);
  // query part for: “waterway=river”
 
  way["waterway"="river"](area.searchArea);
  relation["waterway"="river"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
{{style:
  node, way, relation { text: name; }
  way, relation way, relation { color:blue; width:0; opacity:0; }
  relation node, way:placeholder, relation:placeholder { width: 0; opacity: 0}
 
}}
 
2 km
Leaflet © OpenStreetMap contributors
1