From 3f2c63c9d7c4154f9ce3692483e1a42d9c2f0989 Mon Sep 17 00:00:00 2001 From: "Mazzella, Jesse D. (ARC-TI)[KBR Wyle Services, LLC]" Date: Thu, 25 May 2023 19:01:14 -0700 Subject: [PATCH] feat: add `MAP` annotationType --- src/api/annotation/AnnotationAPI.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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';