1
2
3
4
5
6
7
8
9
10
11
12
13
14
x
 
// Define area filter for OSM municipalities (Here's Hämeenlinna area for example)
area ["name"~"Hämeenlinna|Janakkala|Hattula"]->.hml;
 
out body;
 
// Return paths with name
 
(
  way
    ["highway"="path"]["name"]
    (area.hml);
 
);
out geom;
10 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet