User Tools

Site Tools


api:thinkgeo.mapsuite.layers.bitmaptilecache

ThinkGeo.MapSuite.Layers.BitmapTileCache

Inheritance Hierarchy

Members Summary

Public Constructors

Protected Constructors

BitmapTileCache(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
    • 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.

Public Methods

GetTile(RectangleShape)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns the BitmapTile corresponding to the passed in boundingBox.
Parameters
  • tileBoundingBox
    • Description:The target boundingBox for the tile to fetch.

GetTile(Int64,Int64)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns the BitmapTile 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.

GetTiles(RectangleShape)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Collection<BitmapTile>
  • Description:Returns a collection of BitmapTiles within the passed in worldExtent.
Parameters
  • worldExtent
    • Description:The target worldExtent will be used to fetch all the BitmapTiles from.

GetHigherScaleTile(RectangleShape,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns the higher scale(higher zoomLevel) bitmap tile.
Parameters
  • tileBoundingBox
    • Description:The parameter specifies the current tile bounding box.
  • tileScale
    • Type:Double
    • Description:This parameter specifies the current tile scale.

ToString()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

SaveTile(Tile)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • tile
    • Type:Tile
    • Description:N/A

SaveTiles(GeoImage,RectangleShape,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • saveContainedCellsOnly
    • Type:Boolean
    • Description:N/A

SaveTiles(GeoImage,RectangleShape)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

DeleteTiles(RectangleShape)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

DeleteTile(Tile)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • tile
    • Type:Tile
    • Description:N/A

ClearCache()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Equals(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Type
  • Description:N/A
Parameters

Protected Methods

GetTileCore(Int64,Int64)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns the BitmapTile 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.

GetHigherScaleTileCore(RectangleShape,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns the higher scale(higher zoomLevel) bitmap tile.
Parameters
  • tileBoundingBox
    • Description:The parameter specifies the current tile bounding box.
  • tileScale
    • Type:Double
    • Description:This parameter specifies the current tile scale.

MergeBitmaps(IEnumerable<BitmapTile>,Double)

  • N/A
Remarks
  • N/A
Return Value
  • Description:Returns a merged bitmap tile.
Parameters
  • tilesToMerge
    • Type:IEnumerable<BitmapTile>
    • Description:The collection of tiles to be mereged.
  • scale
    • Type:Double
    • Description:The target scale for result mereged bitmap tile.

OnGottenCacheImage(GottenCacheImageBitmapTileCacheEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnGettingCacheImage(GettingCacheImageBitmapTileCacheEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

ClearCacheCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

SaveTileCore(Tile)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • tile
    • Type:Tile
    • Description:N/A

DeleteTileCore(Tile)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • tile
    • Type:Tile
    • Description:N/A

Finalize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

MemberwiseClone()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

Public Properties

TileMatrix

  • N/A
Remarks
  • N/A
Return Value

TileAccessMode

  • N/A
Remarks
  • N/A
Return Value

NoDataTileImage

  • N/A
Remarks
  • N/A
Return Value

LoadingTileImage

  • N/A
Remarks
  • N/A
Return Value

ImageFormat

  • N/A
Remarks
  • N/A
Return Value

JpegQuality

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int16

CacheId

  • N/A
Remarks
  • N/A
Return Value
  • Type:String

Protected Properties

Public Events

GottenCacheImage

  • N/A
Remarks
  • N/A

Event Arguments:GottenCacheImageBitmapTileCacheEventArgs

GettingCacheImage

  • N/A
Remarks
api/thinkgeo.mapsuite.layers.bitmaptilecache.txt · Last modified: 2017/01/11 06:51 (external edit)