【发布时间】:2011-05-18 22:52:09
【问题描述】:
<body onload="initialize()">
<form id="form1" runat="server">
<div id="map_canvas" style = "width:320px; height:480px">
</div>
<div>
<asp:TextBox ID="address" runat="server"></asp:TextBox>
<asp:Button Text="find" runat="server" OnClientClick="codeAddress()" />
</div>
</form>
</body>
这是我的javascript:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
function codeAddress() {
var address = document.getElementById("<%= address.ClientID %>").value;
geocoder.geocode({ 'address': address }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
</script>
codeAddress() 函数根本不起作用! 有什么问题?
【问题讨论】:
-
not working at all是什么意思?你有没有在这个函数中设置断点? (IE-Developer-Toolbar/Firebug) -
是的,它没有达到功能!
-
现在显示
Unable to get value of the property 'offsetWidth': object is null or undefined -
@Tim 它正在跳过
codeAddress函数中的geocoder.geocode()
标签: javascript binding asp.net-controls google-geocoder