这篇文章主要为大家详细介绍了php 通过Google API获取指定地址经纬度的实现方法,具有一定的参考价值,可以用来参考一下。
随着 Google Maps API 的普及,开发人员常常需要获得某一特定地点的经度和纬度。这个非常有用的函数以某一地址作为参数,返回一个数组,包含经度和纬度数据。php通过Google API获得指定地址的经纬度 ,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 获得指定地址的经纬度
*
* @param
* @author 四海网 www.q1010.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;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/161-0.html
注:关于php 通过Google API获取指定地址经纬度的实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:Google API,经纬度
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。