-
Notifications
You must be signed in to change notification settings - Fork 787
/
index.js
48 lines (33 loc) · 2.21 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export {version} from "./build/version"
// for experimental 3d
// export * from "./index.3d.js"
export { default as canvasClear } from "./src/canvas/clear";
export { default as canvasResolutionScale } from "./src/canvas/resolutionScale";
export { default as canvasDrawSimple } from "./src/canvas/draw/simple";
export { default as canvasDrawHeatmap } from "./src/canvas/draw/heatmap";
export { default as canvasDrawGrid } from "./src/canvas/draw/grid";
export { default as canvasDrawHoneycomb } from "./src/canvas/draw/honeycomb";
export { default as webglDrawSimple } from "./src/webgl/draw/simple";
export { default as webglDrawPoint } from "./src/webgl/draw/point";
export { default as webglDrawLine } from "./src/webgl/draw/line";
export { default as webglDrawPolygon } from "./src/webgl/draw/polygon";
export { default as utilCityCenter } from "./src/utils/cityCenter";
export { default as utilCurve } from "./src/utils/curve";
export { default as utilForceEdgeBundling } from "./src/utils/forceEdgeBundling";
export { default as utilDataRangeIntensity } from "./src/utils/data-range/Intensity";
export { default as utilDataRangeCategory } from "./src/utils/data-range/Category";
export { default as utilDataRangeChoropleth } from "./src/utils/data-range/Choropleth";
export { default as Map } from "./src/map/mapHelper";
export { default as baiduMapCanvasLayer } from "./src/map/baidu-map/CanvasLayer";
export { default as baiduMapAnimationLayer } from "./src/map/baidu-map/AnimationLayer";
export { default as baiduMapLayer } from "./src/map/baidu-map/Layer";
export { default as googleMapCanvasLayer } from "./src/map/google-map/CanvasLayer";
export { default as googleMapLayer } from "./src/map/google-map/Layer";
export { default as MaptalksLayer } from "./src/map/maptalks-map/Layer";
export { default as AMapLayer } from "./src/map/gaode-map/Layer";
export { default as OpenlayersLayer } from "./src/map/openlayers-map/Layer";
export { default as leafletMapLayer } from "./src/map/leaflet-map/Layer";
export { default as cesiumMapLayer } from "./src/map/cesium/Layer";
export { default as DataSet } from "./src/data/DataSet";
export { default as geojson } from "./src/data/geojson";
export { default as csv } from "./src/data/csv";