2019-10-08 19:20:12 +08:00
|
|
|
import BaseLayer from './core/BaseLayer';
|
2019-10-16 10:13:44 +08:00
|
|
|
import HeatMapLayer from './heatmap';
|
|
|
|
import Line from './line';
|
2019-10-08 19:20:12 +08:00
|
|
|
import PointLayer from './point';
|
2019-10-12 21:26:54 +08:00
|
|
|
import Point from './point/point';
|
2019-10-08 19:20:12 +08:00
|
|
|
import PolygonLayer from './polygon';
|
2019-10-16 10:13:44 +08:00
|
|
|
import ImageLayer from './raster';
|
|
|
|
export {
|
|
|
|
BaseLayer,
|
|
|
|
PointLayer,
|
|
|
|
PolygonLayer,
|
|
|
|
Point,
|
|
|
|
Line,
|
|
|
|
ImageLayer,
|
|
|
|
HeatMapLayer,
|
|
|
|
};
|