Esempio n. 1
0
 public GeoHashUtility(IGeoHashEncoder <TKey> encoder, IGeoHashDecoder <TKey> decoder, IGeoHashMatcher <TKey> matcher)
 {
     Encoder = encoder;
     Decoder = decoder;
     Matcher = matcher;
 }
Esempio n. 2
0
 public GeoHashMatcher(IGeoHashEncoder <TKey> encoder)
 {
     _encoder = encoder;
 }