javascript – 是否有在OpenLayers 3中选择功能的事件?

前端之家收集整理的这篇文章主要介绍了javascript – 是否有在OpenLayers 3中选择功能的事件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
http://ol3js.org/en/master/examples/select-features.html

鉴于上面的例子,当选择功能时,有什么扩展点可以用于挂钩?

解决方法

在地图上触发单击事件时,您可以将预合成事件绑定到图层.从这里,您可以在选择的互动上发送更改事件.
yourmap.on('singleclick',function(event)){
    layer.once('precompose',function(event){
        yourSelectInteraction.dispatchChangeEvent();
    }
}

yourSelectInteraction.on('change',function(){
    //Do stuff with your selected features here
}
原文链接:https://www.f2er.com/js/150678.html

猜你在找的JavaScript相关文章