Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 270 | | All time: 7,720 This week: 61 |
|
Description | | Author |
This class can get geographic details of a world location by name.
It can send a request to the City Geo-Location Lookup API Mashape Web server to search for locations with a given name.
The class returns the details of one or more locations found with the given name in an array or JSON string like the location full name, zip code, longitude and latitude, time zone, etc.. | |
|
|
Innovation award
Nominee: 7x
Winner: 1x |
|
Example
<?php
/*
This package is distributed with a composer.json file.
If you have composer installed, you have to install the contents of the file
It creates an autoload class that contains the Unirest Class.
For users without composer, you need to download the Unirest class provided by Mashape.
You can find it on Github.
After getting the necessary autoloads, you need to require the vendor/autoload.php file
so that the Unirest class can be included in your script. Then include the geolocation.class.php
class too.
*/
require_once("vendor/autoload.php");
require_once("geolocation.class.php");
use Unirest\Request; //We use the Request class thats created in the Unirest namespace to make life easier later on
$geoLocation = new GeoLocation(new Request()); //Instantiate the GeoLocation() class, accepts a Unirest\Request Object (class) as parameter
$locationToSearchFor = "Abuja"; //This can be any place in the world. It can be a city, village, country, state and so on.
$location = $geoLocation->getLocation($locationToSearchFor); //queries the api server for the complete geo-data of the location you searched for
/*
You can var_dump or print_r the $location variable to get a full look at the values returned by the getLocation() method
*/
$matches = $geoLocation->getMatches(); //the getLocation method returns more than one result, you use this method to count the number of results returned
/* We loop through all the results returned below */
for ($count = 0; $count < $matches; $count++)
{
echo "Name: ".$geoLocation->getName($count) . "<br/>"; //The name of the current matched result
echo "Type: ".$geoLocation->getType($count) . "<br/>"; //The type, could be city, country, state and so on
echo "Country: ".$geoLocation->getCountry($count) ."<br/>"; //The country where the matched result is located
echo "Zip Code: ".$geoLocation->getZipCode($count) . "<br/>"; //the zip code of the location that's searched for
echo "Magic Code: ".$geoLocation->getMagicCode($count) . "<br/>"; //The magic code of the matched result
echo "WMO Identifier: ".$geoLocation->getWMOID($count). "<br/>"; //The WMO Identifier
echo "Time Zone: ".$geoLocation->getTimeZone($count)."<br/>"; //The current time zone of the matched result
echo "Standard Time Zone Abbreviation: ".$geoLocation->getStandardTimeZone($count)."<br/>"; //returns the abbreviated standard time zone
echo "Longitude: ".$geoLocation->getLongitude($count)."<br/>"; //returns the longitude of the location returned
echo "Latitude: ".$geoLocation->getLatitude($count)."<br/>"; //returns the latitude of the returned location
echo "<hr/>"; //an horizontal rule to separate our results
}
/* You can browse through the geolocation.class.php file to get further details about the methods and
look at other ways you can achieve the same task. for instance you could also get the longitude of a
place by doing this:
echo $geoLocation->getLatLong($count)["Lon"];
*/
|
Details
PHP-Geo-Location
This PHP class/package can be used to get the complete geographical information about any place around the world. By providing a name of any location in the world, it returns the full geo-data of places that matches the location that was searched for. It returns details such as the full name of a place, the zip code, the longitude and latitude, the WMO Identifier and the Magic codes, the Time Zone, the standard time zones and so on. It can be very useful in applications or scenarios where other details about a users location needs to be automatically provided when the name of that location is provided.
Please go through the example.php file to fully understand how this class works.
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.