I'm new to the API, and am having a hard time going through the API documentation. I am using browser JavaScript to get the geolocation (latitude and longitude), and would like to display the current neighbourhood/city based on the lat and long data. For example, having the lat and lon of Is there a specific API GET request I can make? (i.e. Any help would be deeply appreciated. Thank you. asked 27 Nov '19, 15:50 SamSverkoCurate |
Have a look http://nominatim.org/release-docs/latest/api/Reverse/ Example https://nominatim.openstreetmap.org/reverse.php?format=html&lat=43.653225&lon=-79.383186&zoom=14 You can add &format=json, xml, geojson to the URL for 'raw' data. answered 27 Nov '19, 16:06 mtmail This is perfect! Thank you :)
(27 Nov '19, 16:15)
SamSverkoCurate
|