Published
Edited
Feb 4, 2022
3 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
MyImportantFormatter = function(annotation) {
const isImportant = annotation.bodies.find(b => {
return b.purpose === 'tagging' && b.value.toLowerCase() === 'important'
});
if (isImportant) {
return 'important';
}
}
Insert cell
Insert cell
html`
<style>
.a9s-annotation.important .a9s-inner {
stroke-width:2px;
stroke:blue;
fill:rgba(0,0,255,0.1);
-webkit-filter:drop-shadow(0 0 10px rgba(0,0,255,0.8));
filter:drop-shadow(0 0 10px rgba(0,0,255,0.8));
}

.a9s-annotation.important .a9s-inner:hover {
stroke-width:6px;
stroke:blue;
fill:rgba(0,0,255,0.3);
}
</style>`
Insert cell
Insert cell
// Option 2: set the anno.formatters
anno.formatters = [ MyImportantFormatter ];
Insert cell
Insert cell
Insert cell
// Import Annotorious as a library in this notebook
Annotorious = require('@recogito/annotorious@2.7.1');
Insert cell
// Initialize Annotorious on the sample image
anno = Annotorious.init({
image: image,
allowEmpty: true
});
Insert cell
Insert cell
Insert cell
// Add sample annotations on Lucy, Emmet and Batman
anno.setAnnotations(SAMPLE_ANNOTATIONS);
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more