forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
66 lines (65 loc) · 1.52 KB
/
index.js
File metadata and controls
66 lines (65 loc) · 1.52 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
* This program are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/
import {
Collection,
Curve,
GeoText,
LinearRing,
LineString,
MultiLineString,
MultiPoint,
MultiPolygon,
GeometryPoint,
Polygon,
Rectangle
} from './geometry/index' ;
import {
StringExt,
NumberExt,
FunctionExt,
ArrayExt
} from './BaseTypes' ;
import {Bounds} from './Bounds' ;
import {Credential} from './Credential' ;
import {DateExt} from './Date' ;
import {Event} from './Event' ;
import {Events} from './Events' ;
import {Feature} from './Feature' ;
import {Geometry} from './Geometry' ;
import {LonLat} from './LonLat' ;
import {Pixel} from './Pixel' ;
import {Size} from './Size' ;
import {Util as CommonUtil} from './Util' ;
import {Vector as GeometryVector} from './Vector' ;
export {
Collection,
Curve,
GeoText,
LinearRing,
LineString,
MultiLineString,
MultiPoint,
MultiPolygon,
GeometryPoint,
Polygon,
Rectangle
};
export {
StringExt,
NumberExt,
FunctionExt,
ArrayExt
}
export {Bounds};
export {Credential};
export {DateExt}
export {Event}
export {Events};
export {Feature};
export {Geometry} ;
export {LonLat};
export {Pixel} ;
export {Size};
export {CommonUtil} ;
export {GeometryVector};