在iclient for openlayers中通过layerswitcher去控制之后追加的专题图的显隐
这个专题图在追加时设置了
themeSource.on('mousemove', function (e) { 功能 })
然后追加了
var pointerInteraction = new ol.interaction.Pointer({
handleMoveEvent: function (event) {
themeSource.fire('mousemove', event);
}
});
map.addInteraction(pointerInteraction);
实现了在鼠标移动到专题图的点上的时候自动显示属性的功能,但通过layerswitcher功能隐藏这个图层的显示后,这个显示属性的功能仍在生效。
请问有没有什么办法能够监控这个图层的显示或隐藏,显示时让他添加上述功能,隐藏时让他关闭上述功能?