This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
thinkgeo.mapsuite.core.bitmaptilecache [2015/08/20 03:08] 127.0.0.1 external edit |
thinkgeo.mapsuite.core.bitmaptilecache [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.Core.BitmapTileCache ====== | ====== ThinkGeo.MapSuite.Core.BitmapTileCache ====== | ||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
- | |||
- | <!-- Class --> | ||
This is the base class for BitmapTileCache system which inherits from TileCache class. | This is the base class for BitmapTileCache system which inherits from TileCache class. | ||
- | === Remarks === | ||
- | TileCahce system is very efficient in improving the performance of application, especially when large data or remote server images are included. | ||
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
- | *System.Object | + | *System.Object |
- | **[[ThinkGeo.MapSuite.Core.TileCache]] | + | *ThinkGeo.MapSuite.Core.TileCache |
- | ***[[ThinkGeo.MapSuite.Core.BitmapTileCache]] | + | ***ThinkGeo.MapSuite.Core.BitmapTileCache** |
- | ****[[ThinkGeo.MapSuite.Core.EncryptedFileBitmapTileCache]] | + | *[[ThinkGeo.MapSuite.Core.FileBitmapTileCache]] |
- | ****[[ThinkGeo.MapSuite.Core.FileBitmapTileCache]] | + | *[[ThinkGeo.MapSuite.Core.InMemoryBitmapTileCache]] |
- | ****[[ThinkGeo.MapSuite.Core.InMemoryBitmapTileCache]] | + | |
===== Members Summary ===== | ===== Members Summary ===== | ||
==== Public Constructors ==== | ==== Public Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | ||
- | |||
==== Protected Constructors ==== | ==== Protected Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:ProtectedMethod.gif|}} BitmapTileCache(String,TileImageFormat,TileMatrix) ** |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#BitmapTileCache(String, TileImageFormat, TileMatrix)|BitmapTileCache]] | String, [[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]], [[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]] | | This is the constructor of the class. | | + | |
+ | * //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:[[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]] | ||
+ | * Description:This is the imageFormate showing what kind of image we are trying to save. | ||
+ | |||
+ | * //tileMatrix// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]] | ||
+ | * Description:This is the tile matrix system which is used for caculating tiles. | ||
+ | <div newline></div> | ||
==== Public Methods ==== | ==== Public Methods ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} GetTile(RectangleShape) ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ClearCache()|ClearCache]] | | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This method will clear all the tiles in the tileCache. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#DeleteTile(Tile)|DeleteTile]] | [[ThinkGeo.MapSuite.Core.Tile|Tile]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This method will delete the target tile passed in. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#DeleteTiles(RectangleShape)|DeleteTiles]] | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This method will delete the tiles within the passed in worldExtent. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Equals(Object)|Equals]] | Object | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHashCode()|GetHashCode]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHigherScaleTile(RectangleShape, Double)|GetHigherScaleTile]] | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]], Double | | This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetTile(RectangleShape)|GetTile]] | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | | This method returns the BitmapTile corresponding to the tile bounding box passed in. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetTile(Int64, Int64)|GetTile]] | Int64, Int64 | | This method returns the BitmapTile corresponding to passed in row and column. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetTiles(RectangleShape)|GetTiles]] | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | | This method returns all the BitmapTiles within the passed in world extent, some of which may not has bitmap. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetType()|GetType]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#SaveTile(Tile)|SaveTile]] | [[ThinkGeo.MapSuite.Core.Tile|Tile]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This method will save the target tile passed in. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#SaveTiles(Bitmap, RectangleShape, Boolean)|SaveTiles]] | Bitmap, [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]], Boolean | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#SaveTiles(Bitmap, RectangleShape)|SaveTiles]] | Bitmap, [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This method will save the bitmap with its extent attached into tiles. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToString()|ToString]] | | Object | | | + | |
- | ==== Protected Methods ==== | + | * //This method returns the BitmapTile corresponding to the tile bounding box passed in.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#ClearCacheCore()|ClearCacheCore]] | | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This abstract method will clear all the tiles in the tileCache, for each sub TileCache class must implement this method. | | + | * //N/A// |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#DeleteTileCore(Tile)|DeleteTileCore]] | [[ThinkGeo.MapSuite.Core.Tile|Tile]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This abstract method will delete the target tile passed in, for each sub TileCache class must implement this method. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#Finalize()|Finalize]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#GetHigherScaleTileCore(RectangleShape, Double)|GetHigherScaleTileCore]] | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]], Double | | This method is virtual and can be overriden by its sub classes. This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#GetTileCore(Int64, Int64)|GetTileCore]] | Int64, Int64 | | This abstract method returns the BitmapTile corresponding to passed in row and column. Each concrete TileCache need to implement this logic to get tile from a row and column. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MemberwiseClone()|MemberwiseClone]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MergeBitmaps(IEnumerable<BitmapTile>, Double)|MergeBitmaps]] | IEnumerable<[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]>, Double | | This method will merege the passed in bitmap tiles into a larege bitmap tile. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnGettingCacheImage(GettingCacheImageBitmapTileCacheEventArgs)|OnGettingCacheImage]] | [[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]] | | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnGottenCacheImage(GottenCacheImageBitmapTileCacheEventArgs)|OnGottenCacheImage]] | [[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]] | | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#SaveTileCore(Tile)|SaveTileCore]] | [[ThinkGeo.MapSuite.Core.Tile|Tile]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This abstract method will save the target tile passed in, for each sub TileCache class must implement this method. | | + | |
- | ==== Public Properties ==== | + | == Return Value == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#CacheId|CacheId]] | String | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | Gets or sets the id of the TileCache. | | + | * Description:Returns the BitmapTile corresponding to the passed in boundingBox. |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#ImageFormat|ImageFormat]] | [[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | Gets or sets the tile image format. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#JpegQuality|JpegQuality]] | Int16 | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | Gets or sets the Jpeg quality , this property only take effects when setting the ImageFormat to Jpeg. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#LoadingTileImage|LoadingTileImage]] | Bitmap | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This property returns back a preset image showing the Tile is loading. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#NoDataTileImage|NoDataTileImage]] | Bitmap | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | This property returns back a preset image showing the tile data is missing. | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#TileAccessMode|TileAccessMode]] | [[ThinkGeo.MapSuite.Core.TileAccessMode|TileAccessMode]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | Gets or sets the Mode for the TileCache access the tiles. The Default value is ReadAddDelete | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#TileMatrix|TileMatrix]] | [[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]] | [[ThinkGeo.MapSuite.Core.TileCache|TileCache]] | Gets or sets the TileMatrix which is used in caculation for tiles. | | + | |
- | ==== Protected Properties ==== | + | == Parameters == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * //tileBoundingBox// |
+ | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | ||
+ | * Description:The target boundingBox for the tile to fetch. | ||
- | ==== Public Events ==== | + | <div newline></div> |
- | ^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} GetTile(Int64,Int64) ** |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#GettingCacheImage|GettingCacheImage]] | [[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]] | | | | + | |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#GottenCacheImage|GottenCacheImage]] | [[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]] | | | | + | |
- | ===== Public Constructors ===== | + | * //This method returns the BitmapTile corresponding to passed in row and column.// |
- | ===== Protected Constructors ===== | + | == Remarks == |
- | ==== BitmapTileCache(String, TileImageFormat, TileMatrix) ==== | + | * //N/A// |
- | This is the constructor of the class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | | cacheId | String<!-- System.String --> | This is the cache identifier which marks its difference with other TileCache. | | + | |
- | | imageFormat | [[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]]<!-- ThinkGeo.MapSuite.Core.TileImageFormat --> | This is the imageFormate showing what kind of image we are trying to save. | | + | |
- | | tileMatrix | [[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]]<!-- ThinkGeo.MapSuite.Core.TileMatrix --> | This is the tile matrix system which is used for caculating tiles. | | + | |
- | [[#Protected Constructors|Go Back]] | + | == Return Value == |
- | ===== Public Methods ===== | + | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] |
- | ==== ClearCache() ==== | + | * Description:Returns the BitmapTile corresponding to the passed in row and column. |
- | This method will clear all the tiles in the tileCache. | + | |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //row// |
+ | * Type:Int64 | ||
+ | * Description:The target row for the tile to fetch. | ||
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //column// |
- | [[#Public Methods|Go Back]] | + | * Type:Int64 |
- | ==== DeleteTile(Tile) ==== | + | * Description:The target column for the tile to fetch. |
- | This method will delete the target tile passed in. | + | |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} GetTiles(RectangleShape) ** |
- | | tile | [[ThinkGeo.MapSuite.Core.Tile|Tile]]<!-- ThinkGeo.MapSuite.Core.Tile --> | The target tile to be deleted. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //This method returns all the BitmapTiles within the passed in world extent, some of which may not has bitmap.// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== DeleteTiles(RectangleShape) ==== | + | * //N/A// |
- | This method will delete the tiles within the passed in worldExtent. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Collection<[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]> |
- | | worldExtent | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The target extent to delete all tiles within it. | | + | * Description:Returns a collection of BitmapTiles within the passed in worldExtent. |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Parameters == |
- | [[#Public Methods|Go Back]] | + | * //worldExtent// |
- | ==== Equals(Object) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] |
- | === Return Value === | + | * Description:The target worldExtent will be used to fetch all the BitmapTiles from. |
- | ^ Return Type ^ Description ^ | + | |
- | | Boolean<!-- System.Boolean --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} GetHigherScaleTile(RectangleShape,Double) ** |
- | | obj | Object<!-- System.Object --> | | | + | |
- | <!-- System.Object --> | + | * //This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut.// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== GetHashCode() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Int32<!-- System.Int32 --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] |
+ | * Description:Returns the higher scale(higher zoomLevel) bitmap tile. | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Public Methods|Go Back]] | + | * //tileBoundingBox// |
- | ==== GetHigherScaleTile(RectangleShape, Double) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] |
- | This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut. | + | * Description:The parameter specifies the current tile bounding box. |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns the higher scale(higher zoomLevel) bitmap tile. | | + | |
- | === Parameters === | + | * //tileScale// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Double |
- | | tileBoundingBox | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The parameter specifies the current tile bounding box. | | + | * Description:This parameter specifies the current tile scale. |
- | | tileScale | Double<!-- System.Double --> | This parameter specifies the current tile scale. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} SaveTile(Tile) ** |
- | ==== GetTile(RectangleShape) ==== | + | |
- | This method returns the BitmapTile corresponding to the tile bounding box passed in. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns the BitmapTile corresponding to the passed in boundingBox. | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | tileBoundingBox | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The target boundingBox for the tile to fetch. | | + | * //N/A// |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== GetTile(Int64, Int64) ==== | + | * Description:N/A |
- | This method returns the BitmapTile corresponding to passed in row and column. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns the BitmapTile corresponding to the passed in row and column. | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //tile// |
- | | row | Int64<!-- System.Int64 --> | The target row for the tile to fetch. | | + | * Type:[[ThinkGeo.MapSuite.Core.Tile|Tile]] |
- | | column | Int64<!-- System.Int64 --> | The target column for the tile to fetch. | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} SaveTiles(Bitmap,RectangleShape,Boolean) ** |
- | ==== GetTiles(RectangleShape) ==== | + | |
- | This method returns all the BitmapTiles within the passed in world extent, some of which may not has bitmap. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Collection<[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.Core.BitmapTile} --> | Returns a collection of BitmapTiles within the passed in worldExtent. | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | worldExtent | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The target worldExtent will be used to fetch all the BitmapTiles from. | | + | * //N/A// |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== GetType() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Type<!-- System.Type --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //bitmap// |
+ | * Type:Bitmap | ||
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | * //bitmapExtent// |
- | [[#Public Methods|Go Back]] | + | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] |
- | ==== SaveTile(Tile) ==== | + | * Description:N/A |
- | This method will save the target tile passed in. | + | |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //saveContainedCellsOnly// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Boolean |
- | | tile | [[ThinkGeo.MapSuite.Core.Tile|Tile]]<!-- ThinkGeo.MapSuite.Core.Tile --> | The target tile to be saved. | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} SaveTiles(Bitmap,RectangleShape) ** |
- | ==== SaveTiles(Bitmap, RectangleShape, Boolean) ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | bitmap | Bitmap<!-- System.Drawing.Bitmap --> | | | + | * //N/A// |
- | | bitmapExtent | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | | | + | |
- | | saveContainedCellsOnly | Boolean<!-- System.Boolean --> | | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== SaveTiles(Bitmap, RectangleShape) ==== | + | * Description:N/A |
- | This method will save the bitmap with its extent attached into tiles. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //bitmap// |
- | | bitmap | Bitmap<!-- System.Drawing.Bitmap --> | The target bitmap to be saved into tiles. | | + | * Type:Bitmap |
- | | bitmapExtent | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The target extent for the bitmap. | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //bitmapExtent// |
- | [[#Public Methods|Go Back]] | + | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] |
- | ==== ToString() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | String<!-- System.String --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} DeleteTiles(RectangleShape) ** |
- | <!-- System.Object --> | + | * //N/A// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ===== Protected Methods ===== | + | * //N/A// |
- | ==== ClearCacheCore() ==== | + | |
- | This abstract method will clear all the tiles in the tileCache, for each sub TileCache class must implement this method. | + | |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
+ | * Description:N/A | ||
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //worldExtent// |
- | ==== DeleteTileCore(Tile) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] |
- | This abstract method will delete the target tile passed in, for each sub TileCache class must implement this method. | + | * Description:N/A |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} DeleteTile(Tile) ** |
- | | tile | [[ThinkGeo.MapSuite.Core.Tile|Tile]]<!-- ThinkGeo.MapSuite.Core.Tile --> | The target tile to be deleted. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== Finalize() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //tile// |
- | ==== GetHigherScaleTileCore(RectangleShape, Double) ==== | + | * Type:[[ThinkGeo.MapSuite.Core.Tile|Tile]] |
- | This method is virtual and can be overriden by its sub classes. This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut. | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns the higher scale(higher zoomLevel) bitmap tile. | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} ClearCache() ** |
- | | tileBoundingBox | [[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]]<!-- ThinkGeo.MapSuite.Core.RectangleShape --> | The parameter specifies the current tile bounding box. | | + | |
- | | tileScale | Double<!-- System.Double --> | This parameter specifies the current tile scale. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== GetTileCore(Int64, Int64) ==== | + | * //N/A// |
- | This abstract method returns the BitmapTile corresponding to passed in row and column. Each concrete TileCache need to implement this logic to get tile from a row and column. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns the BitmapTile corresponding to the passed in row and column. | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
- | | row | Int64<!-- System.Int64 --> | The target row for the tile to fetch. | | + | * Description:N/A |
- | | column | Int64<!-- System.Int64 --> | The target column for the tile to fetch. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | <div newline></div> |
- | ==== MemberwiseClone() ==== | + | ** {{wiki:PublicMethod.gif|}} ToString() ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Object<!-- System.Object --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- System.Object --> | + | == Return Value == |
- | [[#Protected Methods|Go Back]] | + | * Type:String |
- | ==== MergeBitmaps(IEnumerable<BitmapTile>, Double) ==== | + | * Description:N/A |
- | This method will merege the passed in bitmap tiles into a larege bitmap tile. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]<!-- ThinkGeo.MapSuite.Core.BitmapTile --> | Returns a merged bitmap tile. | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
- | | tilesToMerge | IEnumerable<[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.Core.BitmapTile} --> | The collection of tiles to be mereged. | | + | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** |
- | | scale | Double<!-- System.Double --> | The target scale for result mereged bitmap tile. | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== OnGettingCacheImage(GettingCacheImageBitmapTileCacheEventArgs) ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Boolean |
- | | e | [[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]]<!-- ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs --> | | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //obj// |
- | ==== OnGottenCacheImage(GottenCacheImageBitmapTileCacheEventArgs) ==== | + | * Type:Object |
- | === Return Value === | + | * Description:N/A |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** |
- | | e | [[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]]<!-- ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs --> | | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== SaveTileCore(Tile) ==== | + | * //N/A// |
- | This abstract method will save the target tile passed in, for each sub TileCache class must implement this method. | + | |
- | === Remarks === | + | |
- | This method will not take effect when the ReadOnly is set to true. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Int32 |
- | | tile | [[ThinkGeo.MapSuite.Core.Tile|Tile]]<!-- ThinkGeo.MapSuite.Core.Tile --> | The target tile to be saved. | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | <div newline></div> |
- | ===== Public Properties ===== | + | ** {{wiki:PublicMethod.gif|}} GetType() ** |
- | ==== CacheId ==== | + | |
- | Gets or sets the id of the TileCache. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | String<!-- System.String --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //N/A// |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== ImageFormat ==== | + | * //N/A// |
- | Gets or sets the tile image format. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]]<!-- ThinkGeo.MapSuite.Core.TileImageFormat --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Return Value == |
- | [[#Public Properties|Go Back]] | + | * Type:Type |
- | ==== JpegQuality ==== | + | * Description:N/A |
- | Gets or sets the Jpeg quality , this property only take effects when setting the ImageFormat to Jpeg. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Int16<!-- System.Int16 --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Parameters == |
- | [[#Public Properties|Go Back]] | + | <div newline></div> |
- | ==== LoadingTileImage ==== | + | ==== Protected Methods ==== |
- | This property returns back a preset image showing the Tile is loading. | + | ** {{wiki:ProtectedMethod.gif|}} GetTileCore(Int64,Int64) ** |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Bitmap<!-- System.Drawing.Bitmap --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | * //This abstract method returns the BitmapTile corresponding to passed in row and column. Each concrete TileCache need to implement this logic to get tile from a row and column.// |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ==== NoDataTileImage ==== | + | * //N/A// |
- | This property returns back a preset image showing the tile data is missing. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Bitmap<!-- System.Drawing.Bitmap --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Return Value == |
- | [[#Public Properties|Go Back]] | + | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] |
- | ==== TileAccessMode ==== | + | * Description:Returns the BitmapTile corresponding to the passed in row and column. |
- | Gets or sets the Mode for the TileCache access the tiles. The Default value is ReadAddDelete | + | |
- | === Remarks === | + | |
- | If you want it to take effect, you need set the ReadOnly property false. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.TileAccessMode|TileAccessMode]]<!-- ThinkGeo.MapSuite.Core.TileAccessMode --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | == Parameters == |
- | [[#Public Properties|Go Back]] | + | * //row// |
- | ==== TileMatrix ==== | + | * Type:Int64 |
- | Gets or sets the TileMatrix which is used in caculation for tiles. | + | * Description:The target row for the tile to fetch. |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | * //column// |
- | | [[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]]<!-- ThinkGeo.MapSuite.Core.TileMatrix --> | | + | * Type:Int64 |
+ | * Description:The target column for the tile to fetch. | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} GetHigherScaleTileCore(RectangleShape,Double) ** | ||
+ | |||
+ | * //This method is virtual and can be overriden by its sub classes. This method will return the HigherScale BitmapTile which is always used for preview effects when ZoomIn or ZoomOut.// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] | ||
+ | * Description:Returns the higher scale(higher zoomLevel) bitmap tile. | ||
+ | |||
+ | == Parameters == | ||
+ | * //tileBoundingBox// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] | ||
+ | * Description:The parameter specifies the current tile bounding box. | ||
+ | |||
+ | * //tileScale// | ||
+ | * Type:Double | ||
+ | * Description:This parameter specifies the current tile scale. | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} MergeBitmaps(IEnumerable<BitmapTile>,Double) ** | ||
+ | |||
+ | * //This method will merege the passed in bitmap tiles into a larege bitmap tile.// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]] | ||
+ | * Description:Returns a merged bitmap tile. | ||
+ | |||
+ | == Parameters == | ||
+ | * //tilesToMerge// | ||
+ | * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.BitmapTile|BitmapTile]]> | ||
+ | * Description:The collection of tiles to be mereged. | ||
+ | |||
+ | * //scale// | ||
+ | * Type:Double | ||
+ | * Description:The target scale for result mereged bitmap tile. | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} OnGottenCacheImage(GottenCacheImageBitmapTileCacheEventArgs) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //e// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]] | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} OnGettingCacheImage(GettingCacheImageBitmapTileCacheEventArgs) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //e// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]] | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} ClearCacheCore() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} SaveTileCore(Tile) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //tile// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.Tile|Tile]] | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} DeleteTileCore(Tile) ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //tile// | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.Tile|Tile]] | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ||
+ | |||
+ | * //N/A// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Object | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ==== Public Properties ==== | ||
+ | ** {{wiki:PublicProperty.gif|}} TileMatrix ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.TileMatrix|TileMatrix]] | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} TileAccessMode ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.TileAccessMode|TileAccessMode]] | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} NoDataTileImage ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Bitmap | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} LoadingTileImage ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Bitmap | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} ImageFormat ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.TileImageFormat|TileImageFormat]] | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} JpegQuality ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:Int16 | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} CacheId ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
+ | == Return Value == | ||
+ | * Type:String | ||
+ | |||
+ | ==== Protected Properties ==== | ||
+ | ==== Public Events ==== | ||
+ | ** {{wiki:PublicEvent.gif|}} GottenCacheImage ** | ||
+ | N/A | ||
+ | == Remarks == | ||
+ | N/A | ||
- | <!-- ThinkGeo.MapSuite.Core.TileCache --> | + | Event Arguments:[[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]] |
- | [[#Public Properties|Go Back]] | + | |
- | ===== Protected Properties ===== | + | |
- | ===== Public Events ===== | + | |
- | ==== GettingCacheImage ==== | + | |
- | === Event Arguments === | + | |
- | ^ Event Arguments ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]]<!-- ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | ** {{wiki:PublicEvent.gif|}} GettingCacheImage ** |
- | [[#Public Events|Go Back]] | + | N/A |
- | ==== GottenCacheImage ==== | + | == Remarks == |
- | === Event Arguments === | + | N/A |
- | ^ Event Arguments ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs|GottenCacheImageBitmapTileCacheEventArgs]]<!-- ThinkGeo.MapSuite.Core.GottenCacheImageBitmapTileCacheEventArgs --> | | + | |
- | <!-- ThinkGeo.MapSuite.Core.BitmapTileCache --> | + | Event Arguments:[[ThinkGeo.MapSuite.Core.GettingCacheImageBitmapTileCacheEventArgs|GettingCacheImageBitmapTileCacheEventArgs]] |
- | [[#Public Events|Go Back]] | + | |
- | __NOTOC__ | ||
- | [[Category:MapSuiteCore]] | ||
- | [[Category:ThinkGeo.MapSuite.Core]] | ||
- | [[Category:UpdateDocumentation]] | ||