1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
// Define area filter for OSM municipalities (Here's Kajaani area for example)
area ["name"~"^Kajaani$"]->.kaj;
 
out body;
 
// Return construction=yes on highways
 
(
  way
    ["highway"]["construction"="yes"]
    (area.kaj);
 
);
out geom;
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet