feat: add MAP annotationType

This commit is contained in:
Mazzella, Jesse D. (ARC-TI)[KBR Wyle Services, LLC] 2023-05-25 19:01:14 -07:00
parent 5152583c3b
commit 3f2c63c9d7

View File

@ -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';