alexs / google-geocoder

Google 地理编码器

安装: 18

依赖: 0

建议: 0

安全: 0

类型:php-classes

1.0.6-stable 2017-09-21 12:12 UTC

This package is auto-updated.

Last update: 2024-09-27 17:01:28 UTC


README

Google 地理编码器

示例

<?php
$api_key = 'YOUR_API_KEY';
$latitude = 51.509865;
$longitude = -0.118092;
$Geocoder = new Geocoder($api_key);
/*
array (size=3)
  0 => string 'London' (length=6)
  1 => string 'United Kingdom' (length=14)
  2 => string 'GB' (length=2)
 */
var_dump($Geocoder->reverse($latitude, $longitude));