GeoHash constructor
GeoHash(
- String _geohash
Constructor given a String geohash
Implementation
GeoHash(this._geohash)
: _neighbors = GeoHasher().neighbors(_geohash),
_longitude = GeoHasher().decode(_geohash)[0],
_latitude = GeoHasher().decode(_geohash)[1];