Skip to content

TileCacheGeneratedLayerBaseEventArgs

Namespace: ThinkGeo.Core

Provides data for tile cache generation progress notifications.

public class TileCacheGeneratedLayerBaseEventArgs

Inheritance objectTileCacheGeneratedLayerBaseEventArgs

Properties

Tile

Gets the tile that triggered the notification.

public RasterTile Tile { get; }

Property Value

RasterTile

TotalTileCount

Gets the total number of tiles required to complete the cache.

public int TotalTileCount { get; }

Property Value

int

TilesCompleted

Gets the number of tiles that have been generated.

public int TilesCompleted { get; }

Property Value

int

Constructors

TileCacheGeneratedLayerBaseEventArgs(RasterTile, int, int)

Initializes a new instance of the TileCacheGeneratedLayerBaseEventArgs class.

public TileCacheGeneratedLayerBaseEventArgs(RasterTile tile, int totalTileCount, int tilesCompleted)

Parameters

tile RasterTile
The raster tile that was generated.

totalTileCount int
The total number of tiles that must be generated.

tilesCompleted int
The number of tiles generated so far.