thematic-earth
Version:
HTML-based, whole-Earth thematic maps using locally hosted data layers
2 lines • 378 B
JavaScript
/* Copyright (c) 2023 Read Write Tools. Legal use subject to the Thematic Earth Software License Agreement. */
import EnumProxyHandler from'./enum-proxy-handler.class.js';var FeatureType={POINT:'point',LINE:'line',POLYGON:'polygon',SPACE:'space',SPHERE:'sphere',LABEL:'label'};Object.freeze(FeatureType);export default new Proxy(FeatureType,new EnumProxyHandler('FeatureType'));