antv-l7/packages/layers
YiQianYao b0d9862164
feat: add DebugService (#1590)
* feat: 新增 debugService step1

* chore: layer_init test 测试文件修改

* refactor: 重构日志系统结构

* feat: add remove layer log

* feat: add render debug

* feat: 增加 debugService 的开关控制

* feat: add simple source log

* feat: 调整 souce getLog 方法的输出

* feat: add scene webgl context lost

* docs: 补充 scene 的事件监听方法

* feat: 标砖 debugService 枚举类型、修复初始化时间节点错误

* style: lint style

* fix: 删除单独的sourcelog,优化了log 流程 (#1599)

* chore: remove render model log

* docs: add debugService contents

* style: lint style

* docs: add IDebugLog details

* style: lint style

---------

Co-authored-by: shihui <yiqianyao.yqy@alibaba-inc.com>
Co-authored-by: @thinkinggis <lzx199065@gmail.com>
2023-02-14 17:26:11 +08:00
..
src feat: add DebugService (#1590) 2023-02-14 17:26:11 +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 Publish 2.13.5 (#1596) 2023-02-13 18:40:57 +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