peterujah / geo-name-search
Php Geoname search wrapper, to help reduce too much api call.
1.1.4
2024-01-08 22:40 UTC
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.5
- peterujah/cache: ^0.1
- peterujah/country-class: ^0.1
README
Php Geoname search wrapper, to help reduce too much api call
Installation
Installation is super-easy via Composer:
composer require peterujah/geo-name-search
USAGES
First you have to create an account with geoname to acquire api username http://www.geonames.org/export/geonames-search.html
Initialize GeoNameSearch with geoname api username
$geo = new \Peterujah\NanoBlock\GeoNameSearch("username");
List all states in any country Nigeria
$geo->states("Nigeria");
List all cities in any sates Enugu
$geo->cities("Enugu");
Search geoname
with query and country
$geo->query("Query", "Country");