User Tools

Site Tools


thinkgeo.mapsuite.core.nativeimagetilecache

This is an old revision of the document!


ThinkGeo.MapSuite.Core.NativeImageTileCache

This is the base class for NativeTileCache system which inherits from TileCache class.

Inheritance Hierarchy

Members Summary

Public Constructors

Protected Constructors

NativeImageTileCache

Public Methods

ClearCache

  • Parameters:N/A
  • DeclaringType:TileCache
  • Summary:N/A

DeleteTile

DeleteTiles

Equals

  • Parameters:Object
  • DeclaringType:Object
  • Summary:N/A

GetHashCode

  • Parameters:N/A
  • DeclaringType:Object
  • Summary:N/A

GetTile

  • Parameters:RectangleShape
  • DeclaringType:N/A
  • Summary:This method returns the NativeImageTile corresponding to the tile bounding box passed in.

GetTile

  • Parameters:Int64,Int64
  • DeclaringType:N/A
  • Summary:This method returns the NativeImageTile corresponding to passed in row and column.

GetTiles

  • Parameters:RectangleShape
  • DeclaringType:N/A
  • Summary:This method returns all the NativeImageTiles within the passed in world extent.

GetType

  • Parameters:N/A
  • DeclaringType:Object
  • Summary:N/A

SaveTile

SaveTiles

SaveTiles

ToString

  • Parameters:N/A
  • DeclaringType:Object
  • Summary:N/A

Protected Methods

ClearCacheCore

  • Parameters:N/A
  • DeclaringType:TileCache
  • Summary:N/A

DeleteTileCore

Finalize

  • Parameters:N/A
  • DeclaringType:Object
  • Summary:N/A

GetTileCore

  • Parameters:Int64,Int64
  • DeclaringType:N/A
  • Summary:This abstract method returns the NativeImageTile corresponding to passed in row and column. Each concrete TileCache need to implement this logic to get tile from a row and column.

MemberwiseClone

  • Parameters:N/A
  • DeclaringType:Object
  • Summary:N/A

SaveTileCore

Public Properties

CacheId

  • Return:String
  • Summary:N/A

ImageFormat

JpegQuality

  • Return:Int16
  • Summary:N/A

LoadingTileImage

  • Return:Bitmap
  • Summary:N/A

NoDataTileImage

  • Return:Bitmap
  • Summary:N/A

TileAccessMode

TileMatrix

Protected Properties

Public Events

Public Constructors

Protected Constructors

NativeImageTileCache(String,TileImageFormat,TileMatrix)

This is the constructor of the class.

Remarks

N/A

Parameters

cacheId

  • Type:String
  • Description:This is the cache identifier which marks its difference with other TileCache. imageFormat * Type:TileImageFormat * Description:This is the imageFormate showing what kind of image we are trying to save.

tileMatrix

  • Description:This is the tile matrix system which is used for caculating tiles. Go Back ===== Public Methods ===== === ClearCache() === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== Go Back === DeleteTile(Tile) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== tile * Type:Tile * Description:N/A Go Back === DeleteTiles(RectangleShape) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== worldExtent * Type:RectangleShape * Description:N/A Go Back === Equals(Object) === N/A ==== Remarks ==== N/A Return Value * Return Type:Boolean * Description:N/A ==== Parameters ==== obj * Type:Object * Description:N/A Go Back === GetHashCode() === N/A ==== Remarks ==== N/A Return Value * Return Type:Int32 * Description:N/A ==== Parameters ==== Go Back === GetTile(RectangleShape) === This method returns the NativeImageTile corresponding to the tile bounding box passed in. ==== Remarks ==== N/A Return Value * Return Type:NativeImageTile * Description:Returns the NativeImageTile corresponding to the passed in boundingBox. ==== Parameters ==== tileBoundingBox * Type:RectangleShape * Description:The target boundingBox for the tile to fetch. Go Back === GetTile(Int64,Int64) === This method returns the NativeImageTile corresponding to passed in row and column. ==== Remarks ==== N/A Return Value * Return Type:NativeImageTile * Description:Returns the NativeImageTile corresponding to the passed in row and column. ==== Parameters ==== row * Type:Int64 * Description:The target row for the tile to fetch. column * Type:Int64 * Description:The target column for the tile to fetch. Go Back === GetTiles(RectangleShape) === This method returns all the NativeImageTiles within the passed in world extent. ==== Remarks ==== N/A Return Value * Return Type:Collection<NativeImageTile> * Description:Returns a collection of NativeImageTiles within the passed in worldExtent. ==== Parameters ==== extent * Type:RectangleShape * Description:The target worldExtent will be used to fetch all the NativeImageTiles from. Go Back === GetType() === N/A ==== Remarks ==== N/A Return Value * Return Type:Type * Description:N/A ==== Parameters ==== Go Back === SaveTile(Tile) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== tile * Type:Tile * Description:N/A Go Back === SaveTiles(Bitmap,RectangleShape,Boolean) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== bitmap * Type:Bitmap * Description:N/A bitmapExtent * Type:RectangleShape * Description:N/A saveContainedCellsOnly * Type:Boolean * Description:N/A Go Back === SaveTiles(Bitmap,RectangleShape) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== bitmap * Type:Bitmap * Description:N/A bitmapExtent * Type:RectangleShape * Description:N/A Go Back === ToString() === N/A ==== Remarks ==== N/A Return Value * Return Type:String * Description:N/A ==== Parameters ==== Go Back ===== Protected Methods ===== === ClearCacheCore() === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== Go Back === DeleteTileCore(Tile) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== tile * Type:Tile * Description:N/A Go Back === Finalize() === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== Go Back === GetTileCore(Int64,Int64) === This abstract method returns the NativeImageTile corresponding to passed in row and column. Each concrete TileCache need to implement this logic to get tile from a row and column. ==== Remarks ==== N/A Return Value * Return Type:NativeImageTile * Description:Returns the NativeImageTile corresponding to the passed in row and column. ==== Parameters ==== row * Type:Int64 * Description:The target row for the tile to fetch. column * Type:Int64 * Description:The target column for the tile to fetch. Go Back === MemberwiseClone() === N/A ==== Remarks ==== N/A Return Value * Return Type:Object * Description:N/A ==== Parameters ==== Go Back === SaveTileCore(Tile) === N/A ==== Remarks ==== N/A Return Value * Return Type:Void * Description:N/A ==== Parameters ==== tile * Type:Tile * Description:N/A Go Back ===== Public Properties ===== === CacheId === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:String Go Back === ImageFormat === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:TileImageFormat Go Back === JpegQuality === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:Int16 Go Back === LoadingTileImage === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:Bitmap Go Back === NoDataTileImage === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:Bitmap Go Back === TileAccessMode === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type:TileAccessMode Go Back === TileMatrix === N/A ==== Remarks ==== N/A ==== Return Value ==== Return Type**:TileMatrix

Go Back

Protected Properties

Public Events

thinkgeo.mapsuite.core.nativeimagetilecache.1442486165.txt.gz · Last modified: 2015/09/17 10:36 by admin