7

我有一个包含确切地址(街道、编号、城市、地区/地区、国家/地区)的数据库。但是,我想知道如果我们在纽约,是否有办法使用 Google API 来获取城市的区域(例如“曼哈顿”)?

我已经在数据库中的所有其他信息,所以如果有的话我只需要该地区(当然这只会在大城市中)......

更新:

我在http://www.techques.com/question/1-3151450/Google-geolocation-API---Use-longitude-and-latitude-to-get-address上找到了这个功能,并试图更改formatted_address为子区域(甚至其他人喜欢 short_name 等),但它不返回任何东西......任何帮助将不胜感激!谢谢!!

function reverse_geocode($lat, $lon) {
    $url = "http://maps.google.com/maps/api/geocode/json?latlng=$lat,$lon&sensor=false";
    $data = json_decode(file_get_contents($url));
    if (!isset($data->results[0]->formatted_address)){
        return "unknown Place";
    }
    return $data->results[0]->formatted_address;
}
4

3 回答 3

7

您可以像这样访问子区域:

function reverse_geocode($lat, $lon) {
    $url = "http://maps.google.com/maps/api/geocode/json?latlng=$lat,$lon&sensor=false";
    $data = json_decode(file_get_contents($url));
    if (!isset($data->results[0]->address_components)){
        return "unknown Place";
    }

    if ($data->results[0]->address_components[2]->types[0]=="sublocality") {

        $return_array['type']="sublocality";
        $return_array['sublocality_long_name']=$data->results[0]->address_components[2]->long_name;
        $return_array['sublocality_short_name']=$data->results[0]->address_components[2]->short_name;

        return $return_array;
        }

}
于 2012-04-18T19:42:15.987 回答
3

当存在types设置为的结果时,您将在地理编码请求中找到此信息

 [ "sublocality", "political" ]

示例:纽约市麦迪逊大街 317 号


修改上面的函数以便于访问响应组件:

  /**
    * @param $a mixed latitude or address
    * @param $b mixed optional longitude when $a is latitude
    * @return object geocoding-data
    **/

    function geocode($a, $b=null) {
    $params=array('sensor'=>'false');
    if(is_null($b))
    {
      $params['address']=$a;
    }
    else
    {
      $params['latlng']=implode(',',array($a,$b));
    }
    $url = 'http://maps.google.com/maps/api/geocode/json?'.http_build_query($params,'','&');
    $result=@file_get_contents($url);

     $response=new StdClass;
     $response->street_address               = null;
     $response->route                        = null;
     $response->country                     = null;
     $response->administrative_area_level_1 = null;
     $response->administrative_area_level_2 = null;
     $response->administrative_area_level_3 = null;
     $response->locality                    = null;
     $response->sublocality                 = null;
     $response->neighborhood                = null;
     $response->postal_code                 = null;
     $response->formatted_address           = null;
     $response->latitude                    = null;
     $response->longitude                   = null;
     $response->status                      = 'ERROR';

    if($result)
    {
      $json=json_decode($result);
      $response->status=$json->status;
      if($response->status=='OK')
      {
        $response->formatted_address=$json->results[0]->formatted_address;
        $response->latitude=$json->results[0]->geometry->location->lat;
        $response->longitude=$json->results[0]->geometry->location->lng;

        foreach($json->results[0]->address_components as $value)
        {
          if(array_key_exists($value->types[0],$response))
          {
            $response->{$value->types[0]}=$value->long_name;
          }
        }
      }
    }
  return $response;
}

//sample usage
echo '<hr/>'.geocode('317 Madison Ave,New York City')->sublocality;
  //Manhattan

echo '<hr/>'.geocode('foobar')->status;
  //ZERO_RESULTS

echo '<hr/>'.geocode('40.689758, -74.04513800000001')->formatted_address;
  //1 Liberty Is, Brooklyn, NY 11231, USA
于 2012-04-17T23:04:31.217 回答
0

我想出了以下内容。

function geocode() {
    var geocoder = new google.maps.Geocoder();
    var lat  = $('#latitude').val()
    var lng  = $('#longitude').val()
    var latlng = {lat: parseFloat(lat), lng: parseFloat(lng)};

  geocoder.geocode(
    {'location': latlng},
    function(results, status) {
      if (status === 'OK') {
        for (var i = 0; i < results[0].address_components.length; i++)
        {
          if (status == google.maps.GeocoderStatus.OK) {
    				if (results[0]) {
    					for (var i = 0; i < results.length; i++) {
                //alert(results[i].types[0]+','+results[i].types[1]+','+results[i].address_components[0].long_name)
                //district
                if (results[i].types[0]=='political' && results[i].types[1]=='sublocality' ){
                  alert(results[i].address_components[0].long_name);
                }
                //City
                if (results[i].types[0]=='locality' && results[i].types[1]=='political' ){
                  alert(results[i].address_components[0].long_name);
                }
                //country
                if (results[i].types[0]=='country' && results[i].types[1]=='political' ){
                  alert(results[i].address_components[0].long_name);
                }
    					}
    				}
    				else {console.log("No reverse geocode results.")}
    			}
    			else {console.log("Geocoder failed: " + status)}


        }
  }})
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

于 2018-02-07T23:12:39.577 回答