zoomOut static method

dynamic zoomOut()

Returns a camera update that zooms the camera out, bringing the camera further away from the surface of the Earth.

Equivalent to the result of calling zoomBy(-1.0).

Implementation

static zoomOut() {
  if (Platform.isIOS) {
    return appleMaps.CameraUpdate.zoomOut();
  } else if (Platform.isAndroid) {
    return googleMaps.CameraUpdate.zoomOut();
  }
}