1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
/*
Which footways are missing surface in Rotterdam
Add your own city/area below and search.
*/
[out:json][timeout:25];
// fetch area “Rotterdam” to search in
{{geocodeArea:Rotterdam}}->.searchArea;
// gather results
(
  // query part for missing surface on ways or paths
  
  way["highway"="path"][!"surface"](area.searchArea);
 
);
// print results
out body;
>;
out skel qt;
5 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet