Changeset 1301
- Timestamp:
- 08/18/06 22:07:26 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/openlayers/2.0/lib/OpenLayers/Layer/WorldWind.js
r1214 r1301 26 26 zoomLevels: null, 27 27 28 initialize: function(name, url, lzd, zoomLevels, params ) {28 initialize: function(name, url, lzd, zoomLevels, params, options) { 29 29 this.lzd = lzd; 30 30 this.zoomLevels = zoomLevels; 31 31 var newArguments = new Array(); 32 newArguments.push(name, url, params );32 newArguments.push(name, url, params, options); 33 33 OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments); 34 34 this.params = (params ? params : {});
