1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
[out:xml]/*fixed by auto repair*/[timeout:800];
{{geocodeArea:Banda}}->.searchArea;
// determine set of highways
(
  way[highway=residential](area.searchArea);
  way[highway=unclassified](area.searchArea);
)->.highway; // put them into the set "highway"
 
// determine set of places
(
  node[place=village](area.searchArea);
  node[place=hamlet](area.searchArea);
 
)->.place; // put them into the set "place"
  
// determine set of places near highways
(
  node.place(around.highway:400)(area.searchArea);
  way.place(around.highway:400)(area.searchArea);
  rel.place(around.highway:400)(area.searchArea);
)->.PlacesNearHighways; // put them into the set "PlacesNearHighways"
 
// determine places far from highways
(.place; - .PlacesNearHighways;);
 
// return node, ways, relations as determined above
(._;>;); out meta;/*fixed by auto repair*/
2 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet