We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using OpenSeadragon 2.1.1 with the DeepZoom-protocol against IIPImage server that nrtmosaic emulates does not work when tileSources is specified using DZI. This is related to openseadragon/openseadragon#411 and openseadragon/openseadragon#413
tileSources
A hackish fix is to edit openseadragon.js by replacing the lines
openseadragon.js
options.tilesUrl = url.replace( /([^\/]+?)(\.(dzi|xml|js))?\/?(\?.*)?$/, '$1_files/');
with
options.tilesUrl = url.replace( /([^\/]+)\.(dzi|xml|js)(\?.*|$)/, '$1_files/');
Unfortunately the implications are not clear at this point. This should be investigated and hopefully upstreamed to OpenSeadragon.
The text was updated successfully, but these errors were encountered:
Added patched OpenSeadragon 2.2.1 (see issue #17) for IIPImage support
d916fdf
Some work on issue #16,partly solved by @kaarefc by a OpenSeadragon p…
99a135f
…atch (see issue #17). Temporarily halted by lack of original image size availability in Pyramids, leading to visible rounding errors.
No branches or pull requests
Using OpenSeadragon 2.1.1 with the DeepZoom-protocol against IIPImage server that nrtmosaic emulates does not work when
tileSources
is specified using DZI. This is related to openseadragon/openseadragon#411 and openseadragon/openseadragon#413A hackish fix is to edit
openseadragon.js
by replacing the lineswith
Unfortunately the implications are not clear at this point. This should be investigated and hopefully upstreamed to OpenSeadragon.
The text was updated successfully, but these errors were encountered: