antv-l7/packages/layers
YiQianYao 44d31b8fbc
chore: publish update version 2.13.0 -> 2.13.1 (#1565)
* chore: publish

* chore: update version 2.13.0 -> 2.13.1 fix bug

Co-authored-by: shihui <yiqianyao.yqy@alibaba-inc.com>
2023-01-09 11:07:06 +08:00
..
src fix: 修复鸿蒙系统 webgl 扩展不支持错误 (#1561) 2023-01-06 11:22:20 +08:00
.fatherrc.ts Feat: L7 Component 完备性升级 (#1391) 2022-10-17 17:01:52 +08:00
.gitignore fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
CHANGELOG.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
README.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
package.json chore: publish update version 2.13.0 -> 2.13.1 (#1565) 2023-01-09 11:07:06 +08:00
tsconfig.build.json fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +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