2017 © Pedro Peláez
 

module googlemaps

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

image

cderue/googlemaps

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

  • Tuesday, October 18, 2016
  • by cderue
  • Repository
  • 5 Watchers
  • 20 Stars
  • 6,497 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 18 Forks
  • 5 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

GoogleMaps

A Zend Framework 2 module that provides a PHP wrapper to the Google Maps Geocoding API, (*1)

Geocoding example

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);

Reverse geocoding example

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);

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., (*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);

The Versions

18/10 2016

dev-master

9999999-dev https://github.com/cderue/GoogleMaps

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

  Sources   Download

The Requires

 

by CÈdric DERUE