openstreetmap - How to get point of interest near my point using overpass-api? -


everyone! using overpass api.

i have issue find points of interest (cafes, hospitals, schools) near (around in 100-200 miles) point. have latitude , longitude.

overpass api gives opportunity pois using place name. don't have it. have coordinates.

how can ?

thanks

use around statement!

<query type="node">   <around lat="..." lon="..." radius="..."/>   <has-kv k="amenity" v="cafe" /> </query> <print /> 

try example on overpass turbo!


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

What is the difference between data design and data model(ERD) -

ios - Can NSManagedObject conform to NSCoding -