webadev / GoogleMaps

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:Other


Languages

Language:PHP 100.0%