Openlayers3关于MouseWheelZoom的禁用 发表于 2017-06-02 更新于 2023-02-11 由于使用鼠标滚轮控制地图缩放不可控,所以决定禁用鼠标滚轮事件.代码如下: 12345map.getInteractions().forEach(function (interaction) { if (interaction instanceof ol.interaction.MouseWheelZoom) { map.removeInteraction(interaction); }});