Changeset 3764
- Timestamp:
- 07/16/07 13:57:48 (1 year ago)
- Files:
-
- trunk/openlayers/apidoc_config/Menu.txt (modified) (1 diff)
- trunk/openlayers/doc_config/Menu.txt (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/TileCache.js (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/apidoc_config/Menu.txt
r3703 r3764 143 143 File: MultiMap (OpenLayers/Layer/MultiMap.js) 144 144 File: Text (OpenLayers/Layer/Text.js) 145 File: TileCache (OpenLayers/Layer/TileCache.js) 145 146 File: TMS (OpenLayers/Layer/TMS.js) 146 147 File: Vector (no auto-title, OpenLayers/Layer/Vector.js) trunk/openlayers/doc_config/Menu.txt
r3704 r3764 143 143 File: MultiMap (OpenLayers/Layer/MultiMap.js) 144 144 File: Text (OpenLayers/Layer/Text.js) 145 File: TileCache (OpenLayers/Layer/TileCache.js) 145 146 File: TMS (OpenLayers/Layer/TMS.js) 146 147 File: Vector (no auto-title, OpenLayers/Layer/Vector.js) trunk/openlayers/lib/OpenLayers/Layer/TileCache.js
r3763 r3764 8 8 * 9 9 * Class: OpenLayers.Layer.TileCache 10 * A read only TileCache layer. Used to requests tiles cached by TileCache in 11 * a web accessible cache. Create a new instance with the 12 * <OpenLayers.Layer.TileCache> constructor. 10 13 * 11 14 * Inherits from: … … 18 21 /** 19 22 * APIProperty: reproject 20 * {Boolean} 23 * {Boolean} Try to reproject this layer if it is used as an overlay. 24 * Default is false. 21 25 **/ 22 26 reproject: false, … … 24 28 /** 25 29 * APIProperty: isBaseLayer 26 * {Boolean} 30 * {Boolean} Treat this layer as a base layer. Default is true. 27 31 **/ 28 32 isBaseLayer: true, … … 30 34 /** 31 35 * APIProperty: tileOrigin 32 * {<OpenLayers.LonLat>} 36 * {<OpenLayers.LonLat>} Location of the tile lattice origin. Default is 37 * bottom left of the maxExtent. 33 38 **/ 34 39 tileOrigin: null, … … 36 41 /** 37 42 * APIProperty: format 38 * {String} 43 * {String} Mime type of the images returned. Default is image/png. 39 44 **/ 40 45 format: 'image/png', … … 42 47 /** 43 48 * Constructor: OpenLayers.Layer.TileCache 49 * Create a new read only TileCache layer. 44 50 * 45 51 * Parameters: 46 * name - {String} 47 * url - {String} 48 * layername - {String} 52 * name - {String} Name of the layer displayed in the interface 53 * url - {String} Location of the web accessible cache 54 * layername - {String} Layer name as defined in the TileCache configuration 49 55 * options - {Object} Hashtable of extra options to tag onto the layer 50 56 */ … … 136 142 /** 137 143 * Method: addTile 138 * addTile creates a tile, initializes it, and 139 * adds it to the layer div. 144 * Create a tile, initialize it, and add it to the layer div. 140 145 * 141 146 * Parameters: … … 154 159 * Method: setMap 155 160 * When the layer is added to a map, then we can fetch our origin 156 * (if we don't have one.)161 * (if we don't have one.) 157 162 * 158 163 * Parameters:
