我对googlemaps fitBounds函数有问题。
for (var i = 0; i < countries.length; i++) {
var country = countries[i];
var latlng = new google.maps.LatLng(parseFloat(country.lat), parseFloat(country.lng));
mapBounds.extend(latlng);
}
map.fitBounds(mapBounds);
一些图标将显示在视口(viewport)/可见区域之外。
有主意吗?
提前致谢。
最佳答案
考虑以下示例,该示例将在美国东北部生成10个随机点,并应用fitBounds()
方法。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps LatLngBounds.extend() Demo</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 400px; height: 300px;"></div>
<script type="text/javascript">
var map = new google.maps.Map(document.getElementById('map'), {
mapTypeId: google.maps.MapTypeId.TERRAIN
});
var markerBounds = new google.maps.LatLngBounds();
var randomPoint, i;
for (i = 0; i < 10; i++) {
// Generate 10 random points within North East USA
randomPoint = new google.maps.LatLng( 39.00 + (Math.random() - 0.5) * 20,
-77.00 + (Math.random() - 0.5) * 20);
// Draw a marker for each random point
new google.maps.Marker({
position: randomPoint,
map: map
});
// Extend markerBounds with each random point.
markerBounds.extend(randomPoint);
}
// At the end markerBounds will be the smallest bounding box to contain
// our 10 random points
// Finally we can call the Map.fitBounds() method to set the map to fit
// our markerBounds
map.fitBounds(markerBounds);
</script>
</body>
</html>
多次刷新此示例,没有任何标记移出视口(viewport)。最多,隐藏在控件后面时,有时会从顶部稍微剪下一个标记:
fitBounds()
总是在LatLngBounds
对象和视口(viewport)之间保留一小部分空白也是毫无值(value)的。在下面的屏幕截图中清楚地显示了这一点,其中红色边框表示传递给LatLngBounds
方法的fitBounds()
:您可能也有兴趣查看有关该主题的以下Stack Overflow帖子:
关于javascript - Google Maps fitBounds无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3407723/