Hello,
My Tl;dr questions are:
url AND a referenceStripThumbnailUrl?referenceStrip to work without this? (e.g., different config settings or standard derivative sizes I should be generating?)Context:
I've been following along with some issues in the repo and stealing ideas, but I'm still struggling to get reference strip thumbnails working for IIIF level 0 (static derivative) sources.
I made a repo to demonstrate. So far, I can get my tileSources working OR my referenceStrip, but not both.
referenceStripThumbnailUrl):My manifest and each loaded canvas have thumbnails and I have useCanvas set to true, but OSD has not been requesting the existing thumbnail derivatives.
Ref:
//! openseadragon 2.4.2
//! Built on 2020-03-05
//! Git commit: v2.4.2-0-c450749
//! http://openseadragon.github.io
//! License: http://openseadragon.github.io/license/
Thanks!
I abandoned the reference strip and used flickity.js instead. It seems to work well.
In this example I use styled numbers in boxes, but you could use small thumbnails instead.
@mnyrop in https://github.com/mnyrop/osd_test/blob/main/src/osd-2.js you should change line 10:
url: val.images[0].resource.service['@id'] + '/info.json',
...to:
tileSource: val.images[0].resource.service['@id'] + '/info.json',
thanks @iangilman! that works perfectly. i'll leave the repo up (with fix added) in case this ticket is useful to anyone else.