bboxLonLat static method

GeoBounds<GeoPoint2> bboxLonLat(
  1. double minLon,
  2. double minLat,
  3. double maxLon,
  4. double maxLat,
)

With minimum and maximum pairs of longitude and latitude.

Implementation

static GeoBounds<GeoPoint2> bboxLonLat(
  double minLon,
  double minLat,
  double maxLon,
  double maxLat,
) =>
    GeoBounds<GeoPoint2>.of(
      min: GeoPoint2.lonLat(minLon, minLat),
      max: GeoPoint2.lonLat(maxLon, maxLat),
    );