我使用jQuery在asp.net中获取地理坐标下面是代码
我想在文本框中输入地址并在标签中显示纬度和经度。有人可以建议我正确的方式
<script type="text/javascript">
var geocoder = new google.maps.Geocoder();
var address = "adeliade";
geocoder.geocode({ 'address': address }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
alert(latitude + ", " + longitude);
}
});
</script>