1
2
3
4
5
6
7
8
9
10
11
12
13
14
x
 
// Define area filter for OSM municipalities (Here's Oulu area for example)
area ["name"~"^(Oulu|Ii|Hailuoto|Kempele|Liminka|Lumijoki|Muhos|Tyrnävä|Utajärvi)$"]->.oulu_seutu;
 
out body;
 
// Return construction=yes on highways
 
(
  way
    ["highway"]["construction"="yes"]
    (area.oulu_seutu);
 
);
out geom;
20 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet