gpt4 book ai didi

javascript - 从地址获取纬度经度

转载 作者:行者123 更新时间:2023-12-02 17:29:32 26 4
gpt4 key购买 nike

我使用下面的代码(发布的整个html代码)从地址返回纬度经度,但我的问题是我调用函数的方式,否则处理纬度经度。该函数返回 null,但如果我在函数内显示内容(请搜索“alert(results[0].geometry.location);//Worksfine Here”,我会收到正确的值,

我的 JavaScript 代码有什么问题,导致 getLatLng 函数返回 null?

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Geocoding service</title>
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
#panel {
position: absolute;
top: 5px;
left: 50%;
margin-left: -180px;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 8,
center: latlng
}
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}

function codeAddress() {
var address = document.getElementById('address').value;
alert (getLatLng(address));
}

var getLatLng = function(stAddress){

return geocoder.geocode( { 'address': stAddress}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
alert(results[0].geometry.location);// works fine here
return results[0].geometry.location;
} else {
return -1;
}
});

}


google.maps.event.addDomListener(window, 'load', initialize);

</script>
</head>
<body>
<div id="panel">
<input id="address" type="textbox" value="Vancouver downtown">
<input type="button" value="Geocode" onclick="codeAddress()">
</div>
<div id="map-canvas"></div>
</body>
</html>

最佳答案

您将结果返回到地理编码,而不是外部函数 - getLatLng。查找回调函数和地理编码器,它会更有意义。上周我遇到了这个麻烦,我终于明白了

关于javascript - 从地址获取纬度经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23185902/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com