Skip to content

GeneratingTileMBTilesLayerEventArgs

Namespace: ThinkGeo.Core

Provides tile coordinate data and cancellation support while an MBTiles layer is generating a tile.

public class GeneratingTileMBTilesLayerEventArgs : System.EventArgs

Inheritance objectEventArgsGeneratingTileMBTilesLayerEventArgs

Fields

TileX

Column index of the tile being generated.

public int TileX;

TileY

Row index of the tile being generated.

public int TileY;

ZoomLevel

Zoom level of the tile being generated.

public int ZoomLevel;

Cancel

Gets or sets a value indicating whether the generation should be cancelled.

public bool Cancel;

Constructors

GeneratingTileMBTilesLayerEventArgs()

Initializes a new instance of the GeneratingTileMBTilesLayerEventArgs class.

public GeneratingTileMBTilesLayerEventArgs()

GeneratingTileMBTilesLayerEventArgs(int, int, int)

Initializes a new instance of the GeneratingTileMBTilesLayerEventArgs class with tile coordinates.

public GeneratingTileMBTilesLayerEventArgs(int tileX, int tileY, int zoomLevel)

Parameters

tileX int
Column index of the tile being generated.

tileY int
Row index of the tile being generated.

zoomLevel int
Zoom level of the tile being generated.