有没有办法只用PHP在Google地图中获取给定地址的长/纬度?

时间:2009-10-06 14:48:28

标签: php google-maps

我知道这在Javascript中是可行的,但我只需要使用PHP,我该怎么办?

5 个答案:

答案 0 :(得分:13)

是的,您可以使用任何服务器语言调用HTTP geocoding interface

答案 1 :(得分:8)

以其他方式:

$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false');

$output= json_decode($geocode);

$lat = $output->results[0]->geometry->location->lat;
$long = $output->results[0]->geometry->location->lng;

答案 2 :(得分:4)

使用Google Map API和PHP获取坐标:

$url = 'http://maps.google.com/maps/geo?q='.$address.'&output=json&oe=utf8&sensor=false&key='.$api_key;
$data = @file_get_contents($url);
$jsondata = json_decode($data,true);
if(is_array($jsondata )&& $jsondata ['Status']['code']==200){
  $lat = $jsondata ['Placemark'][0]['Point']['coordinates'][0];
  $lon = $jsondata ['Placemark'][0]['Point']['coordinates'][1];
}

答案 3 :(得分:3)

这是我的班级:

class GeoCoder {
public static function getLatLng($address){
    try{
        $address = urlencode($address);
        $geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false');

        $output= json_decode($geocode);

        $lat = $output->results[0]->geometry->location->lat;
        $lng = $output->results[0]->geometry->location->lng;
        if(is_numeric($lat) && is_numeric($lng)){
            return array("lat" => $lat, "lng" => $lng);
        }
    }
    catch(Exception $e){            
        return false;
    }
}

}

答案 4 :(得分:0)

您可以使用Google Maps API从lat和long(example usage)获取地址。