0
我不知道爲什麼以下不起作用。它根本不輸入geocoder.geocode段。我只需要能夠接收我輸入的地址的地理編碼,而不必在任何地圖上繪製地址。谷歌地圖API地理編碼不返回結果
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>
非常類似於我的代碼。如何顯示問題或jsfiddle的實時地圖? – geocodezip
我沒有初始化地理編碼器。固定。謝謝。 – Den