120 lines
3.0 KiB
JavaScript
120 lines
3.0 KiB
JavaScript
goog.provide('ol.source.ImageTileSource');
|
|
|
|
goog.require('goog.asserts');
|
|
goog.require('ol.Attribution');
|
|
goog.require('ol.Extent');
|
|
goog.require('ol.ImageTile');
|
|
goog.require('ol.Projection');
|
|
goog.require('ol.Tile');
|
|
goog.require('ol.TileCache');
|
|
goog.require('ol.TileCoord');
|
|
goog.require('ol.TileState');
|
|
goog.require('ol.TileUrlFunction');
|
|
goog.require('ol.TileUrlFunctionType');
|
|
goog.require('ol.source.TileSource');
|
|
goog.require('ol.tilegrid.TileGrid');
|
|
|
|
|
|
/**
|
|
* @typedef {{attributions: (Array.<ol.Attribution>|undefined),
|
|
* crossOrigin: (null|string|undefined),
|
|
* extent: (ol.Extent|undefined),
|
|
* logo: (string|undefined),
|
|
* opaque: (boolean|undefined),
|
|
* projection: ol.ProjectionLike,
|
|
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
|
* tileUrlFunction: (ol.TileUrlFunctionType|undefined)}}
|
|
*/
|
|
ol.source.ImageTileOptions;
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {ol.source.TileSource}
|
|
* @param {ol.source.ImageTileOptions} options Image tile options.
|
|
*/
|
|
ol.source.ImageTileSource = function(options) {
|
|
|
|
goog.base(this, {
|
|
attributions: options.attributions,
|
|
extent: options.extent,
|
|
logo: options.logo,
|
|
opaque: options.opaque,
|
|
projection: options.projection,
|
|
tileGrid: options.tileGrid
|
|
});
|
|
|
|
/**
|
|
* @protected
|
|
* @type {ol.TileUrlFunctionType}
|
|
*/
|
|
this.tileUrlFunction = goog.isDef(options.tileUrlFunction) ?
|
|
options.tileUrlFunction :
|
|
ol.TileUrlFunction.nullTileUrlFunction;
|
|
|
|
/**
|
|
* @private
|
|
* @type {?string}
|
|
*/
|
|
this.crossOrigin_ =
|
|
goog.isDef(options.crossOrigin) ? options.crossOrigin : null;
|
|
|
|
/**
|
|
* @private
|
|
* @type {ol.TileCache}
|
|
*/
|
|
this.tileCache_ = new ol.TileCache();
|
|
|
|
};
|
|
goog.inherits(ol.source.ImageTileSource, ol.source.TileSource);
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
ol.source.ImageTileSource.prototype.canExpireCache = function() {
|
|
return this.tileCache_.canExpireCache();
|
|
};
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
ol.source.ImageTileSource.prototype.expireCache = function(usedTiles) {
|
|
this.tileCache_.expireCache(usedTiles);
|
|
};
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
ol.source.ImageTileSource.prototype.getTile = function(z, x, y, projection) {
|
|
var tileCoordKey = ol.TileCoord.getKeyZXY(z, x, y);
|
|
if (this.tileCache_.containsKey(tileCoordKey)) {
|
|
return /** @type {!ol.Tile} */ (this.tileCache_.get(tileCoordKey));
|
|
} else {
|
|
goog.asserts.assert(projection);
|
|
var tileCoord = new ol.TileCoord(z, x, y);
|
|
var tileUrl = this.tileUrlFunction(tileCoord, projection);
|
|
var tile = new ol.ImageTile(
|
|
tileCoord,
|
|
goog.isDef(tileUrl) ? ol.TileState.IDLE : ol.TileState.EMPTY,
|
|
goog.isDef(tileUrl) ? tileUrl : '',
|
|
this.crossOrigin_);
|
|
this.tileCache_.set(tileCoordKey, tile);
|
|
return tile;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
ol.source.ImageTileSource.prototype.useTile = function(z, x, y) {
|
|
var tileCoordKey = ol.TileCoord.getKeyZXY(z, x, y);
|
|
if (this.tileCache_.containsKey(tileCoordKey)) {
|
|
this.tileCache_.get(tileCoordKey);
|
|
}
|
|
};
|