I would like to detect a double tap event on a pin on Google Maps. I currently detect a single tap like this:
foreach (var pin in map.Pins)
{
pin.MarkerClicked -= MapListPage_MarkerClicked;
pin.MarkerClicked += MapListPage_MarkerClicked;
}
I have tried looking at the docs, but couldn’t find anything. Is there any way of detecting double tap events on Google Map pins?