A plugin to enable drawing of connections between annotations.
Import via script tag:
<script src="https://cdn.jsdelivr.net/npm/@recogito/recogito-connections@latest/dist/recogito-connections.js"></script>
window.onload = function() {
var r = Recogito.init({
content: 'content'
});
var connections = recogito.Connections(r);
// Load highlights and connections
r.loadAnnotation('annotations.w3c.json');
connections.on('createConnection', function(c) {
console.log('created', c);
});
connections.on('updateConnection', function(updated, previous) {
console.log('updated', updated, previous);
});
connections.on('deleteConnection', function(c) {
console.log('deleted', c);
});
};
Connections are represented as standard web annotations. The difference to text highlights is that
the target
property of connection annotations points to the IDs of the two annotations it connects.
Example:
{
"@context": "http://www.w3.org/ns/anno.jsonld",
"type": "Annotation",
"id": "#connection-1",
"body": [],
"target": [
{ "id": "#highlight-1" },
{ "id": "#highlight-2" }
]
}
$ npm install
$ npm start