moveCamera method

Future<void> moveCamera(
  1. dynamic cameraUpdate
)

Changes the map camera position.

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

Implementation

Future<void> moveCamera(cameraUpdate) async {
  if (Platform.isIOS) {
    return this.appleController!.moveCamera(cameraUpdate);
  } else if (Platform.isAndroid) {
    return this.googleController!.moveCamera(cameraUpdate);
  }
}