GeoBounds<T extends GeoPoint> constructor

GeoBounds<T extends GeoPoint>(
  1. Bounds<T> source
)

Create geographic bounds by copying min and max points from source.

Implementation

GeoBounds(Bounds<T> source) : super(min: source.min, max: source.max);