Heim  >  Artikel  >  Backend-Entwicklung  >  php获取某个地址经纬度的代码

php获取某个地址经纬度的代码

WBOY
WBOYOriginal
2016-07-25 09:00:001212Durchsuche
如何使用 Google Maps API 获得某一特定地点的经度和纬度呢?本文为大家提供一个函数,它以某一地址作为参数,返回一个数组,包含经度和纬度数据。有需要的朋友,可以参考下。

代码如下:

<?php
/**
 * 获取某地址的经纬度
 * by http://bbs.it-home.org
*/
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; 
}
?>


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn