mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
no direct support for formatHints
This commit is contained in:
parent
81e030e653
commit
0810d97b69
@ -56,14 +56,6 @@ $.IIIFTileSource = function( options ){
|
|||||||
options.tileSizePerScaleFactor = {};
|
options.tileSizePerScaleFactor = {};
|
||||||
|
|
||||||
this.usedFormat = "jpg";
|
this.usedFormat = "jpg";
|
||||||
if ( this.formatHints ) {
|
|
||||||
for (var f = 0; f < this.formatHints.length; f++ ) {
|
|
||||||
if ( $.imageFormatSupported(this.formatHints[f]) ) {
|
|
||||||
this.usedFormat = this.formatHints[f];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// N.B. 2.0 renamed scale_factors to scaleFactors
|
// N.B. 2.0 renamed scale_factors to scaleFactors
|
||||||
if ( this.tile_width && this.tile_height ) {
|
if ( this.tile_width && this.tile_height ) {
|
||||||
|
@ -69,11 +69,6 @@
|
|||||||
* the XHR's withCredentials (for accessing secure data).
|
* the XHR's withCredentials (for accessing secure data).
|
||||||
* @param {Object} [options.ajaxHeaders]
|
* @param {Object} [options.ajaxHeaders]
|
||||||
* A set of headers to include in AJAX requests.
|
* A set of headers to include in AJAX requests.
|
||||||
* @param {Object} [options.formatHints]
|
|
||||||
* An array of extensions to use for image URLs, by descending order of
|
|
||||||
* preference. The extensions are tested against the supported formats,
|
|
||||||
* in case none of the extension values is supported, the default (jpg)
|
|
||||||
* will be used.
|
|
||||||
* @param {Number} [options.width]
|
* @param {Number} [options.width]
|
||||||
* Width of the source image at max resolution in pixels.
|
* Width of the source image at max resolution in pixels.
|
||||||
* @param {Number} [options.height]
|
* @param {Number} [options.height]
|
||||||
@ -223,7 +218,6 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0;
|
this.tileOverlap = options.tileOverlap ? options.tileOverlap : 0;
|
||||||
this.formatHints = options.formatHints;
|
|
||||||
this.minLevel = options.minLevel ? options.minLevel : 0;
|
this.minLevel = options.minLevel ? options.minLevel : 0;
|
||||||
this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ?
|
this.maxLevel = ( undefined !== options.maxLevel && null !== options.maxLevel ) ?
|
||||||
options.maxLevel : (
|
options.maxLevel : (
|
||||||
|
Loading…
Reference in New Issue
Block a user