我想要做的是使用 AJAX 和 JSON 加载一堆地址,找出每个地址的纬度和经度,在地图上放置标记,然后使用fitBounds()
放大,以便所有标记都可见。听起来很简单。
我已经把大部分东西都打包好了,但我的问题是fitBounds()
部分。
基本上似乎正在发生的事情是在遍历每个地址并找到纬度和经度时,它似乎fitBounds()
在循环下方加载了函数。
所以它正在调用,但数组中还fitBounds()
没有任何内容。marker_bounds
我原以为它会在到达fitBounds()
函数之前完成循环,但我猜geocoder.geocode()
函数必须使它在确定纬度和经度时继续加载 JavaScript 的其余部分。
我的代码如下:
var geocoder;
var map;
var marker_bounds = [];
var myOptions = {
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
$.post('addresses.php', function(data) {
var next_filter = '';
for(var x=0;x<data.addresses.length;x++) {
geocoder.geocode( { 'address': data.addresses[x].address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
var latLng = new google.maps.LatLng(results[0].geometry.location.lat(), results[0].geometry.location.lng());
marker_bounds.push(latLng);
}
});
}
var latlngbounds = new google.maps.LatLngBounds();
for ( var i = 0; i < marker_bounds.length; i++ ) {
latlngbounds.extend(marker_bounds[i]);
}
map.setCenter(latlngbounds.getCenter());
map.fitBounds(latlngbounds);
}, 'json');
在所有地理编码完成后,我可以调用一个函数吗?