Exemplo n.º 1
0
 public GeoPoint resetFromGeoHash(String geohash) {
   final long hash = GeoHashUtils.mortonEncode(geohash);
   return this.reset(GeoUtils.mortonUnhashLat(hash), GeoUtils.mortonUnhashLon(hash));
 }
Exemplo n.º 2
0
 public final String getGeohash() {
   return GeoHashUtils.stringEncode(lon, lat);
 }