OpenLayers OpenLayers

Changeset 1301

Show
Ignore:
Timestamp:
08/18/06 22:07:26 (2 years ago)
Author:
euzuro
Message:

allow whirlwind to have options. otherwise no way to set tilesize

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/openlayers/2.0/lib/OpenLayers/Layer/WorldWind.js

    r1214 r1301  
    2626    zoomLevels: null, 
    2727         
    28     initialize: function(name, url, lzd, zoomLevels, params) { 
     28    initialize: function(name, url, lzd, zoomLevels, params, options) { 
    2929        this.lzd = lzd; 
    3030        this.zoomLevels = zoomLevels; 
    3131        var newArguments = new Array(); 
    32         newArguments.push(name, url, params); 
     32        newArguments.push(name, url, params, options); 
    3333        OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments); 
    3434        this.params = (params ? params : {});