Annotation Studio - Viewer plugin
This is the Open Seadragon or static image viewer component.
Usage
To use the plugin you need to add it as a dependency along with the core plugin:
$ npm i digirati-annotation-plugin-viewer digirati-annotation-plugin-core --save-dev
Then in your code (ES6 in this example)
import CorePlugin from 'digirati-annotation-plugin-core';
import ViewerPlugin from 'digirati-annotation-plugin-viewer';
const core = CorePlugin(
document.getElementById('myContainer'),
{
resourceTemplates: '...',
manifest: '...',
canvas: '...',
elucidateServer: '...',
}
);
core.then(store => {
ViewerPlugin(
document.getElementById('viewer'),
{
viewer: 'OpenSeadragon',
height: 6400,
width: 4800,
},
store
);
return store;
});
Your HTML should also have a fallback image:
<div id="viewer">
<img src="..." height="480" width="640"/>
</div>