default example doesn't actually load tiles at the first load. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1694 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
92 lines
2.8 KiB
JavaScript
92 lines
2.8 KiB
JavaScript
/* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license.
|
|
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the full
|
|
* text of the license. */
|
|
|
|
/**
|
|
* @class
|
|
*
|
|
* @requires OpenLayers/Layer/Grid.js
|
|
*/
|
|
OpenLayers.Layer.WorldWind = OpenLayers.Class.create();
|
|
OpenLayers.Layer.WorldWind.prototype =
|
|
OpenLayers.Class.inherit( OpenLayers.Layer.Grid, {
|
|
|
|
DEFAULT_PARAMS: {
|
|
},
|
|
|
|
/** WorldWind layer is always a base layer
|
|
*
|
|
* @type Boolean
|
|
*/
|
|
isBaseLayer: true,
|
|
|
|
// LevelZeroTileSizeDegrees
|
|
lzd: null,
|
|
|
|
zoomLevels: null,
|
|
|
|
initialize: function(name, url, lzd, zoomLevels, params, options) {
|
|
this.lzd = lzd;
|
|
this.zoomLevels = zoomLevels;
|
|
var newArguments = new Array();
|
|
newArguments.push(name, url, params, options);
|
|
OpenLayers.Layer.Grid.prototype.initialize.apply(this, newArguments);
|
|
this.params = (params ? params : {});
|
|
if (params) {
|
|
OpenLayers.Util.applyDefaults(
|
|
this.params,
|
|
this.DEFAULT_PARAMS
|
|
);
|
|
}
|
|
},
|
|
addTile:function(bounds,position) {
|
|
if (this.map.getResolution() <= (this.lzd/512)
|
|
&& this.getZoom() <= this.zoomLevels) {
|
|
var url = this.getURL(bounds);
|
|
return new OpenLayers.Tile.Image(this, position, bounds,
|
|
url, this.tileSize);
|
|
} else {
|
|
return new OpenLayers.Tile.Image(this, position, bounds,
|
|
OpenLayers.Util.getImagesLocation() + "blank.gif",
|
|
this.tileSize);
|
|
}
|
|
},
|
|
|
|
getZoom: function () {
|
|
var zoom = this.map.getZoom();
|
|
var extent = this.map.getMaxExtent();
|
|
zoom = zoom - Math.log(this.maxResolution / (this.lzd/512))/Math.log(2);
|
|
return zoom;
|
|
},
|
|
|
|
/**
|
|
* @param {OpenLayers.Bounds} bounds
|
|
*
|
|
* @returns A string with the layer's url and parameters and also the
|
|
* passed-in bounds and appropriate tile size specified as
|
|
* parameters
|
|
* @type String
|
|
*/
|
|
getURL: function (bounds) {
|
|
var zoom = this.getZoom();
|
|
var extent = this.map.getMaxExtent();
|
|
var deg = this.lzd/Math.pow(2,this.getZoom());
|
|
var x = Math.floor((bounds.left - extent.left)/deg);
|
|
var y = Math.floor((bounds.bottom - extent.bottom)/deg);
|
|
if (this.map.getResolution() <= (this.lzd/512)
|
|
&& this.getZoom() <= this.zoomLevels) {
|
|
return this.getFullRequestString(
|
|
{ L: zoom,
|
|
X: x,
|
|
Y: y
|
|
});
|
|
} else {
|
|
return OpenLayers.Util.getImagesLocation() + "blank.gif";
|
|
}
|
|
|
|
},
|
|
|
|
/** @final @type String */
|
|
CLASS_NAME: "OpenLayers.Layer.WorldWind"
|
|
});
|