Nominatim Geocoder provider

Build Status Latest Stable Version Total Downloads Monthly Downloads Code Coverage Quality Score Software License

This is the Nominatim provider from the PHP Geocoder. This is a READ ONLY repository. See the main repo for information and documentation.

All usage of the Nominatim provider using nominatim.openstreetmap.org must follow the Nominatim Usage Policy !

Install

composer require geocoder-php/nominatim-provider

Usage

If you want to use the "default" Nominatim instance (https://nominatim.openstreetmap.org/) :

$provider = \Geocoder\Provider\Nominatim\Nominatim::withOpenStreetMapServer($httpClient, $userAgent);

If you want to specify yourself the server that will be used :

$provider = new \Geocoder\Provider\Nominatim($httpClient, 'https://nominatim.openstreetmap.org', $userAgent);

Contribute

Contributions are very welcome! Send a pull request to the main repository or report any issues you find on the issue tracker.