自动折返绘图数据添加是否显示边框字段
This commit is contained in:
parent
2f96f68e46
commit
f8cadc33b8
@ -210,6 +210,32 @@ class SkinCode extends defaultStyle {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this[deviceType.MapCycleButtonVO] = {
|
||||||
|
// 是否显示
|
||||||
|
visible: true,
|
||||||
|
text: {
|
||||||
|
fontSize: 11, // 字体大小
|
||||||
|
fontWeight: 'normal', // 字体粗细
|
||||||
|
distance: 5 // 灯跟文字距离
|
||||||
|
},
|
||||||
|
subtitleText: {
|
||||||
|
fontSize: 11, // 字体大小
|
||||||
|
fontWeight: 'normal', // 字体粗细
|
||||||
|
distance: 17 // 等于副标题距离
|
||||||
|
},
|
||||||
|
lamp: {
|
||||||
|
lineDash: null, // 灯的包围框
|
||||||
|
borderShow: false, // 是否显示边框
|
||||||
|
stroke: '#FFFFFF', // 框的颜色
|
||||||
|
fill: 'rgba(0,0,0,0)', // 填充色
|
||||||
|
radiusR: 6, // 控制灯大小
|
||||||
|
controlColor: '#b5b3b3' // 控制灯颜色 (灰色)
|
||||||
|
},
|
||||||
|
OutFrame: {
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
this[deviceType.StationStand] = {
|
this[deviceType.StationStand] = {
|
||||||
common: { // 通用属性
|
common: { // 通用属性
|
||||||
textFontSize: 8, // 站台默认字体大小
|
textFontSize: 8, // 站台默认字体大小
|
||||||
|
@ -220,6 +220,7 @@ class SkinCode extends defaultStyle {
|
|||||||
distance: 17 // 等于副标题距离
|
distance: 17 // 等于副标题距离
|
||||||
},
|
},
|
||||||
lamp: {
|
lamp: {
|
||||||
|
borderShow: true, // 是否显示边框
|
||||||
lineDash: null, // 灯的包围框
|
lineDash: null, // 灯的包围框
|
||||||
stroke: '#FFFFFF', // 框的颜色
|
stroke: '#FFFFFF', // 框的颜色
|
||||||
fill: 'rgba(0,0,0,0)', // 填充色
|
fill: 'rgba(0,0,0,0)', // 填充色
|
||||||
|
@ -76,21 +76,24 @@ export default class Automactic extends Group {
|
|||||||
});
|
});
|
||||||
this.add(this.subtitleText);
|
this.add(this.subtitleText);
|
||||||
}
|
}
|
||||||
const arcRect = this.getArcBoundingRect();
|
|
||||||
this.arcBorder = new Rect({
|
if (this.style.MapCycleButtonVO.lamp.borderShow) {
|
||||||
zlevel: this.zlevel,
|
const arcRect = this.getArcBoundingRect();
|
||||||
z: this.z,
|
this.arcBorder = new Rect({
|
||||||
silent: true,
|
zlevel: this.zlevel,
|
||||||
shape: arcRect,
|
z: this.z,
|
||||||
style: {
|
silent: true,
|
||||||
lineDash: this.style.MapCycleButtonVO.lamp.lineDash,
|
shape: arcRect,
|
||||||
stroke: this.style.MapCycleButtonVO.lamp.stroke,
|
style: {
|
||||||
fill: this.style.MapCycleButtonVO.lamp.fill
|
lineDash: this.style.MapCycleButtonVO.lamp.lineDash,
|
||||||
}
|
stroke: this.style.MapCycleButtonVO.lamp.stroke,
|
||||||
});
|
fill: this.style.MapCycleButtonVO.lamp.fill
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.add(this.arcBorder);
|
||||||
|
}
|
||||||
this.add(this.control);
|
this.add(this.control);
|
||||||
this.add(this.text);
|
this.add(this.text);
|
||||||
this.add(this.arcBorder);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 设置状态
|
// 设置状态
|
||||||
|
Loading…
Reference in New Issue
Block a user