coverBounds static method

Map<int, List<GeoHash>> coverBounds(
  1. LatLngBounds bounds, {
  2. int maxPrecision = 12,
  3. int threshold = 5,
  4. int bits = 5,
  5. String? alphabet,
})

Gets a Map containing an array of geohashes covering bounds area at each precision.

Implementation

static Map<int, List<GeoHash>> coverBounds(LatLngBounds bounds,
        {int maxPrecision = 12,
        int threshold = 5,
        int bits = 5,
        String? alphabet}) =>
    _GeoHasher.coverBounds(bounds, maxPrecision, threshold, bits, alphabet);