如何返回谷歌地图标记的城市,街道和邮政编码?

时间:2014-03-03 04:40:25

标签: javascript google-maps google-maps-api-3

我有这个代码用于在Latitude和Longitude的表单上填充两个文本输入。我想知道是否有办法检索城市,街道和邮政编码,所以我也可以使用这些来填充表格?

google.maps.event.addListener(marker, 'dragend', function(marker){
  var latLng = marker.latLng;
  $latitude.value = latLng.lat();
  $longitude.value = latLng.lng();
});

示例:

$zipcode.value = latLng.postal_code();
$street.value = latLng.street_address();
$city.value = latLng.city();

这是我的完整代码:

function selectState(state_id){
 if(state_id!="-1"){
loadData('city',state_id);
var e = document.getElementById("state");
var stateloc = e.options[e.selectedIndex].value;

var address = state_id + stateloc;

var $latitude = document.getElementById('latitude');
var $longitude = document.getElementById('longitude');
var latitude = 73.00636021320537;
var longitude = -23.46687316894531;

var zoom = 10;
geocoder = new google.maps.Geocoder();
var LatLng = new google.maps.LatLng(latitude, longitude);

var mapOptions = {
  zoom: zoom,
  center: LatLng,
  panControl: false,
  zoomControl: true,
  scaleControl: true,
  mapTypeId: google.maps.MapTypeId.ROADMAP
}  

var map = new google.maps.Map(document.getElementById('map'),mapOptions);



if (geocoder) {
  geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {
      map.setCenter(results[0].geometry.location);




var marker = new google.maps.Marker({
  position: results[0].geometry.location,
  map: map,
  title: 'Drag Me!',
  draggable: true
});

google.maps.event.addListener(marker, 'dragend', function(marker){
  var latLng = marker.latLng;
  $latitude.value = latLng.lat();
  $longitude.value = latLng.lng();
});



 } else {
        alert("No results found");
      }
    } else {
      alert("Geocode was not successful for the following reason: " + status);
    }

 });
}


  }else{$("#city_dropdown").html("<option value='-1'>Select city</option>");
  }
}

1 个答案:

答案 0 :(得分:0)

您面临的问题最简单地通过调用反向地理编码器来解决,该反向地理编码器位于

https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=false

一个非常简单的php脚本可能如下所示:

<?php
  $value=json_decode(file_get_contents("https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=false"));
  echo $value->results[0]->formatted_address;
?>

这会产生输出

277 Bedford Avenue, Brooklyn, NY 11211, USA

我建议(与您的用户名一致)以“保持简单”开头 - 从页面中删除所有代码,但采用Lon / Lat输入的代码除外,并调用上述代码。证明你可以重新创建这个输出(除了格式化的地址,还有数字,街道等的单独字段 - 请参阅返回的完整结构)。然后增加更多的复杂性(地图,别针,下拉,......)。

使用上面的例子,

var latitude = 73.00636021320537;
var longitude = -23.46687316894531;

返回的地址是

Greenland

我猜这就是当你在荒野中间插针时会发生什么:

enter image description here

UPDATE 如果您只想使用Javascript执行此操作,建议您使用jQuery来获取JSON解析功能。示例脚本(加载页面后加载与原始示例相同的地址 - 关键事项是可以用AJAX调用替换的httpGet函数,以及jQuery.parseJSON()调用有助于将响应转换为你可以提取有用的信息:

<html>
<script src='./js/jquery-1.11.0.min.js'></script>
<script>
function ready()
{
  var r = httpGet("https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=false");
  document.write(getAddress(r));
}

function httpGet(theUrl)
{
    var xmlHttp = null;

    xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false );
    xmlHttp.send( null );
    return xmlHttp.responseText;
}

function getAddress(response)
{
  var obj = jQuery.parseJSON(response);
  return obj.results[0].formatted_address;
}

</script>
<body onload="ready()">
</body>
</html>

http://www.floris.us/SO/geocode.html

工作时看到这一点