Openlayers 遍历查找交互事件(ol.interaction)

Posted giser-s

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Openlayers 遍历查找交互事件(ol.interaction)相关的知识,希望对你有一定的参考价值。

说明

有时候需要遍历openlayers的交互事件,并根据不同类型进行操作/监控。

解决方案

方法一:实现了找到交互事件中的Select事件,并删除

map.getInteractions().forEach(function (interaction) {
            if (interaction instanceof ol.interaction.Select) {
                map.removeInteraction(interaction);
            }
        });

方法二:其实还有另一种写法,getArray()获取到的是Interactions的数组,可以用操作数组的方式去操作

var selectInteraction = map
        .getInteractions()
        .getArray()
        .find(interaction => {
          return interaction instanceof ol.interaction.Select;
        });
map.removeInteraction(selectInteraction);

以上是关于Openlayers 遍历查找交互事件(ol.interaction)的主要内容,如果未能解决你的问题,请参考以下文章

11openlayers 地图交互

openlayers6结合geoserver实现地图矢量瓦片(附源码下载)

03openlayers 地图事件

在 OpenLayers 3 tileloadstart 事件中停止加载图块

Openlayers - 侧边栏中的复选框事件

OpenLayers.Map的一些特殊事件