-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathearthtrek-dist.js
29 lines (28 loc) · 1.22 KB
/
earthtrek-dist.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var EarthTrekEntity = require('./dist/js/earthtrek-entity');
var EarthTrekData = require('./dist/js/earthtrek-data');
var EarthTrekHandler = require( './dist/js/earthtrek-handler');
var EarthTrekCore = require('./dist/js/earthtrek-core').default;
var _require = require('./dist/js/earthtrek-core'),
earthTrekInstance = _require.earthTrekInstance;
var earthTrekUtils = require('./dist/js/utils/earthtrek-utils');
var EarthTrekLayer = require('./dist/js/earthtrek-layer');
var EarthTrekProvider = require('./dist/js/earthtrek-propagation');
var EarthTrekSatellite = require('./dist/js/earthtrek-satellite');
var EarthTrekPropagation = require('./dist/js/earthtrek-propagation');
var EarthTrekToolbar = require('./dist/js/utils/earthtrek-toolbar');
var EarthTrekRightToolbar = require('./dist/js/utils/earthtrek-right-toolbar');
var EarthTrek = {
Core: EarthTrekCore,
Data: EarthTrekData,
Entity: EarthTrekEntity,
Handler: EarthTrekHandler,
Layer: EarthTrekLayer,
utils: earthTrekUtils,
provider: EarthTrekProvider,
satellite: EarthTrekSatellite,
propagation: EarthTrekPropagation,
Toolbar: EarthTrekToolbar,
RightToolbar: EarthTrekRightToolbar,
instance: earthTrekInstance
};
module.exports = EarthTrek;