doubleTapZoomStarted method

void doubleTapZoomStarted(
  1. MapEventSource source
)

To be called when a double tap zoom starts.

Implementation

void doubleTapZoomStarted(MapEventSource source) {
  _emitMapEvent(
    MapEventDoubleTapZoomStart(
      camera: camera,
      source: source,
    ),
  );
}