@cgcs2000/l7-layers
v2.8.36
Published
L7's collection of built-in layers
Downloads
10
Readme
L7's Collection of Layers
Installation
yarn add @cgcs2000/l7-layers
Getting Started
Use built-in layers directly:
import { PointLayer } from '@cgcs2000/l7-layers';
const layer = new PointLayer({
// ...initialization options
});
Create a custom layer with the help of BaseLayer
:
import { BaseLayer } from '@cgcs2000/l7-layers';
class MyCustomLayer extends BaseLayer {
// ...override methods
}
const layer = new MyCustomLayer({
// ...initialization options
});
Current Built-in Layers
- PointLayer
- PolygonLayer
- LineLayer
- HeatmapLayer
- RasterLayer