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