-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy pathindex.js
More file actions
52 lines (51 loc) · 1.75 KB
/
index.js
File metadata and controls
52 lines (51 loc) · 1.75 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
/* 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 {Bar as FeatureThemeBar } from './Bar';
import {Bar3D as FeatureThemeBar3D } from './Bar3D';
import {Circle as FeatureThemeCircle } from './Circle';
import {Graph as FeatureThemeGraph } from './Graph';
import {Line as FeatureThemeLine } from './Line';
import {Pie as FeatureThemePie } from './Pie';
import {Point as FeatureThemePoint } from './Point';
import {RankSymbol as FeatureThemeRankSymbol } from './RankSymbol';
import {Ring as FeatureThemeRing } from './Ring';
import {ThemeVector as FeatureThemeVector } from './ThemeVector';
import {
FeatureShapeFactory,
ShapeParameters,
ShapeParametersCircle,
ShapeParametersImage,
ShapeParametersLabel,
ShapeParametersLine,
ShapeParametersPoint,
ShapeParametersPolygon,
ShapeParametersRectangle,
ShapeParametersSector,
FeatureTheme
} from './feature';
import {LevelRenderer} from './levelRenderer';
export { FeatureThemeBar };
export { FeatureThemeBar3D };
export { FeatureThemeCircle };
export { FeatureThemeGraph };
export { FeatureThemeLine };
export { FeatureThemePie };
export { FeatureThemePoint };
export { FeatureThemeRankSymbol };
export { FeatureThemeRing };
export { FeatureThemeVector };
export {
FeatureShapeFactory,
ShapeParameters,
ShapeParametersCircle,
ShapeParametersImage,
ShapeParametersLabel,
ShapeParametersLine,
ShapeParametersPoint,
ShapeParametersPolygon,
ShapeParametersRectangle,
ShapeParametersSector,
FeatureTheme
};
export { LevelRenderer };