mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
Changelog and tweak for #863
This commit is contained in:
parent
1f75fb8d0a
commit
192c0e5c36
@ -11,6 +11,7 @@ OPENSEADRAGON CHANGELOG
|
||||
* The navigationControlAnchor option now works for custom toolbar as well (#1004)
|
||||
* Added getFullyLoaded method and "fully-loaded-change" event to TiledImage to know when tiles are fully loaded (#837)
|
||||
* Fixed: Initial tile load wasn't happening in parallel (#1014)
|
||||
* Added Zoomify tile source (#863)
|
||||
|
||||
2.2.1:
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
* tilesUrl: "/test/data/zoomify/"
|
||||
* }
|
||||
*
|
||||
* The tilesize if currently hardcoded to 256. The tileUrl must the the path to the image _directory_.
|
||||
* The tileSize is currently hardcoded to 256 (the usual Zoomify default). The tileUrl must the the path to the image _directory_.
|
||||
*
|
||||
* 2) Loading image metadata from xml file: (CURRENTLY NOT SUPPORTED)
|
||||
*
|
||||
@ -87,7 +87,7 @@
|
||||
_calculateAbsoluteTileNumber: function(level, x, y) {
|
||||
var num = 0;
|
||||
var size = {};
|
||||
|
||||
|
||||
//Sum up all tiles below the level we want the number of tiles
|
||||
for (var z = 0; z < level; z++) {
|
||||
size = this.gridSize[z];
|
||||
|
Loading…
Reference in New Issue
Block a user