peterujah/geo-name-search

Php Geoname search wrapper, to help reduce too much api call.

1.1.4 2024-01-08 22:40 UTC

This package is auto-updated.

Last update: 2024-05-17 15:57:40 UTC


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");