Hello, I have setup a local Nominatim server using the instructions found on this site: https://nominatim.org/release-docs/latest/appendix/Install-on-Ubuntu-16/. I have tested the server using Luxembourg and it works. I was wondering if I could use this Nominatim server to extract the longitude latitude coordinates being called from outside like an API call. I already have tiles made from my mapnik server and I would like to highlights the points of the search from the user by getting the longitude and latitude from the nominatim server. asked 29 Jan '18, 14:25 Ujjawal |
Nominatim has multiple output formats. This is HTML https://nominatim.openstreetmap.org/search.php?q=paris&format=html, this is JSON https://nominatim.openstreetmap.org/search.php?q=paris&format=jsonv2 and XML https://nominatim.openstreetmap.org/search.php?q=paris&format=xml The various parameters are explained on https://wiki.openstreetmap.org/wiki/Nominatim On your own installation you might need to use http://IPADDRESS/nominatim/search.php instead of http://IPADDRESS/search.php answered 29 Jan '18, 15:09 mtmail |