Add ol.source.TileSource.useTile

This commit is contained in:
Tom Payne
2013-02-21 16:13:34 +01:00
parent e513b8cc39
commit e68c1adbae

View File

@@ -119,3 +119,10 @@ ol.source.TileSource.prototype.getTile = goog.abstractMethod;
ol.source.TileSource.prototype.getTileGrid = function() {
return this.tileGrid;
};
/**
* Marks a tile coord as being used, without triggering a load.
* @param {ol.TileCoord} tileCoord Tile coordinate.
*/
ol.source.TileSource.prototype.useTile = goog.nullFunction;