谷歌地图API地理编码不返回结果

时间:2012-10-30 22:21:27

标签: javascript google-maps

我不确定以下为什么不起作用。它根本不会进入geocoder.geocode段。我想要的是能够接收我输入的地址的地理编码,而无需在任何地图上绘制地图。

var geocoder;
function codeAddress() {
var address = document.getElementById("address").value;
geocoder.geocode( { 'address': address}, function(results, status) {
  if (status == google.maps.GeocoderStatus.OK) {
    alert(results[0].geometry.location);

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

}

html代码:

<div>
<input id="address" type="textbox" value="Sydney, NSW">
<input type="button" value="Encode" onclick="codeAddress()">
</div>

1 个答案:

答案 0 :(得分:0)

没有初始化地理编码器。 geocoder = new google.maps.Geocoder();