mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
re-enable html drawer in drawer comparison demo; deal with merge conflict resolution issues
This commit is contained in:
parent
36d8b3d9ad
commit
6b995c018b
@ -2145,6 +2145,30 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
return previousBest;
|
return previousBest;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @inner
|
||||||
|
* Sorts tiles in an array according to distance and visibility.
|
||||||
|
*
|
||||||
|
* @param {OpenSeadragon.Tile[]} tiles The tiles.
|
||||||
|
*/
|
||||||
|
_sortTiles: function( tiles ) {
|
||||||
|
tiles.sort(function (a, b) {
|
||||||
|
if (a === null) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (b === null) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (a.visibility === b.visibility) {
|
||||||
|
return (a.squaredDistance - b.squaredDistance);
|
||||||
|
} else {
|
||||||
|
return (a.visibility - b.visibility);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
* @inner
|
* @inner
|
||||||
|
@ -58,18 +58,18 @@ let viewer2 = window.viewer2 = OpenSeadragon({
|
|||||||
});
|
});
|
||||||
|
|
||||||
// // viewer3: html drawer, unused
|
// // viewer3: html drawer, unused
|
||||||
// var viewer3 = window.viewer3 = OpenSeadragon({
|
var viewer3 = window.viewer3 = OpenSeadragon({
|
||||||
// id: "htmldrawer",
|
id: "htmldrawer",
|
||||||
// drawer:'html',
|
drawer:'html',
|
||||||
// blendTime:2,
|
blendTime:2,
|
||||||
// prefixUrl: "../../build/openseadragon/images/",
|
prefixUrl: "../../build/openseadragon/images/",
|
||||||
// minZoomImageRatio:0.01,
|
minZoomImageRatio:0.01,
|
||||||
// customDrawer: OpenSeadragon.HTMLDrawer,
|
customDrawer: OpenSeadragon.HTMLDrawer,
|
||||||
// tileSources: [sources['leaves'], sources['rainbow'], sources['duomo']],
|
tileSources: [sources['leaves'], sources['rainbow'], sources['duomo']],
|
||||||
// sequenceMode: true,
|
sequenceMode: true,
|
||||||
// crossOriginPolicy: 'Anonymous',
|
crossOriginPolicy: 'Anonymous',
|
||||||
// ajaxWithCredentials: false
|
ajaxWithCredentials: false
|
||||||
// });
|
});
|
||||||
|
|
||||||
|
|
||||||
// Sync navigation of viewer1 and viewer 2
|
// Sync navigation of viewer1 and viewer 2
|
||||||
|
Loading…
Reference in New Issue
Block a user