gpt4 book ai didi

javascript - 带有 fitBounds 的谷歌地图不会缩放

转载 作者:行者123 更新时间:2023-11-29 20:12:56 24 4
gpt4 key购买 nike

下面的代码工作正常,只是它没有缩放到给定的点。

如果我直接使用 Latlng,它就可以工作,无需将地址转换为 Latlng。

我需要将地址转换为 latlng,因为我是从数据库中获取地址的。

有人知道哪里出了问题吗?

    <!DOCTYPE html> 
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Test</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 600px; height: 400px;"></div>

<script type="text/javascript">

var arrAddress = new Array();

arrAddress[0] = "kelbergen, Amsterdam";
arrAddress[1] = "Kraailookstraat, Amsterdam";
arrAddress[2] = "krootstraat, Amsterdam";

var optionMap = {
zoom: 16,
MapTypeId: google.maps.MapTypeId.ROADMAP,
};

var map = new google.maps.Map(document.getElementById('map'), optionMap);

var geocoder = new google.maps.Geocoder();

var latlngbounds = new google.maps.LatLngBounds();

for(var i = 0; i < arrAddress.length; i++) {

geocoder.geocode( { 'address': arrAddress[i]}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {

var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});

latlngbounds.extend(results[0].geometry.location);
}
});

}

map.fitBounds(latlngbounds);

</script>
</body>
</html>

最佳答案

Google 的地理编码器是异步的,因此在对所有点进行地理编码之前调用 map.fitbounds(latlngbounds)。解决此问题的最简单方法是在扩展调用之后立即放置 map.fitbounds(latlngbounds)

for(var i = 0; i < arrAddress.length; i++) {
geocoder.geocode( { 'address': arrAddress[i]}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {

var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});

latlngbounds.extend(results[0].geometry.location);
map.fitBounds(latlngbounds);

}
});
}

更新:这是一个更好的答案。在最后一个示例中,重复调用了 map.fitbounds(latlngbounds) 方法,当有很多标记时,这可能会产生问题。使用 this question 中的答案您可以创建一个异步循环以确保 map.fitbounds(latlngbounds) 仅被调用一次。

//replaced the for loop.
asyncLoop(arrAddress.length, function(loop) {
geocoder.geocode({
'address': arrAddress[loop.iteration()] //loop counter
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});

latlngbounds.extend(results[0].geometry.location);
}

//increment the loop counter.
loop.next();
});
}, function() {
//when the loop is complete call fit bounds.
map.fitBounds(latlngbounds);
});

function asyncLoop(iterations, func, callback) {
var index = 0;
var done = false;
var loop = {
next: function() {
if (done) {
return;
}

if (index < iterations) {
index++;
func(loop);

} else {
done = true;
callback();
}
},

iteration: function() {
return index - 1;
},

break: function() {
done = true;
callback();
}
};
loop.next();
return loop;
}

示例已更新: fiddle of the working code.

关于javascript - 带有 fitBounds 的谷歌地图不会缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8565539/

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