Sha256: 3ae98d6b9d9ca5f0dccd308d5912e0ef86dc9d116b3da3aea89281529cb9453d
Contents?: true
Size: 1 KB
Versions: 9
Compression:
Stored size: 1 KB
Contents
/*global define*/ define([], function( ) { "use strict"; /** * A {@link TileDiscardPolicy} specifying that tile images should never be discard. * * @alias NeverTileDiscardPolicy * @constructor * * @see DiscardMissingTileImagePolicy */ var NeverTileDiscardPolicy = function(description) { }; /** * Determines if the discard policy is ready to process images. * @returns True if the discard policy is ready to process images; otherwise, false. */ NeverTileDiscardPolicy.prototype.isReady = function() { return true; }; /** * Given a tile image, decide whether to discard that image. * * @param {Image|Promise} image An image, or a promise that will resolve to an image. * * @returns A promise that will resolve to true if the tile should be discarded. */ NeverTileDiscardPolicy.prototype.shouldDiscardImage = function(image) { return false; }; return NeverTileDiscardPolicy; });
Version data entries
9 entries across 9 versions & 1 rubygems