Example
Register a AnnotationNoteHoverEvent using NutrientViewer.EventName.ANNOTATION_NOTE_HOVER and prevent the default annotation note UI from showing.
instance.addEventListener("annotationNote.press", (event) => {
event.preventDefault();
});
Nutrient Web SDK
Register a AnnotationNoteHoverEvent using NutrientViewer.EventName.ANNOTATION_NOTE_HOVER and prevent the default annotation note UI from showing.
instance.addEventListener("annotationNote.press", (event) => {
event.preventDefault();
});
This event will be emitted whenever an annotation note is hovered.