修改传单库中的缩放中心? setZoomAround可以工作,但不能交互

问题描述 投票:1回答:1

我可以使用setZoomAround,但是如何取消onZoom事件中的默认操作?

leaflet zoom
1个回答
0
投票

如果查看传单代码,您将看到无法禁用缩放事件。但是您可以尝试设置一个标志。

zoomaround = false;
function example(){
   zoomaround = true;
   map.setZoomAround(latlng,zoom,options);
   zoomaround = false; //You have to test if this works, because I think the event calling is async and then this line will not work.
}

map.on('zoomstart',function(e){
   if(!zoomaround){
       //default code
   }
});

map.on('zoomend',function(e){
   if(!zoomaround){
       //default code
   }
   zoomaround = false; //Use this line if the line above not working.
});
© www.soinside.com 2019 - 2024. All rights reserved.