Openlayers3关于MouseWheelZoom的禁用

由于使用鼠标滚轮控制地图缩放不可控,所以决定禁用鼠标滚轮事件.代码如下:

1
2
3
4
5
map.getInteractions().forEach(function (interaction) {
if (interaction instanceof ol.interaction.MouseWheelZoom) {
map.removeInteraction(interaction);
}
});