antv-l7/docs/api/base.zh.md

30 lines
922 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 图层基类
order: 2
---
`markdown:docs/common/style.md`
## 简介
L7 Layer 接口设计遵循图形语法所有图层都继承于基类baseLayer
语法示例
```javascript
const layer = new BaseLayer(option) // option - 传入构造函数的参数对象,提供 layer 的初始状态
.source(...) // 传入图层需要的数据以及相关的解析器
.shape(...) // 为图层指定具体的形状circle/triangle 等
.color(...) // 指定图层的颜色配置
.texture(...) // 指定图层引用的纹理
.size(...) // 设置图层元素的大小
.animate(...) // 设置图层元素的动画模式
.active(...) // 指定图层元素是否支持划过选中
.select(...) // 指定图层元素是否支持点击选中
.style(...); // 指定图层自定义样式的配置
scene.addLayer(layer);
```
`markdown:docs/common/layer/base.md`