php 通过Google API获取指定地址经纬度的实现方法
内容摘要
这篇文章主要为大家详细介绍了php 通过Google API获取指定地址经纬度的实现方法,具有一定的参考价值,可以用来参考一下。
随着 Google Maps API 的普及,开发人员常常需要获得
随着 Google Maps API 的普及,开发人员常常需要获得
文章正文
这篇文章主要为大家详细介绍了php 通过Google API获取指定地址经纬度的实现方法,具有一定的参考价值,可以用来参考一下。
随着 Google Maps API 的普及,开发人员常常需要获得某一特定地点的经度和纬度。这个非常有用的函数以某一地址作为参数,返回一个数组,包含经度和纬度数据。php通过Google API获得指定地址的经纬度 ,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
* 获得指定地址的经纬度
*
* @param
* @author php教程 www.idcnote.com
**/
function getLatLong($address){
if (!is_string($address))die("All Addresses must be passed as a string");
$_url = sprintf('http://maps.google.com/maps?output=js&q=%s',rawurlencode($address));
$_result = false;
if($_result = file_get_contents($_url)) {
if(strpos($_result,'errortips') > 1 || strpos($_result,'Did you mean:') !== false) return false;
preg_match('!center:\s*{lat:\s*(-?\d+\.\d+),lng:\s*(-?\d+\.\d+)}!U', $_result, $_match);
$_coords['lat'] = $_match[1];
$_coords['long'] = $_match[2];
}
return $_coords;
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 通过Google API获取指定地址经纬度的实现方法的内容就先介绍到这里,更多相关文章的可以留意
代码注释