Since #565 landed in 3.3.4, the original map layer doesn't capture clicks anymore
const map = this.mapRef.getMap();
map.on('click', e => {
console.log(e);
// nothing gets logged
});
This makes it impossible to use certain features, such as handling clicks on clusters for example.
Is there a way to get the clicks to be passed to the original map layer?
Since #565 landed in 3.3.4, the original map layer doesn't capture clicks anymore
This makes it impossible to use certain features, such as handling clicks on clusters for example.
Is there a way to get the clicks to be passed to the original map layer?