world static method

GeoBounds<GeoPoint2> world()

World bounds (longitude: -180.0 to 180.0, latitude: -90.0 to 90.0).

Implementation

static GeoBounds<GeoPoint2> world() => const GeoBounds<GeoPoint2>.of(
      min: GeoPoint2.lonLat(-180.0, -90.0),
      max: GeoPoint2.lonLat(180.0, 90.0),
    );