rotateStarted method

void rotateStarted(
  1. MapEventSource source
)

To be called when a rotation gesture starts.

Implementation

void rotateStarted(MapEventSource source) {
  _emitMapEvent(
    MapEventRotateStart(
      camera: camera,
      source: source,
    ),
  );
}