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
35 lines (25 loc) · 1.01 KB
/
Copy pathindex.js
File metadata and controls
35 lines (25 loc) · 1.01 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
/* 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 {ShapeFactory} from './ShapeFactory';
import {ShapeParameters} from './ShapeParameters';
import {Circle as FeatureCircle} from './Circle';
import {Image} from './Image';
import {Label} from './Label';
import {Line as FeatureLine} from './Line';
import {Point} from './Point';
import {Polygon as FeaturePolygon} from './Polygon';
import {Rectangle as FeatureRectangle} from './Rectangle';
import {Sector} from './Sector';
import {Theme as FeatureTheme} from './Theme';
export {ShapeFactory} ;
export {ShapeParameters} ;
export {FeatureCircle} ;
export {Image};
export {Label};
export {FeatureLine};
export {Point} ;
export {FeaturePolygon} ;
export {FeatureRectangle} ;
export {Sector} ;
export {FeatureTheme} ;