在Google Maps API V3中使用fitBounds()后使用setZoom() [英] Using setZoom() after using fitBounds() with Google Maps API V3

查看:232
本文介绍了在Google Maps API V3中使用fitBounds()后使用setZoom()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用fitBounds()在我的地图上设置缩放级别,也包括当前显示的所有标记。但是,当我只有一个标记可见时,缩放级别为100%(...我认为哪个缩放级别20 ...)。但是,我不希望它被放大,所以用户可以调整标记的位置而不必缩小。

I'm using fitBounds() to set the zoom level on my map too include all the markers currently displayed. However, when I have only one marker visible, the zoom level is 100% (... which zoom level 20 I think...). However, I don't want it to be that far zoomed in so the user can adjust the position of the marker without having to zoom out.

我有以下代码:

I have the following code:

var marker = this.map.createMarker(view.latlng, this.markerNumber);
this.map.bounds.extend(view.latlng);
this.map.map.setCenter(this.map.bounds.getCenter());
this.map.map.fitBounds(this.map.bounds);
if (this.markerNumber === 1) {
  this.map.map.setZoom(16);
}
this.markerNumber++;

其中this.map.bounds之前定义为:

where this.map.bounds was previously defined as:

this.map.bounds = new google.maps.LatLngBounds();

然而,我遇到的问题是行 this.map。如果我使用 this.map.map.fitBounds(this.map.bounds); ,map.setZoom(16); 不起作用。然而,我知道这行代码是正确的,因为当我注释掉fitBound()行时,setZoom()神奇地开始运行。

However, the problem I am having is that the line this.map.map.setZoom(16); doesn't work if I use this.map.map.fitBounds(this.map.bounds);, however, I know that line of code is correct because when I comment out the fitBound() line, the setZoom() magically starts functioning.

任何想法如何解决这个问题?我想设置一个maxZoom级别作为替代,如果我不能得到这个工作。

Any ideas how I resolve this? I'm thinking of setting a maxZoom level as an alternative if I can't get this working.

推荐答案

好吧,已经明白了。显然,fitbounds()是异步发生的,因此在设置缩放工作之前,您必须等待 bounds_changed 事件。

Alright, I've figured it out. Apparently, the fitbounds() happens asynchronously, so you have to wait for a bounds_changed event before setting zoom works.

map = this.map.map;

map.fitBounds(this.map.bounds);
zoomChangeBoundsListener = 
    google.maps.event.addListenerOnce(map, 'bounds_changed', function(event) {
        if (this.getZoom()){
            this.setZoom(16);
        }
});
setTimeout(function(){google.maps.event.removeListener(zoomChangeBoundsListener)}, 2000);

更新:请参阅@ Nequin的答案,使用 addListenerOnce 为更好的解决方案,不需要超时。

Update: See @Nequin's answer using addListenerOnce for a better solution that doesn't require a timeout.

这篇关于在Google Maps API V3中使用fitBounds()后使用setZoom()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆