BoundsRecord typedef

BoundsRecord = ({double maxLat, double maxLon, double minLat, double minLon})

A shorthand for the big annotated record for bounding bounds.

Implementation

typedef BoundsRecord = ({
  double minLat,
  double minLon,
  double maxLat,
  double maxLon,
});