bugfix popups and tooltips of invisible layers can no loger be activated per mouse
This commit is contained in:
@@ -712,9 +712,13 @@ function toggleCategoryFilter(checkbox) {
|
||||
if (activeFilters.indexOf(cat) !== -1) {
|
||||
layer.setStyle({ opacity: 1, fillOpacity: layer.feature.geometry.type === 'Point' ? 0.9 : 0.25 });
|
||||
if (layer.setRadius) layer.setRadius(8);
|
||||
layer.options.interactive = true;
|
||||
} else {
|
||||
layer.setStyle({ opacity: 0, fillOpacity: 0 });
|
||||
if (layer.setRadius) layer.setRadius(0);
|
||||
layer.options.interactive = false;
|
||||
layer.closePopup();
|
||||
layer.closeTooltip();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user