dhis2-maps-api
Version:
Maps API for DHIS2 based on Leaflet
15 lines (10 loc) • 537 B
JavaScript
import map from './Map';
import '../scss/gis-api.scss';
// Impored here to avoid Jest error
import 'script-loader!../node_modules/rbush/rbush'; // Required by Leaflet.LayerGroup.Collision
import 'script-loader!../lib/ee_api_js_debug'; // Required by EarthEngine
// When this file was included in EarthEngine.js it caused error when running tests:
// TypeError: undefined is not an object (evaluating 'goog.global.navigator')
// This file is never loaded by test scripts
// import 'script!../lib/ee_api_js_debug';
export default map;