moveCamera method

Future<void> moveCamera(
  1. CameraUpdate cameraUpdate, {
  2. required int mapId,
})

Changes the map camera position.

The returned Future completes after the change has been made on the platform side.

Implementation

Future<void> moveCamera(
  CameraUpdate cameraUpdate, {
  required int mapId,
}) {
  throw UnimplementedError('moveCamera() has not been implemented.');
}