@dhis2/gis-api
Version:
Maps API for DHIS2 based on Leaflet
17 lines (12 loc) • 583 B
JavaScript
import Map from "./Map";
import supportedLayers from './layers/layerTypes';
import supportedControls from './controls/controlTypes';
import "../scss/gis-api.scss";
// When this file was included in EarthEngine.js it caused error when running tests
// This file is never loaded by test scripts
import "script-loader!@google/earthengine/build/ee_api_js";
// Export supported layer types as an array
export const layerTypes = Object.keys(supportedLayers);
// Export supported control types as an array
export const controlTypes = Object.keys(supportedControls);
export default Map;