moveStarted method

void moveStarted(
  1. MapEventSource source
)

To be called when a gesture that causes movement starts.

Implementation

void moveStarted(MapEventSource source) {
  _emitMapEvent(
    MapEventMoveStart(
      camera: camera,
      source: source,
    ),
  );
}