@annotation-studio/plugin-resource-editor
v1.0.0-rc.35
Published
Resource template exporting UI for annotation images.
Downloads
206
Readme
Annotation Studio - Resource editor 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 @annotation-studio/plugin-resource-editor @annotation-studio/plugin-core --save-dev
Note: you will probably want a viewer plugin too
Then in your code (ES6 in this example)
import CorePlugin from '@annotation-studio/plugin-core';
import ResourceEditor from '@annotation-studio/plugin-resource-editor';
// We need the core plugin.
const core = CorePlugin(
document.getElementById('myContainer'),
{
resourceTemplates: '...',
manifest: '...',
canvas: '...',
elucidateServer: '...',
}
);
// We need to wait for the store to be available.
core.then(store => {
ResourceEditor(
document.getElementById('editor'),
{
canvas: {/* ... */}, // IIIF Canvas as JS object
},
store
);
});