moveCamera method

Future<void> moveCamera({
  1. required LatLng latLng,
  2. double? bearing,
  3. double? zoom,
  4. double? tilt,
})

Move the camera to a specific location latLng the location to move the camera to bearing the bearing of the camera

Implementation

Future<void> moveCamera(
    {required LatLng latLng,
    double? bearing,
    double? zoom,
    double? tilt}) async {
  return VietmapNavigationPluginPlatform.instance
      .moveCamera(latLng: latLng, bearing: bearing, zoom: zoom, tilt: tilt);
}