moveCamera method
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);
}