我试图处理旋转和缩放交互。是否可以为创建的所有交互创建一个侦听器DragRotateAndZoom
?
...
interactions: defaultInteractions().extend([
new DragRotateAndZoom()
]),
...
有没有办法使用类似的东西
this.map.on('rotate', (e) => {
console.log(e);
});
或者
this.map.on('zoom', (e) => {
console.log(e);
});
找到了旧版本(7 岁!)的解决方案-> Javascript OpenLayers before zoom event listener