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

Installs: 14 009

Dependents: 0

Suggesters: 0

Security: 0

Stars: 20

Watchers: 5

Forks: 16

Open Issues: 5

Type:module

dev-master 2016-10-18 08:23 UTC

This package is not auto-updated.

Last update: 2024-05-05 01:47:31 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);