代码之家  ›  专栏  ›  技术社区  ›  Andrew G. Johnson

在谷歌地图中,有没有一种方法可以只使用php来获取给定地址的long/lat?

  •  12
  • Andrew G. Johnson  · 技术社区  · 15 年前

    我知道这在JavaScript中是可能的,但我需要只使用PHP来完成,我该怎么做呢?

    5 回复  |  直到 11 年前
        1
  •  13
  •   Mike Williams    15 年前

    是的,有一个 HTTP geocoding interface 可以从任何服务器语言调用。

        2
  •  8
  •   Tizón    13 年前

    其他方式:

    $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;
    
        3
  •  4
  •   mauris    15 年前

    使用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];
    }
    
        4
  •  3
  •   Sebastian Viereck    11 年前

    这是我的课:

    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;
        }
    }
    

    }

        5
  •  0
  •   Tim Cooper    12 年前

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