New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.RadMap.dll

Syntax:

C#
public class TileInfo

Inheritance: objectTileInfo

Constructors

Initializes a new instance of the TileInfo class.

C#
public TileInfo(int tileX, int tileY, int zoomLevel, byte[] content, Rectangle drawRect)
Parameters:tileXint

The tile x number.

tileYint

The tile y number.

zoomLevelint

The zoom level.

contentbyte[]

The content.

drawRectRectangle

The draw rect.

Properties

Gets or sets the content of the tile.

C#
public byte[] Content { get; set; }
Property Value:

The content.

Gets or sets the draw rect.

C#
public Rectangle DrawRect { get; set; }
Property Value:

The draw rect.

Gets or sets the image.

C#
public Image Image { get; set; }
Property Value:

The image.

Gets the quadkey of the tile.

C#
public string Quadkey { get; }
Property Value:

The quadkey.

Gets the tile x number.

C#
public int TileX { get; }
Property Value:

The tile x number.

Gets the tile y number.

C#
public int TileY { get; }
Property Value:

The tile y number.

Gets the zoom level.

C#
public int ZoomLevel { get; }
Property Value:

The zoom level.