PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   GeoNames PHP API   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: GeoNames PHP API
Search for geographic places using GeoNames API
Author: By
Last change:
Date: 2 years ago
Size: 693 bytes
 

Contents

Class file image Download

geo-name-search

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