/* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt * for the full text of the license. */ /** * @class * * @requires OpenLayers/Layer/HTTPRequest.js */ OpenLayers.Layer.Grid = OpenLayers.Class.create(); OpenLayers.Layer.Grid.prototype = OpenLayers.Class.inherit( OpenLayers.Layer.HTTPRequest, { /** @type OpenLayers.Size */ tileSize: null, /** this is an array of rows, each row is an array of tiles * * @type Array(Array) */ grid: null, /** @type Integer */ buffer: 2, /** * @constructor * * @param {String} name * @param {String} url * @param {Object} params * @param {Object} options Hashtable of extra options to tag onto the layer */ initialize: function(name, url, params, options) { OpenLayers.Layer.HTTPRequest.prototype.initialize.apply(this, arguments); this.grid = new Array(); }, /** on destroy, clear the grid. * */ destroy: function() { this.clearGrid(); this.grid = null; this.tileSize = null; OpenLayers.Layer.HTTPRequest.prototype.destroy.apply(this, arguments); }, /** * @param {Object} obj * * @returns An exact clone of this OpenLayers.Layer.Grid * @type OpenLayers.Layer.Grid */ clone: function (obj) { if (obj == null) { obj = new OpenLayers.Layer.Grid(this.name, this.url, this.params, this.options); } //get all additions from superclasses obj = OpenLayers.Layer.HTTPRequest.prototype.clone.apply(this, [obj]); // copy/set any non-init, non-simple values here if (this.tileSize != null) { obj.tileSize = this.tileSize.clone(); } // we do not want to copy reference to grid, so we make a new array obj.grid = new Array(); return obj; }, /** When the layer is added to a map, then we can ask the map for * its default tile size * * @param {OpenLayers.Map} map */ setMap: function(map) { OpenLayers.Layer.HTTPRequest.prototype.setMap.apply(this, arguments); if (this.tileSize == null) { this.tileSize = this.map.getTileSize(); } }, /** This function is called whenever the map is moved. All the moving * of actual 'tiles' is done by the map, but moveTo's role is to accept * a bounds and make sure the data that that bounds requires is pre-loaded. * * @param {OpenLayers.Bounds} bounds * @param {Boolean} zoomChanged * @param {Boolean} dragging */ moveTo:function(bounds, zoomChanged, dragging) { OpenLayers.Layer.HTTPRequest.prototype.moveTo.apply(this, arguments); if (bounds == null) { bounds = this.map.getExtent(); } if (bounds != null) { if (!this.grid.length || zoomChanged || !this.getGridBounds().containsBounds(bounds, true)) { this._initTiles(); } else { var buffer = (this.buffer) ? this.buffer*1.5 : 1; while (true) { var tlLayer = this.grid[0][0].position; var tlViewPort = this.map.getViewPortPxFromLayerPx(tlLayer); if (tlViewPort.x > -this.tileSize.w * (buffer - 1)) { this.shiftColumn(true); } else if (tlViewPort.x < -this.tileSize.w * buffer) { this.shiftColumn(false); } else if (tlViewPort.y > -this.tileSize.h * (buffer - 1)) { this.shiftRow(true); } else if (tlViewPort.y < -this.tileSize.h * buffer) { this.shiftRow(false); } else { break; } }; if (this.buffer == 0) { for (var r=0, rl=this.grid.length; r= bounds.bottom - tilelat * this.buffer) || rowidx < minRows) // remove extra rows while (this.grid.length > rowidx) { var row = this.grid.pop(); for (var i=0, l=row.length; i colidx) { for (var i=0, l=this.grid.length; i= 0) && (testCell < this.grid[0].length) && (testCell >= 0)) { tile = this.grid[testRow][testCell]; } if ((tile != null) && (!tile.queued)) { //add tile to beginning of queue, mark it as queued. tileQueue.unshift(tile); tile.queued = true; //restart the directions counter and take on the new coords directionsTried = 0; iRow = testRow; iCell = testCell; } else { //need to try to load a tile in a different direction direction = (direction + 1) % 4; directionsTried++; } } // now we go through and draw the tiles in forward order for(var i=0; i < tileQueue.length; i++) { var tile = tileQueue[i] tile.draw(); //mark tile as unqueued for the next time (since tiles are reused) tile.queued = false; } }, /** * addTile gives subclasses of Grid the opportunity to create an * OpenLayer.Tile of their choosing. The implementer should initialize * the new tile and take whatever steps necessary to display it. * * @param {OpenLayers.Bounds} bounds * * @returns The added OpenLayers.Tile * @type OpenLayers.Tile */ addTile:function(bounds, position) { // Should be implemented by subclasses }, /** go through and remove all tiles from the grid, calling * destroy() on each of them to kill circular references * * @private */ clearGrid:function() { if (this.grid) { for(var iRow=0; iRow < this.grid.length; iRow++) { var row = this.grid[iRow]; for(var iCol=0; iCol < row.length; iCol++) { row[iCol].destroy(); } this.grid = []; } } }, /** * @private * * @param {Boolean} prepend if true, prepend to beginning. * if false, then append to end */ shiftRow:function(prepend) { var modelRowIndex = (prepend) ? 0 : (this.grid.length - 1); var modelRow = this.grid[modelRowIndex]; var resolution = this.map.getResolution(); var deltaY = (prepend) ? -this.tileSize.h : this.tileSize.h; var deltaLat = resolution * -deltaY; var row = (prepend) ? this.grid.pop() : this.grid.shift(); for (var i=0; i < modelRow.length; i++) { var modelTile = modelRow[i]; var bounds = modelTile.bounds.clone(); var position = modelTile.position.clone(); bounds.bottom = bounds.bottom + deltaLat; bounds.top = bounds.top + deltaLat; position.y = position.y + deltaY; row[i].moveTo(bounds, position); } if (prepend) { this.grid.unshift(row); } else { this.grid.push(row); } }, /** * @private * * @param {Boolean} prepend if true, prepend to beginning. * if false, then append to end */ shiftColumn: function(prepend) { var deltaX = (prepend) ? -this.tileSize.w : this.tileSize.w; var resolution = this.map.getResolution(); var deltaLon = resolution * deltaX; for (var i=0; i