CameraBounds constructor

CameraBounds(
  1. {required CoordinateBounds bounds,
  2. required double maxZoom,
  3. required double minZoom,
  4. required double maxPitch,
  5. required double minPitch}
)

Implementation

CameraBounds({
  required this.bounds,
  required this.maxZoom,
  required this.minZoom,
  required this.maxPitch,
  required this.minPitch,
});