Exemplo n.º 1
0
        public static TwoGeoHashBoundingBox FromBase32(string base32)
        {
            string bottomLeft = base32.Substring(0, 7);
            string topRight   = base32.Substring(7);

            return(new TwoGeoHashBoundingBox(GeoHash.FromGeohashString(bottomLeft), GeoHash.FromGeohashString(topRight)));
        }