GottenTileFileVectorTileCacheEventArgs¶
Namespace: ThinkGeo.Core
Provides data for events raised after a cached vector-tile file has been read.
public class GottenTileFileVectorTileCacheEventArgs : System.EventArgs
Inheritance object → EventArgs → GottenTileFileVectorTileCacheEventArgs
Properties¶
Tile¶
Gets or sets the cached vector tile associated with the event.
public VectorTile Tile { get; set; }
Property Value¶
Constructors¶
GottenTileFileVectorTileCacheEventArgs()¶
Initializes a new instance of the GottenTileFileVectorTileCacheEventArgs class.
public GottenTileFileVectorTileCacheEventArgs()
GottenTileFileVectorTileCacheEventArgs(VectorTile)¶
Initializes a new instance of the GottenTileFileVectorTileCacheEventArgs class for the specified tile.
public GottenTileFileVectorTileCacheEventArgs(VectorTile tile)
Parameters¶
tile VectorTile
The tile that was retrieved from the cache.