Class TileInfo
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public class TileInfo
Constructors
TileInfo(Int32, Int32, Int32, Byte[], Rectangle)
Initializes a new instance of the TileInfo class.
Declaration
public TileInfo(int tileX, int tileY, int zoomLevel, byte[] content, Rectangle drawRect)
Parameters
System.Int32
tileX
The tile x number. |
System.Int32
tileY
The tile y number. |
System.Int32
zoomLevel
The zoom level. |
System.Byte[]
content
The content. |
System.Drawing.Rectangle
drawRect
The draw rect. |
Properties
Content
Gets or sets the content of the tile.
Declaration
public byte[] Content { get; set; }
Property Value
System.Byte[]
The content. |
DrawRect
Gets or sets the draw rect.
Declaration
public Rectangle DrawRect { get; set; }
Property Value
System.Drawing.Rectangle
The draw rect. |
Image
Gets or sets the image.
Declaration
public Image Image { get; set; }
Property Value
System.Drawing.Image
The image. |
Quadkey
Gets the quadkey of the tile.
Declaration
public string Quadkey { get; }
Property Value
System.String
The quadkey. |
TileX
Gets the tile x number.
Declaration
public int TileX { get; }
Property Value
System.Int32
The tile x number. |
TileY
Gets the tile y number.
Declaration
public int TileY { get; }
Property Value
System.Int32
The tile y number. |
ZoomLevel
Gets the zoom level.
Declaration
public int ZoomLevel { get; }
Property Value
System.Int32
The zoom level. |