コード例 #1
0
ファイル: GeoHashUtility.cs プロジェクト: weacw/GeoHash.Net
 public GeoHashUtility(IGeoHashEncoder <TKey> encoder, IGeoHashDecoder <TKey> decoder, IGeoHashMatcher <TKey> matcher)
 {
     Encoder = encoder;
     Decoder = decoder;
     Matcher = matcher;
 }
コード例 #2
0
ファイル: GeoHashMatcher.cs プロジェクト: weacw/GeoHash.Net
 public GeoHashMatcher(IGeoHashEncoder <TKey> encoder)
 {
     _encoder = encoder;
 }