dev-master
9999999-dev https://github.com/cderue/GoogleMapsA Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API
The Requires
- php >=5.3.3.
- zendframework/zendframework 2.*
by CÈdric DERUE
A Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API
A Zend Framework 2 module that provides a PHP wrapper to the Google Maps Geocoding API, (*1)
This example show how to use ZF2 GoogleMaps module to find locations by address (geocoding)., (*2)
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);
This example show how to use ZF2 GoogleMaps module to find locations by latitude and longitude (reverse geocoding)., (*3)
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);
If you are using Google Maps for Business, you must set the clientId and sign the request with your private key., (*4)
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);
A Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API