bboxLonLatElev static method

GeoBounds<GeoPoint3> bboxLonLatElev(
  1. double minLon,
  2. double minLat,
  3. double minElev,
  4. double maxLon,
  5. double maxLat,
  6. double maxElev,
)

With minimum and maximum sets of longitude, latitude and elevation.

Implementation

static GeoBounds<GeoPoint3> bboxLonLatElev(
  double minLon,
  double minLat,
  double minElev,
  double maxLon,
  double maxLat,
  double maxElev,
) =>
    GeoBounds<GeoPoint3>.of(
      min: GeoPoint3.lonLatElev(minLon, minLat, minElev),
      max: GeoPoint3.lonLatElev(maxLon, maxLat, maxElev),
    );