mirror of https://gitee.com/antv-l7/antv-l7
Fix docs (#817)
* docs: 更新scene 文档 * fix: 更新文档 * fix: 组件文档 * fix: source 循序引用
This commit is contained in:
parent
7c6116470f
commit
18c79fdd27
|
@ -17,7 +17,7 @@ L7 目前支持 Control
|
|||
|
||||
#### option
|
||||
|
||||
position: `string` 控件位置支持是个方位
|
||||
position: `string` 控件位置支持 8 个方位
|
||||
|
||||
- bottomright
|
||||
- topright
|
||||
|
|
|
@ -491,6 +491,8 @@ scene.setPitch(pitch);
|
|||
|
||||
### setMapStatus 设置地图状态
|
||||
|
||||
可用来关闭地图的一些交互操作
|
||||
|
||||
参数 :
|
||||
|
||||
```javascript
|
||||
|
@ -525,6 +527,57 @@ scene.fitBounds([
|
|||
]);
|
||||
```
|
||||
|
||||
### containerToLngLat 画布坐标转经纬度
|
||||
|
||||
画布坐标转经纬度坐标
|
||||
|
||||
参数 :
|
||||
|
||||
- pixel 画布的坐标 [x ,y ] {array }
|
||||
|
||||
```
|
||||
scene.pixelToLngLat([10,10]);
|
||||
```
|
||||
|
||||
### lngLatToContainer 经纬度转画布坐标
|
||||
|
||||
经纬度坐标转画布坐标
|
||||
|
||||
参数 :
|
||||
|
||||
- lnglat 经纬度坐标 [lng,lat ] {array }
|
||||
|
||||
```
|
||||
scene.lngLatToPixel([120,10]);
|
||||
|
||||
```
|
||||
|
||||
### pixelToLngLat 像素坐标转经纬度
|
||||
|
||||
像素坐标:不同级别下地图上某点的位置
|
||||
地图像素坐标转经纬度坐标
|
||||
|
||||
参数 :
|
||||
|
||||
- pixel 画布的坐标 [x ,y ] {array }
|
||||
|
||||
```
|
||||
scene.pixelToLngLat([10,10]);
|
||||
```
|
||||
|
||||
### lngLatToPixel 经纬度转像素坐标
|
||||
|
||||
经纬度坐标转像素坐标
|
||||
|
||||
参数 :
|
||||
|
||||
- lnglat 经纬度坐标 [lng,lat ] {array }
|
||||
|
||||
```
|
||||
scene.lngLatToPixel([120,10]);
|
||||
|
||||
```
|
||||
|
||||
### exportMap 导出地图图片
|
||||
|
||||
导出地图,目前仅支持导出可视化层,不支持底图导出
|
||||
|
|
|
@ -36,15 +36,17 @@ scene.on('loaded', () => {
|
|||
气泡图: pointLayer
|
||||
};
|
||||
const layersControl = new Layers({
|
||||
overlayers
|
||||
overlayers,
|
||||
position: 'rightcenter'
|
||||
});
|
||||
|
||||
scene.addControl(layersControl);
|
||||
});
|
||||
|
||||
const zoomControl = new Zoom({
|
||||
position: 'topright'
|
||||
position: 'rightcenter'
|
||||
});
|
||||
|
||||
const scaleControl = new Scale({
|
||||
position: 'bottomright'
|
||||
});
|
||||
|
|
|
@ -68,9 +68,6 @@ export default class FeatureScalePlugin implements ILayerPlugin {
|
|||
this.scaleOptions = layer.getScaleOptions();
|
||||
const attributes = styleAttributeService.getLayerStyleAttributes();
|
||||
const { dataArray } = layer.getSource().data;
|
||||
// if (dataArray.length === 0) {
|
||||
// return;
|
||||
// }
|
||||
this.caculateScalesForAttributes(attributes || [], dataArray);
|
||||
layer.layerModelNeedUpdate = true;
|
||||
return true;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import { ILayer, ILayerPlugin, IMapService, TYPES } from '@antv/l7-core';
|
||||
import Source from '@antv/l7-source';
|
||||
import { encodePickingColor, rgb2arr } from '@antv/l7-utils';
|
||||
import { injectable } from 'inversify';
|
||||
import 'reflect-metadata';
|
||||
|
|
|
@ -384,7 +384,7 @@ export default class TextModel extends BaseModel {
|
|||
const characterSet: string[] = [];
|
||||
data.forEach((item: IEncodeFeature) => {
|
||||
let { shape = '' } = item;
|
||||
shape = shape.toString();
|
||||
shape = `${shape}`;
|
||||
if (characterSet.indexOf(shape) === -1) {
|
||||
characterSet.push(shape);
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ import { cloneDeep, isFunction, isString, mergeWith } from 'lodash';
|
|||
// @ts-ignore
|
||||
// tslint:disable-next-line:no-submodule-imports
|
||||
import Supercluster from 'supercluster/dist/supercluster';
|
||||
import { getParser, getTransform } from './';
|
||||
import { getParser, getTransform } from './factory';
|
||||
import { cluster } from './transform/cluster';
|
||||
import { statMap } from './utils/statistics';
|
||||
import { getColumn } from './utils/util';
|
||||
|
|
Loading…
Reference in New Issue