style: lint style

This commit is contained in:
shihui 2022-01-06 15:55:07 +08:00
parent 15c97497eb
commit ea05b0ba9c
5 changed files with 15 additions and 14 deletions

View File

@ -28,8 +28,9 @@ layer.animatte({
enable: true,
});
```
✨ 在开启 animate 后默认会打开点亮窗户的动画
🌟 开启 animate 动画是打开扫光动画的前提
✨ 在开启 animate 后默认会打开点亮窗户的动画
🌟 开启 animate 动画是打开扫光动画的前提
### style

View File

@ -6,6 +6,7 @@ order: 2
`markdown:docs/common/style.md`
绘制弧线 通过贝塞尔曲线算法技术弧线
## 使用
```javascript
@ -32,13 +33,12 @@ source(data, {
});
```
`markdown:docs/api/line_layer/features/segmentNumber.zh.md`
`markdown:docs/api/line_layer/features/segmentNumber.zh.md`
`markdown:docs/api/line_layer/features/thetaOffset.zh.md`
`markdown:docs/api/line_layer/features/thetaOffset.zh.md`
`markdown:docs/api/line_layer/features/linear.zh.md`
`markdown:docs/api/line_layer/features/linear.zh.md`
`markdown:docs/api/line_layer/features/animate.zh.md`
`markdown:docs/api/line_layer/features/animate.zh.md`
`markdown:docs/common/layer/base.md`

View File

@ -31,8 +31,8 @@ const layer = new LineLayer({})
<img width="60%" style="display: block;margin: 0 auto;" alt="案例" src='https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*JjUcTZ8-PC8AAAAAAAAAAABkARQnAQ'>
[在线案例](../../../examples/gallery/basic#arcCircle)
### 数据
绘制弧线只需提供起止点坐标即可(起止点调换位置,弧线的形状会对称相反,飞线动画的方向也会相反)
@ -49,8 +49,8 @@ source(data, {
});
```
`markdown:docs/api/line_layer/features/linear.zh.md`
`markdown:docs/api/line_layer/features/linear.zh.md`
`markdown:docs/api/line_layer/features/animate.zh.md`
`markdown:docs/api/line_layer/features/animate.zh.md`
`markdown:docs/common/layer/base.md`

View File

@ -6,6 +6,7 @@ order: 5
`markdown:docs/common/style.md`
把地球看做一个球体,通过地面上任意两点和地心做一平面,平面与地球表面相交看到的圆周就是大圆。两点之间的大圆劣弧线是两点在地面上的最短距离。沿着这一段大圆弧线航行时的航线称为大圆航线。
## 使用
```javascript

View File

@ -7,9 +7,9 @@ order: 0
## 简介
L7 支持各种类型的线图层包括平面路径、平面弧线、平面虚线、平面动画、3D 弧线等等。用户通过切换 shape 的参数,以及配置对应 shape 的线图层支持的 style 样式,可以得到各种类型的线。
L7 支持各种类型的线图层包括平面路径、平面弧线、平面虚线、平面动画、3D 弧线等等。用户通过切换 shape 的参数,以及配置对应 shape 的线图层支持的 style 样式,可以得到各种类型的线。
不同的 lineLayer 会支持不同的相关特性,具体的使用可以请查看详细的文档
✨ 不同的 lineLayer 会支持不同的相关特性,具体的使用可以请查看详细的文档
### shape
@ -75,14 +75,13 @@ lineLayer.size([1, 2]); // 宽度为1高度2
```
### texture
线图层支持了纹理贴图的能力,不同 shape 的图层对 texturte 的支持情况会存在细微的差别,详细使用请查看相关图层的文档
`markdown:docs/api/line_layer/features/linear.zh.md`
`markdown:docs/api/line_layer/features/animate.zh.md`
[在线案例](../../../examples/line/isoline#height)
`markdown:docs/common/layer/base.md`