2019-11-29 12:51:58 +08:00
|
|
|
/*
|
|
|
|
* lC区域控制模式
|
|
|
|
*/
|
|
|
|
import Group from 'zrender/src/container/Group';
|
|
|
|
import EControl from '../element/EControl';
|
|
|
|
import EMouse from './EMouse';
|
|
|
|
|
|
|
|
export default class LcControl extends Group {
|
2019-12-05 14:54:33 +08:00
|
|
|
constructor(model, style) {
|
|
|
|
super();
|
|
|
|
this.z = 20;
|
|
|
|
this._code = model.code;
|
|
|
|
this._type = model._type;
|
|
|
|
this.zlevel = model.zlevel;
|
|
|
|
this.model = model;
|
|
|
|
this.style = style;
|
2020-03-13 13:01:58 +08:00
|
|
|
this.isShowShape = true;
|
2019-12-05 14:54:33 +08:00
|
|
|
this.create();
|
|
|
|
this.createMouseEvent();
|
|
|
|
this.setState(model);
|
|
|
|
}
|
2019-11-29 12:51:58 +08:00
|
|
|
|
2019-12-05 14:54:33 +08:00
|
|
|
create() {
|
|
|
|
const model = this.model;
|
|
|
|
this.control = new EControl({
|
|
|
|
zlevel: this.zlevel,
|
|
|
|
z: this.z,
|
|
|
|
arc: {
|
|
|
|
shape: {
|
|
|
|
cx: model.position.x,
|
|
|
|
cy: model.position.y,
|
|
|
|
r: this.style.LcControl.lamp.radiusR
|
|
|
|
},
|
2020-03-10 13:05:20 +08:00
|
|
|
subType: 'Control',
|
2019-12-05 14:54:33 +08:00
|
|
|
lineWidth: 0,
|
|
|
|
fill: this.style.LcControl.lamp.controlColor
|
|
|
|
},
|
|
|
|
text: {
|
|
|
|
position: [0, 0],
|
|
|
|
x: model.position.x,
|
|
|
|
y: model.position.y + this.style.LcControl.lamp.radiusR + this.style.LcControl.text.distance,
|
|
|
|
fontWeight: this.style.LcControl.text.fontWeight,
|
|
|
|
fontSize: this.style.LcControl.text.fontSize,
|
|
|
|
fontFamily: this.style.fontFamily,
|
|
|
|
text: model.name,
|
|
|
|
textFill: '#fff',
|
|
|
|
textAlign: 'middle',
|
|
|
|
textVerticalAlign: 'top'
|
|
|
|
},
|
|
|
|
style: this.style
|
|
|
|
});
|
2019-11-29 12:51:58 +08:00
|
|
|
|
2019-12-05 14:54:33 +08:00
|
|
|
this.add(this.control);
|
|
|
|
}
|
2019-11-29 12:51:58 +08:00
|
|
|
|
2019-12-05 14:54:33 +08:00
|
|
|
// 设置状态
|
|
|
|
setState(model) {
|
2020-03-13 13:01:58 +08:00
|
|
|
if (!this.isShowShape) return;
|
2019-12-05 14:54:33 +08:00
|
|
|
}
|
2019-11-29 12:51:58 +08:00
|
|
|
|
2019-12-05 14:54:33 +08:00
|
|
|
createMouseEvent() {
|
|
|
|
if (this.style.LcControl.mouseOverStyle) {
|
|
|
|
this.mouseEvent = new EMouse(this);
|
|
|
|
this.add(this.mouseEvent);
|
|
|
|
this.on('mouseout', (e) => { this.mouseEvent.mouseout(e); });
|
|
|
|
this.on('mouseover', (e) => { this.mouseEvent.mouseover(e); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getShapeTipPoint() {
|
|
|
|
if (this.control) {
|
|
|
|
var distance = 2;
|
|
|
|
var rect = this.control.getBoundingRect();
|
|
|
|
return {
|
|
|
|
x: rect.x + rect.width / 2,
|
|
|
|
y: rect.y - distance
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2020-03-11 15:10:08 +08:00
|
|
|
setShowMode() {}
|
2020-03-13 13:01:58 +08:00
|
|
|
setShowStation(stationCode) {
|
|
|
|
if (!stationCode || this.model.stationCode === stationCode) {
|
|
|
|
this.control.show();
|
|
|
|
this.isShowShape = true;
|
|
|
|
this.setState(this.model);
|
|
|
|
} else {
|
|
|
|
this.control.hide();
|
|
|
|
this.isShowShape = false;
|
|
|
|
}
|
|
|
|
}
|
2019-11-29 12:51:58 +08:00
|
|
|
}
|