1
2
3
4
5
6
7
8
9
10
11
12
13
 
[out:json];
// Definieer de grens van Nederland
area["name"="Nederland"]->.boundaryarea;
 
// Selecteer alle elementen met "landuse=construction" tags en "operator=*" tags binnen Nederland
(
  node["landuse"="construction"]["operator"~".*"](area.boundaryarea);
  way["landuse"="construction"]["operator"~".*"](area.boundaryarea);
  relation["landuse"="construction"]["operator"~".*"](area.boundaryarea);
);
out center;
 
 
5 km
Leaflet © OpenStreetMap contributors
1