SuperMap.Web.Mapping.Tile.Tile C# (CSharp) Method

Tile() public method

public Tile ( int row, int col, double resolution, double resolutions, string url, bool useTransitions ) : System.Globalization
row int
col int
resolution double
resolutions double
url string
useTransitions bool
return System.Globalization
        public Tile(int row, int col, double resolution, double[] resolutions, string url, bool useTransitions)
        {
            Row = row;
            Column = col;
            Resolution = resolution;
            Resolutions = resolutions;

            Url = url;
            UseTransitions = useTransitions;

            Progress = 0;
        }