3

我一直在寻找解决此问题的方法,但似乎找不到解决此问题的方法。我得到的最接近的是这个线程。但这不起作用。

我正在尝试做的是基于一组可以正常工作的标记运行 fitbounds 。但我也想根据用户位置(plunk 中的弹跳标记)将地图居中,并仍然将所有标记保留在地图视图中。如果我尝试在 fitBounds 之后设置中心,则某些标记位于地图视图之外。有没有一些巧妙的方法可以结合这两个功能? 这是说明问题的笨拙

function initialize() {
  var userCenter = new google.maps.LatLng(51.508742, -0.120850);

  var userCenterMarker = new google.maps.Marker({
  position: userCenter
});

 userCenterMarker.setAnimation(google.maps.Animation.BOUNCE);

var mapProp = {
  center: userCenter,
  zoom: 12,
  mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap"),   mapProp);

var bounds = new google.maps.LatLngBounds();
var markers = getMarkers();

$(markers).each(function() {
  bounds.extend(this.position);
  this.setMap(map);
});

userCenterMarker.setMap(map);

map.fitBounds(bounds);

setTimeout(function() {
  map.setCenter(userCenter);
}, 1500);
}

谢谢!

4

2 回答 2

4

简单的解决方案:将您的“用户标记”添加到边界,执行 fitBounds,然后将结果缩放减少 1 并以该标记为中心。

  bounds.extend(userCenterMarker.getPosition());
  map.fitBounds(bounds);

  google.maps.event.addListenerOnce(map,'bounds_changed', function() {
        map.setZoom(map.getZoom()-1);
  });

工作小提琴

更复杂的解决方案:以“用户标记”为中心,检查标记边界是否完全包含在地图的当前边界(map.getBounds().contains(markerBounds))中,如果没有,则将缩放级别减 1。

于 2015-02-13T16:03:19.553 回答
0

上面的答案对我不起作用。这是做了什么:

contained = true;
map.fitBounds(bounds);
map.setCenter(center);
newbounds = map.getBounds();
for (i = 0; i < l; i ++) {
  if (!newbounds.contains(markers[i].getPosition())) {
    contained = false;
  }
}
if (!contained) map.setZoom(map.getZoom() - 1);
于 2017-03-21T14:43:39.630 回答