1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
x
 
/*
This query searches for all the rest areas in Finland from OpenStreetMap
*/
[out:json][timeout:25];
// fetch area “Finland” to search in
{{geocodeArea:Suomi}}->.searchArea;
// gather results
(
  // query part for: “building”
  nwr["highway"="rest_area"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
300 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet