user836026
user836026

Reputation: 11350

How to pass tap event from overlay (onTap method )to below layer (mapview)

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

Answers (1)

Cristian
Cristian

Reputation: 200150

After you consume the event in your overlay:

mapViewInstance.dispatchTouchEvent(evt);

Upvotes: 2

Related Questions