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 paths with name=no defined
 
(
  way
    ["highway"="path"]["name"]
    (area.kaj);
 
);
out geom;
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet