antv-l7/packages/layers
thinkinggis f00a72c61f chore: publish 2020-05-20 11:49:09 +08:00
..
src fix(layer): 数据映射设置成不存在字段时,不能正常渲染 2020-05-12 14:26:35 +08:00
.gitignore fix(doc): file name lowercase 2019-11-22 18:08:49 +08:00
CHANGELOG.md chore: publish 2020-04-10 15:37:10 +08:00
README.md 完善构建方案 & 容器 Bug 修复 (#84) 2019-11-25 15:27:56 +08:00
package.json chore: publish 2020-05-20 11:49:09 +08:00
tsconfig.build.json fix(doc): file name lowercase 2019-11-22 18:08:49 +08:00

README.md

L7's Collection of Layers

Installation

yarn add @antv/l7-layers

Getting Started

Use built-in layers directly:

import { PointLayer } from '@antv/l7-layers';

const layer = new PointLayer({
  // ...initialization options
});

Create a custom layer with the help of BaseLayer:

import { BaseLayer } from '@antv/l7-layers';

class MyCustomLayer extends BaseLayer {
  // ...override methods
}

const layer = new MyCustomLayer({
  // ...initialization options
});

Current Built-in Layers

  • PointLayer
  • PolygonLayer
  • LineLayer
  • HeatmapLayer
  • RasterLayer