fitBounds method

void fitBounds(
  1. double north,
  2. double south,
  3. double east,
  4. double west,
)

Fits the map view to the specified bounds.

north, south, east, west define the bounding box in degrees.

Implementation

void fitBounds(double north, double south, double east, double west) {
  _impl.fitBounds(north, south, east, west);
}