diff --git a/src/api/annotation/AnnotationAPI.js b/src/api/annotation/AnnotationAPI.js index bb46a805e0..2c5c42f1eb 100644 --- a/src/api/annotation/AnnotationAPI.js +++ b/src/api/annotation/AnnotationAPI.js @@ -32,13 +32,15 @@ import _ from 'lodash'; * @property {String} PIXEL_SPATIAL The pixel-spatial annotation type * @property {String} TEMPORAL The temporal annotation type * @property {String} PLOT_SPATIAL The plot-spatial annotation type + * @property {String} MAP The map annotation type */ const ANNOTATION_TYPES = Object.freeze({ NOTEBOOK: 'NOTEBOOK', GEOSPATIAL: 'GEOSPATIAL', PIXEL_SPATIAL: 'PIXEL_SPATIAL', TEMPORAL: 'TEMPORAL', - PLOT_SPATIAL: 'PLOT_SPATIAL' + PLOT_SPATIAL: 'PLOT_SPATIAL', + MAP: 'MAP' }); const ANNOTATION_TYPE = 'annotation';