containsBounds method

bool containsBounds(
  1. LatLngBounds other
)

Checks whether the other bounding box is contained inside bounds.

Implementation

bool containsBounds(LatLngBounds other) =>
    other.south >= south &&
    other.north <= north &&
    other.west >= west &&
    other.east <= east;