我的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);
某些图标将显示在视口/可见区域之外。
想法?
提前致谢。
答案 0 :(得分:9)
考虑以下示例,该示例将在美国东北部生成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>
多次刷新此示例,没有标记出现在视口之外。最多,当隐藏在控件后面时,有时标记会从顶部略微剪裁:
Google Maps LatLngBounds.extend() Demo http://img825.imageshack.us/img825/7424/fitboundsfit.png
fitBounds()
总是在LatLngBounds
对象和视口之间留下一小块余量,这也是值得的。这清楚地显示在下面的屏幕截图中,其中红色边界框表示传递给LatLngBounds
方法的fitBounds()
:
fitBounds Padding http://img204.imageshack.us/img204/9149/fitit.png
fitBounds Padding http://img441.imageshack.us/img441/9615/fitus.png
您可能还有兴趣查看以下有关主题的Stack Overflow帖子:
答案 1 :(得分:0)
告诉我们患者的链接。您在国家/地区阵列中拥有多少个国家/地区?整个世界?你的界限是否越过了反子午线?
country.lat和country.lng是每个国家/地区的一个点,这还不足以定义该国家/地区的边界框。那是某种“乡村中心”吗?
如果是这种情况,并且如果你在最东部国家的质心以东,或者在westermost国家的质心以西有标记,那么这些标记当然会超出你定义的范围
map.fitBounds()
方法运行正常。 : - )
马塞洛。
答案 2 :(得分:0)
检查您的google地图对象是否在给定的区域中正确显示。 您的Google地图对象的某些部分可能会在容器的外部溢出,并且标记位于该区域(您看不见它们的地方)。