wrapLat method

double wrapLat(
  1. double value
)

Implementation

double wrapLat(double value) {
  final min = math.min(latBounds!.item1, latBounds!.item2);
  final max = math.max(latBounds!.item1, latBounds!.item2);
  return _wrap(min, max, value);
}