112 lines
2.6 KiB
JavaScript
112 lines
2.6 KiB
JavaScript
goog.provide('ol.source.ImageTileSource');
|
|
goog.provide('ol.source.ImageTileSourceOptions');
|
|
|
|
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.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),
|
|
* projection: (ol.Projection|undefined),
|
|
* tileGrid: (ol.tilegrid.TileGrid|undefined),
|
|
* tileUrlFunction: (ol.TileUrlFunctionType|undefined)}}
|
|
*/
|
|
ol.source.ImageTileSourceOptions;
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends {ol.source.TileSource}
|
|
* @param {ol.source.ImageTileSourceOptions} options Options.
|
|
*/
|
|
ol.source.ImageTileSource = function(options) {
|
|
|
|
goog.base(this, {
|
|
attributions: options.attributions,
|
|
extent: options.extent,
|
|
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 : 'anonymous';
|
|
|
|
/**
|
|
* @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(tileCoord) {
|
|
var key = tileCoord.toString();
|
|
if (this.tileCache_.containsKey(key)) {
|
|
return /** @type {ol.Tile} */ (this.tileCache_.get(key));
|
|
} else {
|
|
var tileUrl = this.getTileCoordUrl(tileCoord);
|
|
var tile;
|
|
if (goog.isDef(tileUrl)) {
|
|
tile = new ol.ImageTile(tileCoord, tileUrl, this.crossOrigin_);
|
|
this.tileCache_.set(key, tile);
|
|
} else {
|
|
tile = null;
|
|
}
|
|
return tile;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @param {ol.TileCoord} tileCoord Tile coordinate.
|
|
* @return {string|undefined} Tile URL.
|
|
*/
|
|
ol.source.ImageTileSource.prototype.getTileCoordUrl = function(tileCoord) {
|
|
return this.tileUrlFunction(tileCoord);
|
|
};
|