Changelog and tweak for #863

This commit is contained in:
Ian Gilman 2016-08-29 10:45:28 -07:00
parent 1f75fb8d0a
commit 192c0e5c36
2 changed files with 3 additions and 2 deletions

View File

@ -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:

View File

@ -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];