Changeset 180
- Timestamp:
- 05/19/06 11:19:49 (3 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Tile.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Tile/Image.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Tile/WFS.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Tile.js
r173 r180 10 10 OpenLayers.Tile = Class.create(); 11 11 OpenLayers.Tile.prototype = { 12 13 /** @type OpenLayers.Grid */ 14 grid: null, 12 15 13 16 // str - url of the request … … 24 27 25 28 /** 26 * @param {OpenLayers.Layer} layer 27 * @param {OpenLayers.LonLat} coord 29 * @constructor 30 * 31 * @param {OpenLayers.Grid} grid 32 * @param {OpenLayers.Bounds} bounds 33 * @param {String} url 34 * @param {OpenLayers.Size} size 28 35 */ 29 initialize: function( bounds,url,size) {36 initialize: function(grid, bounds, url, size) { 30 37 if (arguments.length > 0) { 38 this.grid = grid; 31 39 this.url = url; 32 40 this.bounds = bounds; trunk/openlayers/lib/OpenLayers/Tile/Image.js
r173 r180 12 12 * @constructor 13 13 * 14 * @param {OpenLayers.Grid} grid 14 15 * @param {OpenLayers.Bounds} bounds 15 16 * @param {String} url 16 17 * @param {OpenLayers.Size} size 17 18 */ 18 initialize: function( bounds,url,size) {19 initialize: function(grid, bounds, url, size) { 19 20 OpenLayers.Tile.prototype.initialize.apply(this, arguments); 20 21 }, trunk/openlayers/lib/OpenLayers/Tile/WFS.js
r176 r180 16 16 * @constructor 17 17 * 18 * @param {OpenLayers.Grid} grid 18 19 * @param {OpenLayers.Bounds} bounds 19 20 * @param {String} url 20 21 * @param {OpenLayers.Size} size 21 22 */ 22 initialize: function( bounds, url, size) {23 initialize: function(grid, bounds, url, size) { 23 24 OpenLayers.Tile.prototype.initialize.apply(this, arguments); 24 25
