geoHash property

String geoHash

Returns a GeoHash that contains latitude and longitude and has a range of radiusKm.

latitudelongitudeが含まれ、radiusKmの範囲を持つGeoHashを返します。

Implementation

String get geoHash {
  return _util.encode(
    latitude,
    longitude,
    _GeoUtility.setPrecision(radiusKm),
  );
}