max property

  1. @override
Geographic max
override

The "east-north" geographic position of this bounding box.

For geographic bounding boxes this represents the more northeasterly point in relation to min that represents the most southwesterly point. When a bounding box spans the antimeridian, it's possible that "min-longitude" (west) is larger than "max-longitude" (east) as a number. See also RFC 7946 chapter 5 about bounding boxes in GeoJSON for reference.

Implementation

@override
Geographic get max => Geographic(
      lon: _east,
      lat: _north,
      elev: _maxElev,
      m: _maxM,
    );