centerZoomFitBounds method

CenterZoom centerZoomFitBounds(
  1. LatLngBounds bounds,
  2. FitBoundsOptions options
)

Implementation

CenterZoom centerZoomFitBounds(
    LatLngBounds bounds, FitBoundsOptions options) {
  if (!bounds.isValid) {
    throw Exception('Bounds are not valid.');
  }
  return getBoundsCenterZoom(bounds, options);
}