Changeset 1017
- Timestamp:
- 07/27/06 14:18:35 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/euzuro/layerswitcher/lib/OpenLayers/Layer.js
r993 r1017 23 23 map: null, 24 24 25 25 /** Whether or not the layer is a base layer. This should be set 26 * individually by all subclasses. 27 * Default is false 28 * 29 * @type Boolean 30 */ 31 isBaseLayer: false, 32 26 33 // OPTIONS 27 34 … … 148 155 149 156 /** 150 * @returns Whether or not the layer is a base layer. This should be151 * determined individually by all subclasses. Default is false152 * @type Boolean153 */154 isBaseLayer: function() {155 //this function should be implemented by all subclasses.156 return false;157 },158 159 /**160 157 * @returns Whether or not the layer is visible 161 158 * @type Boolean
