I have a use case where I need to detect whether the map - but not a symbol - was clicked. As the onSymbolTapped event also propagates the event to the underlying map layer, the onMapClick event is also called when a symbol is clicked. I want this behaviour:
- when I click on the map layer, then my onMapClick callback is called
- when I click on a custom symbol, then only my custom onSymbolTapped callback is called
Is there a way to achieve this with the existing release?