mirror of https://gitee.com/antv-l7/antv-l7
fix: merge master fix conflict
This commit is contained in:
commit
1cf8ecd777
|
@ -290,16 +290,6 @@ scene.removeLayer(layer);
|
|||
|
||||
参数 `layer` {Layer}
|
||||
|
||||
### getLayers
|
||||
|
||||
获取所有的 layer
|
||||
|
||||
```javascript
|
||||
scene.getLayers();
|
||||
```
|
||||
|
||||
return layers {array}
|
||||
|
||||
## 事件
|
||||
|
||||
### on
|
||||
|
|
|
@ -207,16 +207,6 @@ scene.setCenter([lng, lat]);
|
|||
|
||||
参数:`center` {LngLat} 地图中心点
|
||||
|
||||
### setZoom()
|
||||
|
||||
设置地图缩放等级
|
||||
|
||||
参数:`zoom` 地图缩放等级
|
||||
|
||||
```
|
||||
scene.setZoom(zoom)
|
||||
```
|
||||
|
||||
### setZoomAndCenter
|
||||
|
||||
设置地图等级和中心
|
||||
|
@ -318,16 +308,6 @@ scene.removeLayer(layer);
|
|||
|
||||
- `layer` {Layer}
|
||||
|
||||
### getLayers
|
||||
|
||||
获取所有的 layer
|
||||
|
||||
```javascript
|
||||
scene.getLayers();
|
||||
```
|
||||
|
||||
return layers {array}
|
||||
|
||||
## 事件
|
||||
|
||||
### on
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Image
|
|||
order: 4
|
||||
---
|
||||
|
||||
Image 数据主要用于在地图根据经纬度范围添加图图片,不如一幅纸制地图扫描版你要放在地图显示。
|
||||
Image 数据主要用于在地图根据经纬度范围添加图图片,比如一幅纸制地图扫描版你要放在地图显示。
|
||||
|
||||
## parser
|
||||
|
||||
|
|
|
@ -236,7 +236,7 @@ export default class Layers extends Control {
|
|||
: null;
|
||||
|
||||
if (type) {
|
||||
this.emit(type, obj); // TODO:图
|
||||
this.emit(type, obj);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ export interface IBlendOptions {
|
|||
func: BlendingFunctionSeparate;
|
||||
// gl.blendEquation
|
||||
equation: {
|
||||
// TODO: EXT_blend_minmax
|
||||
rgb:
|
||||
| gl.FUNC_ADD
|
||||
| gl.FUNC_SUBTRACT
|
||||
|
|
Loading…
Reference in New Issue