Skip to content

A Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API

License

Notifications You must be signed in to change notification settings

shinesoftware/GoogleMaps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoogleMaps

A Zend Framework 2 module that provides a PHP wrapper to the Google Maps Geocoding API

Geocoding example

This example show how to use ZF2 GoogleMaps module to find locations by address (geocoding).

use GoogleMaps;

$address = '1600 Amphitheatre Parkway, Mountain View, CA';

$request = new Request();
$request->setAddress($address);

$proxy = new Geocoder();
$response = $proxy->geocode($request);

var_dump($response);

Reverse geocoding example

This example show how to use ZF2 GoogleMaps module to find locations by latitude and longitude (reverse geocoding).

use GoogleMaps;

$lat = 40.714224;
$lng = -73.961452;

$request = new Request();
$request->setLatLng($lat . ',' . $lng);

$proxy = new Geocoder();
$response = $proxy->geocode($request);

var_dump($response);

Google Maps for Business

If you are using Google Maps for Business, you must set the clientId and sign the request with your private key.

use GoogleMaps;

$address = '1600 Amphitheatre Parkway, Mountain View, CA';
$clientId = 'my_client_id';
$privateKey = 'my_private_key';

$request = new Request();
$request->setAddress($address);
$request->setClient($clientId);
$request->sign($privateKey);

$proxy = new Geocoder();
$response = $proxy->geocode($request);

var_dump($response);

About

A Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%