newLatLngZoom static method

MFCameraUpdate newLatLngZoom(
  1. MFLatLng latLng,
  2. double zoom
)

Returns a camera update that moves the camera target to the specified geographical location and zoom level.

Implementation

static MFCameraUpdate newLatLngZoom(MFLatLng latLng, double zoom) {
  return MFCameraUpdate._(
    <Object>['newLatLngZoom', latLng.toJson(), zoom],
  );
}