1
I need help, I want to know how to get the data from the street(name, type, address, etc.) through the Latitude and Longitude, using the Overpass API, I am beginner with it and I really need this data.
1
I need help, I want to know how to get the data from the street(name, type, address, etc.) through the Latitude and Longitude, using the Overpass API, I am beginner with it and I really need this data.
Browser other questions tagged api script
You are not signed in. Login or sign up in order to post.
What have you tried so far? Consider including the code you have developed so far.
– Bruno César
I managed to generate this code yesterday here in the Overpass Turbo API, but I wanted a more own code using the normal Overpass language. <osm-script output="json"> <query type="way"> <Around lat="-27.773056" Lon="-54.230312" Radius="5"/> <has-Kv k="Highway"/> </query> <Union> <item/> <recurse type="down"/> </Union> <</> </osm-script> print@Brunocésar
– Leonardo