Straßen/Wege als Flächen

Versuche es mal mit dieser Overpass-Abfrage:

/*
This has been generated by the overpass-turbo wizard.
The original search was:
“area:highway=footway || area:highway=steps || area:highway=pedestrian || area:highway=path”
*/
[out:json][timeout:25];
// gather results
(
  nwr["area:highway"="footway"]({{bbox}});
  nwr["area:highway"="steps"]({{bbox}});
  nwr["area:highway"="pedestrian"]({{bbox}});
  nwr["area:highway"="path"]({{bbox}});
);
// print results
out geom;

1 Like