Jean-Marc Viglino
Jean-Marc Viglino
@Siedlerchr fixed duplicated extension (there was some more)
I've added `pointer-events: none;` to prevent interactions
Have you looked at the [LayerSwitcher with filter example](https://viglino.github.io/ol-ext/examples/control/map.switcher.filter.html) to customize the LayerSwitcher?
Use an overlay to place an HTML element on the map at coords: https://openlayers.org/en/latest/apidoc/module-ol_Overlay-Overlay.html
👍 examples still use deprecated options...
The last ol version (v7) introduce some breaking changes and ol-ext is moving to ES6 class definition to be compatible (see https://github.com/Viglino/ol-ext/issues/839) Meanwhile some bugs may appear till all classes...
Search control is waiting a source not a layer (pointLayer)... Use `pointLayer.getSource()` instead: ```javascript var search = new ol.control.SearchFeature({ source: pointLayer.getSource(), getTitle: function(feature) { return feature.get('name'); } }); ```
ol-ext Graticule is a control that is drawn over the map. You can use Openlayers [Graticule layer](https://openlayers.org/en/latest/examples/graticule.html) to place it in the layer list with a z-index.
Maybe you can try to set a style with alpha on line style color (` rgba(0,0,0,0.3)`) to soften the result...