In OpenLayers 6...
I'm not familiar with the thing, but... How can I iterate through all features on my layer with the title "firmenGeoJSON" and hide or show some of them with specific property "name"?
Thank you...
let myLayers = map.getAllLayers();
myLayers.forEach(function(layer) {
if (layer.getProperties()['title'] == 'firmenGeoJSON') {
console.log('found and hide');
//??????????
};
});