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
26 lines (25 loc) · 989 Bytes
/
Copy pathindex.js
File metadata and controls
26 lines (25 loc) · 989 Bytes
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
/* 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} from './Collection';
import {Curve} from './Curve';
import {GeoText} from './GeoText' ;
import {LinearRing} from './LinearRing' ;
import {LineString} from './LineString' ;
import {MultiLineString} from './MultiLineString' ;
import {MultiPoint} from './MultiPoint' ;
import {MultiPolygon} from './MultiPolygon' ;
import {Point as GeometryPoint} from './Point' ;
import {Polygon} from './Polygon' ;
import {Rectangle} from './Rectangle';
export {Collection} ;
export {Curve} ;
export {GeoText} ;
export {LinearRing};
export {LineString} ;
export {MultiLineString} ;
export {MultiPoint} ;
export {MultiPolygon} ;
export {GeometryPoint} ;
export {Polygon};
export {Rectangle} ;