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