예제 #1
0
        public static string TileXYToLatLong(MSTileXY tilexy)
        {
            double lat, lon;

            PixelXYToLatLong((int)tilexy.x * 256, (int)tilexy.y * 256, (int)tilexy.level, out lat, out lon);
            return(lat.ToString("F6") + "," + lon.ToString("F6"));
        }
예제 #2
0
파일: TileXY.cs 프로젝트: HPDRC/RasterTile
 public TileXY(MSTileXY mtxy)
 {
     x     = (int)mtxy.x;
     y     = (int)mtxy.y;
     level = mtxy.level;
 }