You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the case where the @id received from an image information (info.json) request contains a url-escaped image identifier component, and there is no identifier field, for example: "@id": "scheme://host:port/prefix/url%20escaped%2Fidentifier"
Mirador seems to incorrectly specify the tilesUrl for OpenSeaDragon (even though simply creating an OpenSeaDragon viewer separately and specifying the info request url as tilesUrl will work). Mirador displays thumbnails for the given image just fine, there's only an issue when prepping info for OSD.
On Thu, Jul 17, 2014 at 12:17 AM, Hashim Muqtadir [email protected]
wrote:
In the case where the @id received from an image information (info.json)
request contains a url-escaped image identifier component, and there is no
identifier field, for example:
"@id": "scheme://host:port/prefix/url%20escaped%2Fidentifier"
Mirador seems to incorrectly specify the tilesUrl for OpenSeaDragon (even
though simply creating an OpenSeaDragon viewer separately and specifying
the info request url as tilesUrl will work). Mirador displays thumbnails
for the given image just fine, there's only an issue when prepping info for
OSD.
In the case where the
@id
received from an image information (info.json
) request contains a url-escaped image identifier component, and there is noidentifier
field, for example:"@id": "scheme://host:port/prefix/url%20escaped%2Fidentifier"
Mirador seems to incorrectly specify the
tilesUrl
for OpenSeaDragon (even though simply creating an OpenSeaDragon viewer separately and specifying the info request url astilesUrl
will work). Mirador displays thumbnails for the given image just fine, there's only an issue when prepping info for OSD.According to the image API specification the
identifier
field shouldn't be required.This can be fixed by changing
json.identifier = matches[2];
tojson.identifier = decodeURIComponent(matches[2]);
ingetImageHostUrl
in iiif.js.The text was updated successfully, but these errors were encountered: