|
viewer.annotationAdd = args => {
viewer.exportAnnotationsAsObject().then(function(value) {
var exportData = value;
alert(exportData);
});
};
|
|
viewer.annotationAdd = args => {
viewer.exportAnnotation();
};
|
|
<button id="import">Import</button>
document.getElementById("import").addEventListener("click", function() {
viewer.importAnnotation();
});
|