fix: fix conflict

This commit is contained in:
thinkinggis 2020-01-31 00:20:32 +08:00
commit b9e54b1595
12 changed files with 30 additions and 30 deletions

View File

@ -5,8 +5,8 @@ order: 3
MarkerLayer 是Marker的升级版Marker是独立的地图标注MarkerLayer则是统一管理大量的Marker数据。
**技术差异**
**技术差异**
- Marker Dom 绘制一个地图元素
- MarkerLayer 统一管理多个DomMarker
- PointLayer 通过 WebGL 绘制元素。

View File

@ -31,13 +31,11 @@ const popup = new L7.Popup(option);
**参数**lnglat
支持数组
```javascript
[112, 32];
[112,32]
```
经纬度对象
```javascript
{
lng: 112,
@ -66,7 +64,8 @@ popup.addTo(scene);
设置 popup html 内容
```javascript
var html = `<p>省份
var html =
`<p>省份
${feature.s} </p><p>地区
${feature.m}</p><p>数值
${feature.t}</p>`;

View File

@ -31,13 +31,11 @@ const popup = new L7.Popup(option);
**参数**lnglat
支持数组
```javascript
[112, 32];
[112,32]
```
经纬度对象
```javascript
{
lng: 112,
@ -66,7 +64,8 @@ popup.addTo(scene);
设置 popup html 内容
```javascript
var html = `<p>省份
var html =
`<p>省份
${feature.s} </p><p>地区
${feature.m}</p><p>数值
${feature.t}</p>`;

View File

@ -503,7 +503,9 @@ layer.on('unpick', (ev) => {}); // 图层外的操作的所有事件
图层初始化完成后触发
```javascript
layer.on('inited', (option) => {});
layer.on('inited',(option)=>{
})
```
### add

View File

@ -503,7 +503,9 @@ layer.on('unpick', (ev) => {}); // 图层外的操作的所有事件
图层初始化完成后触发
```javascript
layer.on('inited', (option) => {});
layer.on('inited',(option)=>{
})
```
### add

View File

@ -264,7 +264,6 @@ scene.panBy(x, y);
```
参数:
- `x` {number} 水平方向移动像素 向右为正方向
- `y` {number} 垂直方向移动像素 向下为正方向
@ -278,7 +277,7 @@ scene.setPitch(pitch);
参数 :
`pitch` {number}
 `pitch` {number}
### fitBounds
@ -315,7 +314,6 @@ scene.removeLayer(layer);
### off
移除事件监听
- `eventName` {string} 事件名
- `handler` {function } 事件回调函数