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
Known issue with info.json from e-codices:
imageView is not working because the identifier parameter is missing:
OSD error: "Error: IIIF required parameters not provided."
Known issue with info.json from e-codices:
imageView is not working because the identifier parameter is missing:
OSD error: "Error: IIIF required parameters not provided."
Yep :)
I'm not sure of what tilesUrl actually is. It may seem quite self-evident but I didn't find clear documentation about it. The example page of iiif tile support in OSD is vague: "...must specify the URL of the tile service with the tilesUrl attribute" http://openseadragon.github.io/examples/tilesource-iiif/
Known issue with info.json from e-codices:
imageView is not working because the identifier parameter is missing:
OSD error: "Error: IIIF required parameters not provided."
Solved:
The issue comes from the tilesUrl parameter provided in info.json => "tilesUrl": "http://xxxx.unifr.ch/image/iiif/", which is wrong regarding the way Mirador is processing it in iiif.js.
Fixed by dealing only with id parameter at https://github.com/IIIF/mirador/blob/master/js/src/iiif.js#L45:
json.image_host = json['@id'] || '';
Does it still make sense to take tilesUrl into account to deal with "image_host" and "identifier" for OSD?
The text was updated successfully, but these errors were encountered: