openseadragon-annotations-super-lite
v0.2.0
Published
Super-lite-annotations implementation for openseadragon.
Downloads
57
Readme
openseadragon-annotations-super-lite
Super-lite-annotations plugin for openseadragon.
This plugin provides a thin layer to manage openseadragon Overlays for image annotation usage.
Features
- 0 deps, under 500 lines of code
- Basic features
- Click viewer to render openseadragon Overlays as annotation
- Move by drag
- Resizing
- Delete button
- Export and restore annotations through JSON
⚠️ This plugin does not offer default styles for created annotation overlays.
You need to apply your CSS for related classes.
.osdasl-host {
box-sizing: border-box;
outline: 1px solid rgba(255, 255, 255, 0.8);
cursor: move;
will-change: width, height, top, left;
}
.osdasl-host:hover {
background-color: rgba(0, 255, 26, 0.2);
}
.osdals-host.-dragging {
background-color: transparent;
cursor: grabbing;
}
/* and so on... */
Install
npm i openseadragon
npm i openseadragon-annotations-super-lite
TypeScript definitions are included. ✌️
[!CAUTION] We are using
requestIdleCallback
api, but it's not supported by Safari. Please install polyfill if needed. https://caniuse.com/requestidlecallback
Usage
import OpenSeadragon from "openseadragon";
import { AnnotationsSuperLite, type AnnotationEvent } from "openseadragon-annotations-super-lite";
// Install plugin along with OSD core
const viewer = new OpenSeadragon.Viewer({ /* ... */ });
const myAnno = new AnnotationsSuperLite(viewer, { channelName: "osdasl" });
// [Optional] Set annotation behavior
myAnno.setAnnotationOptions({
activate: { selectable: true, removable: true, resizable: false, draggable: false },
});
// [Optional] Restore previous annotations
const annotations = [{
id: "osdasl_1675845237828",
location: [0, 0, 0.04, 0.04],
}]
myAnno.restore(annotations);
// [Optional] Register event handlers
myAnno.activate({ clickToAdd: true, keyboardShortcut: false });
// [Optional] Communicate with plugin via BroadcastChannel API
const channel = new BroadcastChannel("osdasl");
channel.onmessage = ({ data: message }: MessageEvent<AnnotationEvent>) => {
switch (message.type) {
case "annotation:added": {
message.data.id;
message.data.location;
// Save it if needed and restore later
}
case "annotation:updated": { }
case "annotation:removed": { }
case "annotation:selected": { }
case "annotation:deselected": { }
}
};
// Destroy instance
channel.onmessage = null;
channel.close();
myAnno.destroy();
viewer.destroy();
This demo using Svelte for client UI, but plugin itself does not require any deps.