mirror of https://gitee.com/antv-l7/antv-l7
reactor(layer): scaleContorller
This commit is contained in:
parent
fbadd00dff
commit
b8883b047b
|
@ -48,16 +48,12 @@ scene.on('loaded', () => {
|
|||
const circleLayer = scene.PointLayer({
|
||||
zIndex: 2,
|
||||
})
|
||||
.source(data,{
|
||||
scaledefs:{
|
||||
value:{
|
||||
type:'log'
|
||||
}
|
||||
|
||||
}
|
||||
.source(data)
|
||||
.shape('circle')
|
||||
.size('value', [ 2, 30]) // default 1
|
||||
.scale('value', {
|
||||
type:'log',
|
||||
})
|
||||
.shape('2d:circle')
|
||||
.size('value', [ 2, 80]) // default 1
|
||||
//.size('value', [ 10, 300]) // default 1
|
||||
.active(true)
|
||||
.filter('value', field_8 => {
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
import Base from './base';
|
||||
import * as THREE from './three';
|
||||
import ColorUtil from '../attr/color-util';
|
||||
import Controller from './controller/index';
|
||||
import source from './source';
|
||||
import pickingFragmentShader from '../core/engine/picking/picking_frag.glsl';
|
||||
// import PickingMaterial from '../core/engine/picking/pickingMaterial';
|
||||
|
@ -31,8 +32,10 @@ export default class Layer extends Base {
|
|||
minZoom: 0,
|
||||
maxZoom: 22,
|
||||
rotation: 0,
|
||||
option: {},
|
||||
attrOptions: {
|
||||
},
|
||||
scaleOptions: {},
|
||||
scales: {},
|
||||
attrs: {},
|
||||
// 样式配置项
|
||||
|
@ -140,6 +143,16 @@ export default class Layer extends Base {
|
|||
this._createAttrOption('size', field, values, Global.size);
|
||||
return this;
|
||||
}
|
||||
scale(field, cfg) {
|
||||
const options = this.get('scaleOptions');
|
||||
const scaleDefs = options;
|
||||
if (Util.isObject(field)) {
|
||||
Util.mix(scaleDefs, field);
|
||||
} else {
|
||||
scaleDefs[field] = cfg;
|
||||
}
|
||||
return this;
|
||||
}
|
||||
shape(field, values) {
|
||||
if (field.split(':').length === 2) {
|
||||
this.shapeType = field.split(':')[0];
|
||||
|
@ -195,11 +208,13 @@ export default class Layer extends Base {
|
|||
this.set('styleOptions', styleOptions);
|
||||
return this;
|
||||
}
|
||||
|
||||
filter(field, values) {
|
||||
this._needUpdateFilter = true;
|
||||
this._createAttrOption('filter', field, values, true);
|
||||
return this;
|
||||
}
|
||||
|
||||
animate(field, cfg) {
|
||||
let animateOptions = this.get('animateOptions');
|
||||
if (!animateOptions) {
|
||||
|
@ -235,10 +250,11 @@ export default class Layer extends Base {
|
|||
return this;
|
||||
}
|
||||
_createScale(field) {
|
||||
// TODO scale更新
|
||||
const scales = this.get('scales');
|
||||
let scale = scales[field];
|
||||
if (!scale) {
|
||||
scale = this.layerSource.createScale(field);
|
||||
scale = this.createScale(field);
|
||||
scales[field] = scale;
|
||||
}
|
||||
return scale;
|
||||
|
@ -265,8 +281,30 @@ export default class Layer extends Base {
|
|||
}
|
||||
this._setAttrOptions(attrName, attrCfg);
|
||||
}
|
||||
_initControllers() {
|
||||
const scales = this.get('scaleOptions');
|
||||
const scaleController = new Controller.Scale({
|
||||
defs: {
|
||||
...scales
|
||||
}
|
||||
});
|
||||
this.set('scaleController', scaleController);
|
||||
}
|
||||
|
||||
createScale(field) {
|
||||
const data = this.layerSource.data.dataArray;
|
||||
const scales = this.get('scales');
|
||||
let scale = scales[field];
|
||||
const scaleController = this.get('scaleController');
|
||||
if (!scale) {
|
||||
scale = scaleController.createScale(field, data);
|
||||
scales[field] = scale;
|
||||
}
|
||||
return scale;
|
||||
}
|
||||
// 初始化图层
|
||||
init() {
|
||||
this._initControllers();
|
||||
this._initAttrs();
|
||||
this._scaleByZoom();
|
||||
this._mapping();
|
||||
|
@ -283,6 +321,7 @@ export default class Layer extends Base {
|
|||
this.off('mouseleave', resetHander);
|
||||
}
|
||||
}
|
||||
|
||||
setActive(id, color) {
|
||||
this._activeIds = id;
|
||||
this.layerMesh.material.setUniformsValue('u_activeId', id);
|
||||
|
@ -291,6 +330,7 @@ export default class Layer extends Base {
|
|||
}
|
||||
this.layerMesh.material.setUniformsValue('u_activeColor', color);
|
||||
}
|
||||
|
||||
_addActiveFeature(e) {
|
||||
const { featureId } = e;
|
||||
this._activeIds = featureId;
|
||||
|
@ -306,6 +346,7 @@ export default class Layer extends Base {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
_updateAttr(type) {
|
||||
const self = this;
|
||||
const attrs = this.get('attrs');
|
||||
|
@ -345,6 +386,7 @@ export default class Layer extends Base {
|
|||
}
|
||||
this.emit('sizeUpdated', this.zoomSizeCache[zoom]);
|
||||
}
|
||||
|
||||
_mapping() {
|
||||
const self = this;
|
||||
const attrs = self.get('attrs');
|
||||
|
@ -379,6 +421,7 @@ export default class Layer extends Base {
|
|||
}
|
||||
this.layerData = mappedData;
|
||||
}
|
||||
|
||||
// 更新地图映射
|
||||
_updateMaping() {
|
||||
const self = this;
|
||||
|
@ -407,6 +450,7 @@ export default class Layer extends Base {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 获取属性映射的值
|
||||
_getAttrValues(attr, record) {
|
||||
const scales = attr.scales;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Base from './base';
|
||||
import Controller from './controller/index';
|
||||
import { getTransform, getParser } from '../source';
|
||||
import { extent, tranfrormCoord } from '../util/geo';
|
||||
import { getMap } from '../map/index';
|
||||
|
@ -28,7 +27,6 @@ export default class Source extends Base {
|
|||
// 坐标转换
|
||||
this._projectCoords();
|
||||
|
||||
this._initControllers();
|
||||
}
|
||||
_excuteParser() {
|
||||
const parser = this.get('parser');
|
||||
|
@ -55,27 +53,6 @@ export default class Source extends Base {
|
|||
data.coordinates = tranfrormCoord(data.coordinates, this._coorConvert.bind(this));
|
||||
});
|
||||
}
|
||||
createScale(field) {
|
||||
const data = this.data.dataArray;
|
||||
const scales = this.get('scales');
|
||||
let scale = scales[field];
|
||||
const scaleController = this.get('scaleController');
|
||||
if (!scale) {
|
||||
scale = scaleController.createScale(field, data);
|
||||
scales[field] = scale;
|
||||
}
|
||||
return scale;
|
||||
}
|
||||
_initControllers() {
|
||||
const scales = this.get('scaledefs');
|
||||
const scaleController = new Controller.Scale({
|
||||
defs: {
|
||||
...scales
|
||||
}
|
||||
});
|
||||
this.set('scaleController', scaleController);
|
||||
}
|
||||
|
||||
_getCoord(geo) {
|
||||
if (geo.geometry) {
|
||||
// GeoJSON feature
|
||||
|
|
Loading…
Reference in New Issue