2018-06-28 13:40:20 +00:00
|
|
|
Geonames Addon
|
|
|
|
==============
|
|
|
|
|
|
|
|
Authors Mike Macgirvin.
|
|
|
|
|
2019-05-08 12:51:54 +00:00
|
|
|
Use [Geonames service](https://www.geonames.org) to resolve nearest populated location for given latitude, longitude.
|
2018-06-28 13:40:20 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2022-11-20 16:43:42 +00:00
|
|
|
Pre-requisite: Register a username at https://www.geonames.org/login and set it in `config/geonames.config.php`:
|
2018-06-28 13:40:20 +00:00
|
|
|
|
2022-11-20 16:43:42 +00:00
|
|
|
return [
|
|
|
|
'geonames' => [
|
|
|
|
'username' => 'your_username'
|
|
|
|
],
|
|
|
|
];
|
2018-06-28 13:40:20 +00:00
|
|
|
|
2019-05-08 12:51:54 +00:00
|
|
|
Also visit https://geonames.org/manageaccount and enable access to the free web services.
|