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