mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Merge remote-tracking branch 'origin/master' into viewport-tests
This commit is contained in:
commit
7cf4556cdc
@ -1,4 +1,5 @@
|
||||
# OpenSeadragon
|
||||
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/openseadragon/openseadragon?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
An open-source, web-based viewer for zoomable images, implemented in pure JavaScript.
|
||||
|
||||
|
@ -15,6 +15,9 @@ OPENSEADRAGON CHANGELOG
|
||||
* Debug mode now works with rotate images (#453)
|
||||
* Now supporting dzi xml with namespaces (#462)
|
||||
* You can now rotate the navigator along with the main viewer (#455)
|
||||
* Viewport.setRotation now allows all rotation angles (#466)
|
||||
* Pinch rotate is now available (defaults to off) (#468)
|
||||
* Added option for home button to fill viewer (#474)
|
||||
|
||||
1.1.1:
|
||||
|
||||
|
@ -54,6 +54,7 @@ $.IIIFTileSource = function( options ){
|
||||
|
||||
options.tileSizePerScaleFactor = {};
|
||||
|
||||
// N.B. 2.0 renamed scale_factors to scaleFactors
|
||||
if ( this.tile_width ) {
|
||||
options.tileSize = this.tile_width;
|
||||
} else if ( this.tile_height ) {
|
||||
@ -62,13 +63,13 @@ $.IIIFTileSource = function( options ){
|
||||
// Version 2.0 forwards
|
||||
if ( this.tiles.length == 1 ) {
|
||||
options.tileSize = this.tiles[0].width;
|
||||
this.scale_factors = this.tiles[0].scale_factors;
|
||||
this.scale_factors = this.tiles[0].scaleFactors;
|
||||
} else {
|
||||
// Multiple tile sizes at different levels
|
||||
this.scale_factors = [];
|
||||
for (var t = 0; t < this.tiles.length; t++ ) {
|
||||
for (var sf = 0; sf < this.tiles[t].scale_factors.length; sf++) {
|
||||
var scaleFactor = this.tiles[t].scale_factors[sf];
|
||||
for (var sf = 0; sf < this.tiles[t].scaleFactors.length; sf++) {
|
||||
var scaleFactor = this.tiles[t].scaleFactors[sf];
|
||||
this.scale_factors.push(scaleFactor);
|
||||
options.tileSizePerScaleFactor[scaleFactor] = this.tiles[t].width;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
"protocol": "http://iiif.io/api/image",
|
||||
"height": 1024,
|
||||
"width": 775,
|
||||
"tiles" : [{"width":256, "scale_factors":[1,2,4,8]}],
|
||||
"tiles" : [{"width":256, "scaleFactors":[1,2,4,8]}],
|
||||
|
||||
"profile": ["http://iiif.io/api/image/2/level1.json",
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user