コード例 #1
0
ファイル: GeoHashTest.cs プロジェクト: howellfeng/GeoHash
        public void EqualTest2()
        {
            GeoHash hash  = GeoHash.EncodeWithCharacterPrecision(120, 30, 10);
            GeoHash hash2 = GeoHash.EncodeWithCharacterPrecision(120, 30, 10);

            Assert.True(hash.Equals(hash2));
        }