Bounds constructor

Bounds({
  1. double minlat = 0.0,
  2. double minlon = 0.0,
  3. double maxlat = 0.0,
  4. double maxlon = 0.0,
})

Construct a new Bounds with rect minlat, minlon, maxlat, maxlon.

Implementation

Bounds(
    {this.minlat = 0.0,
    this.minlon = 0.0,
    this.maxlat = 0.0,
    this.maxlon = 0.0});