Openlayers3单击外部功能将取消选择所有功能

时间:2015-04-01 17:00:03

标签: openlayers-3

我想继续使用交互的默认切换选项。选择,这样用户一次只能选择一个功能。但是,当用户在功能外部单击时,我不希望它删除当前选定的功能。有没有办法实现这个目标?先感谢您。

1 个答案:

答案 0 :(得分:2)

我能够通过以下方式解决我的问题...

var select = new ol.interaction.Select({
            style: vm.selectedFeatureStyle,
            condition: function (event) {
                if (event.type === 'singleclick') {
                    return vm.map.forEachFeatureAtPixel(event.pixel, function () {
                        return true;
                    });
                }
                return false;
            }
        });