cderue / googlemaps
There is no license information available for the latest version (dev-master) of this package.
A Zend Framework module that provides a PHP wrapper to the Google Maps Geocoding API
dev-master
2016-10-18 08:23 UTC
Requires
- php: >=5.3.3.
- zendframework/zendframework: 2.*
This package is not auto-updated.
Last update: 2026-04-05 11:20:46 UTC
README
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);