antv-l7/packages/layers
@thinkinggis ab2d2de4b2
Feat raster (#1477)
* docs: 添加星图地球数据源

* chore: terrain rgb

* chore: 官网build 命令

* chore: remove image data

* chore: 重构目录

* fix: lint format
2022-11-14 13:54:00 +08:00
..
src Feat raster (#1477) 2022-11-14 13:54:00 +08:00
.fatherrc.ts feat: merge master to feat_source_hooks (#1412) 2022-10-20 12:03:59 +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: 更新beta 版本 (#1453) 2022-11-02 17:22:07 +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