User Tools

Site Tools


thinkgeo.mapsuite.core.tilecache

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
thinkgeo.mapsuite.core.tilecache [2015/09/21 07:53]
admin
thinkgeo.mapsuite.core.tilecache [2017/03/16 21:59] (current)
Line 1: Line 1:
 ====== ThinkGeo.MapSuite.Core.TileCache ====== ====== ThinkGeo.MapSuite.Core.TileCache ======
 +
 +{{section>​upgrade_map_suite_to_10.0}}
 +
 This is the base class for TileCache system. This is the base class for TileCache system.
 ===== Inheritance Hierarchy ===== ===== Inheritance Hierarchy =====
Line 11: Line 14:
 ** {{wiki:​ProtectedMethod.gif|}} TileCache(String,​TileImageFormat,​TileMatrix) ** ** {{wiki:​ProtectedMethod.gif|}} TileCache(String,​TileImageFormat,​TileMatrix) **
  
-This is the constructor of the class.+  * //This is the constructor of the class.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
 == Parameters == == Parameters ==
   * //cacheId//   * //cacheId//
Line 31: Line 34:
 ** {{wiki:​PublicMethod.gif|}} SaveTile(Tile) ** ** {{wiki:​PublicMethod.gif|}} SaveTile(Tile) **
  
-This method will save the target tile passed in.+  * //This method will save the target tile passed in.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 47: Line 50:
 ** {{wiki:​PublicMethod.gif|}} SaveTiles(Bitmap,​RectangleShape,​Boolean) ** ** {{wiki:​PublicMethod.gif|}} SaveTiles(Bitmap,​RectangleShape,​Boolean) **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 71: Line 74:
 ** {{wiki:​PublicMethod.gif|}} SaveTiles(Bitmap,​RectangleShape) ** ** {{wiki:​PublicMethod.gif|}} SaveTiles(Bitmap,​RectangleShape) **
  
-This method will save the bitmap with its extent attached into tiles.+  * //This method will save the bitmap with its extent attached into tiles.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 91: Line 94:
 ** {{wiki:​PublicMethod.gif|}} DeleteTiles(RectangleShape) ** ** {{wiki:​PublicMethod.gif|}} DeleteTiles(RectangleShape) **
  
-This method will delete the tiles within the passed in worldExtent.+  * //This method will delete the tiles within the passed in worldExtent.//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 107: Line 110:
 ** {{wiki:​PublicMethod.gif|}} DeleteTile(Tile) ** ** {{wiki:​PublicMethod.gif|}} DeleteTile(Tile) **
  
-This method will delete the target tile passed in.+  * //This method will delete the target tile passed in.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 123: Line 126:
 ** {{wiki:​PublicMethod.gif|}} ClearCache() ** ** {{wiki:​PublicMethod.gif|}} ClearCache() **
  
-This method will clear all the tiles in the tileCache.+  * //This method will clear all the tiles in the tileCache.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 135: Line 138:
 ** {{wiki:​PublicMethod.gif|}} ToString() ** ** {{wiki:​PublicMethod.gif|}} ToString() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 147: Line 150:
 ** {{wiki:​PublicMethod.gif|}} Equals(Object) ** ** {{wiki:​PublicMethod.gif|}} Equals(Object) **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 163: Line 166:
 ** {{wiki:​PublicMethod.gif|}} GetHashCode() ** ** {{wiki:​PublicMethod.gif|}} GetHashCode() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 175: Line 178:
 ** {{wiki:​PublicMethod.gif|}} GetType() ** ** {{wiki:​PublicMethod.gif|}} GetType() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 188: Line 191:
 ** {{wiki:​ProtectedMethod.gif|}} ClearCacheCore() ** ** {{wiki:​ProtectedMethod.gif|}} ClearCacheCore() **
  
-This abstract method will clear all the tiles in the tileCache, for each sub TileCache class must implement this method.+  * //This abstract method will clear all the tiles in the tileCache, for each sub TileCache class must implement this method.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 200: Line 203:
 ** {{wiki:​ProtectedMethod.gif|}} SaveTileCore(Tile) ** ** {{wiki:​ProtectedMethod.gif|}} SaveTileCore(Tile) **
  
-This abstract method will save the target tile passed in, for each sub TileCache class must implement this method.+  * //This abstract method will save the target tile passed in, for each sub TileCache class must implement this method.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 216: Line 219:
 ** {{wiki:​ProtectedMethod.gif|}} DeleteTileCore(Tile) ** ** {{wiki:​ProtectedMethod.gif|}} DeleteTileCore(Tile) **
  
-This abstract method will delete the target tile passed in, for each sub TileCache class must implement this method.+  * //This abstract method will delete the target tile passed in, for each sub TileCache class must implement this method.//
 == Remarks == == Remarks ==
-This method will not take effect when the ReadOnly is set to true.+  * //This method will not take effect when the ReadOnly is set to true.//
  
 == Return Value == == Return Value ==
Line 232: Line 235:
 ** {{wiki:​ProtectedMethod.gif|}} Finalize() ** ** {{wiki:​ProtectedMethod.gif|}} Finalize() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
Line 244: Line 247:
 ** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** ** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() **
  
-N/A+  * //N/A//
 == Remarks == == Remarks ==
-N/A+  * //N/A//
  
 == Return Value == == Return Value ==
thinkgeo.mapsuite.core.tilecache.1442822009.txt.gz ยท Last modified: 2015/09/21 07:53 by admin