3

It take a second before didTapMarker is called. Same with didTapAtCoordinate method.

I have a project that contains only google map and two pins in it. I try to run it on iOS9 and iOS10, same results. When I add a button it works properly.

Looks like it's trouble with a map. How to fix that?

Dmitry L.
  • 128
  • 11

1 Answers1

3

How big is the delay? I've seen several cases where a small delay was caused by the device waiting to check if it is a single tap (didTapSomething) or double tap to zoom.

As stated by Nazir, Can we get some code?

Community
  • 1
  • 1
Faegy
  • 942
  • 1
  • 12
  • 29
  • Delay is something near 0.7 second. Issue can be solved by disabling zoom gesture in the map settings. So looks like you right. But is there any ways to disable only double tap not pinch gesture? – Dmitry L. Dec 20 '16 at 12:52
  • I don't think this is possible but you can always add in a corner of your map two button (`+` and `-`) to allow zooming by tapping those. – Faegy Dec 20 '16 at 13:01