mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Use correct option name (displayRects, not dispRects) in DziTileSource.
This commit is contained in:
parent
bebc7a64ff
commit
31716bf56d
@ -5604,7 +5604,7 @@ $.DziTileSource = function( width, height, tileSize, tileOverlap, tilesUrl, file
|
|||||||
tileOverlap: arguments[ 3 ],
|
tileOverlap: arguments[ 3 ],
|
||||||
tilesUrl: arguments[ 4 ],
|
tilesUrl: arguments[ 4 ],
|
||||||
fileFormat: arguments[ 5 ],
|
fileFormat: arguments[ 5 ],
|
||||||
dispRects: arguments[ 6 ]
|
displayRects: arguments[ 6 ]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5856,7 +5856,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
height = parseInt( sizeData.Height ),
|
height = parseInt( sizeData.Height ),
|
||||||
tileSize = parseInt( imageData.TileSize ),
|
tileSize = parseInt( imageData.TileSize ),
|
||||||
tileOverlap = parseInt( imageData.Overlap ),
|
tileOverlap = parseInt( imageData.Overlap ),
|
||||||
dispRects = [],
|
displayRects = [],
|
||||||
rectData,
|
rectData,
|
||||||
i;
|
i;
|
||||||
|
|
||||||
@ -5876,7 +5876,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
for ( i = 0; i < dispRectData.length; i++ ) {
|
for ( i = 0; i < dispRectData.length; i++ ) {
|
||||||
rectData = dispRectData[ i ].Rect;
|
rectData = dispRectData[ i ].Rect;
|
||||||
|
|
||||||
dispRects.push( new $.DisplayRect(
|
displayRects.push( new $.DisplayRect(
|
||||||
parseInt( rectData.X ),
|
parseInt( rectData.X ),
|
||||||
parseInt( rectData.Y ),
|
parseInt( rectData.Y ),
|
||||||
parseInt( rectData.Width ),
|
parseInt( rectData.Width ),
|
||||||
@ -5896,7 +5896,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
maxLevel: null, /* maxLevel */
|
maxLevel: null, /* maxLevel */
|
||||||
tilesUrl: tilesUrl, /* tilesUrl */
|
tilesUrl: tilesUrl, /* tilesUrl */
|
||||||
fileFormat: fileFormat, /* fileFormat */
|
fileFormat: fileFormat, /* fileFormat */
|
||||||
dispRects: dispRects /* dispRects */
|
displayRects: displayRects /* displayRects */
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -32,7 +32,7 @@ $.DziTileSource = function( width, height, tileSize, tileOverlap, tilesUrl, file
|
|||||||
tileOverlap: arguments[ 3 ],
|
tileOverlap: arguments[ 3 ],
|
||||||
tilesUrl: arguments[ 4 ],
|
tilesUrl: arguments[ 4 ],
|
||||||
fileFormat: arguments[ 5 ],
|
fileFormat: arguments[ 5 ],
|
||||||
dispRects: arguments[ 6 ]
|
displayRects: arguments[ 6 ]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +284,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
height = parseInt( sizeData.Height ),
|
height = parseInt( sizeData.Height ),
|
||||||
tileSize = parseInt( imageData.TileSize ),
|
tileSize = parseInt( imageData.TileSize ),
|
||||||
tileOverlap = parseInt( imageData.Overlap ),
|
tileOverlap = parseInt( imageData.Overlap ),
|
||||||
dispRects = [],
|
displayRects = [],
|
||||||
rectData,
|
rectData,
|
||||||
i;
|
i;
|
||||||
|
|
||||||
@ -304,7 +304,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
for ( i = 0; i < dispRectData.length; i++ ) {
|
for ( i = 0; i < dispRectData.length; i++ ) {
|
||||||
rectData = dispRectData[ i ].Rect;
|
rectData = dispRectData[ i ].Rect;
|
||||||
|
|
||||||
dispRects.push( new $.DisplayRect(
|
displayRects.push( new $.DisplayRect(
|
||||||
parseInt( rectData.X ),
|
parseInt( rectData.X ),
|
||||||
parseInt( rectData.Y ),
|
parseInt( rectData.Y ),
|
||||||
parseInt( rectData.Width ),
|
parseInt( rectData.Width ),
|
||||||
@ -324,7 +324,7 @@ function configureFromObject( tileSource, configuration ){
|
|||||||
maxLevel: null, /* maxLevel */
|
maxLevel: null, /* maxLevel */
|
||||||
tilesUrl: tilesUrl, /* tilesUrl */
|
tilesUrl: tilesUrl, /* tilesUrl */
|
||||||
fileFormat: fileFormat, /* fileFormat */
|
fileFormat: fileFormat, /* fileFormat */
|
||||||
dispRects: dispRects /* dispRects */
|
displayRects: displayRects /* displayRects */
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user