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