Reputation: 11350
Is it possible to pass the touch event from Ovelay onTap method to the below layer which is in my case mapView? this is becouse I have a context menu on the mapview that I would like to display it.
Best regards,
Upvotes: 1
Views: 224
Reputation: 200150
After you consume the event in your overlay:
mapViewInstance.dispatchTouchEvent(evt);
Upvotes: 2