-1
這是我的index.html文件 - 我遇到問題的部分是使地理編碼功能正常工作。窗體和按鈕顯示出來,但是當我按下按鈕時沒有任何反應。Google地理編碼器不起作用
<!DOCTYPE html>
<html>
<head>
<title>First Google Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(43.696299,-79.346271);
var myOptions = {
zoom:13,
center: latlng,
mapTypeId: google.maps.MapTypeId.MAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
geocoder = new google.maps.Geocoder();
var myPlacesKML = new google.maps.KmlLayer('http://mristo.webatu.com/melissaristo/kml/torontodonvalley.kml?ver=1');
myPlacesKML.setMap(map);
function geocode() {
address = document.getElementById("address").value;
geocoder.geocode({
'address': address,
'partialmatch': true}, geocodeResult);
}
}
</script>
</head>
<body onload="initialize()">
<input type="text" id="address">
<input type="button" onclick="geocode();" value="Geocode it!"
}
</script>
<body onload="initialize()">
<div id="map_canvas" style="width:500px; height:400px"></div>
</body>
</html>
窗體和按鈕顯示出來,但按鈕不會做任何事情,當我點擊它。 有什麼建議嗎?我對此非常陌生並且相當迷茫
請正確縮進你的代碼,我不能告訴函數結束或它只是一個嵌套的東西 –
@RUJordan希望這樣更好? – user3096351
爲什麼在那個未封閉的輸入標籤之後有一個括號? –