定制 cderue/googlemaps 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cderue/googlemaps

Composer 安装命令:

composer require cderue/googlemaps

包简介

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

README 文档

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

统计信息

  • 总下载量: 14.45k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 21
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 20
  • Watchers: 4
  • Forks: 13
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2013-03-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固