車庫門調整

This commit is contained in:
joylink_fanyuhong 2024-03-13 16:06:11 +08:00
parent efb8140a29
commit c640f3f85a
6 changed files with 14 additions and 11 deletions

View File

@ -75,10 +75,13 @@
<path d="M20 27H39" stroke="#FFFFFF"/>
<path d="M29 27V43" stroke="#FFFFFF"/>
</symbol>
<symbol id="icon-flood-gate" viewBox="0 0 129 139">
<path fill-rule="evenodd" stroke="rgba(255, 255, 255, 1)" stroke-width="3" d="M0 1.5L61.5 1.5M61.5 1.5L123 1.5M61.5 1.5L61.5 137.5L0 137.5L123 137.5">
<symbol id="icon-flood-gate" viewBox="0 0 129 139" fill="none">
<path fill-rule="evenodd" stroke="rgba(255, 255, 255, 1)" stroke-width="5" d="M0 1.5L61.5 1.5M61.5 1.5L123 1.5M61.5 1.5L61.5 137.5L0 137.5L123 137.5">
</symbol>
<symbol id="icon-car-washing" viewBox="0 0 57 57" fill="none">
<rect x="1.5" y="8.5" width="47" height="47" stroke="#FFFFFF" fill="none" stroke-width="3"/>
<symbol id="icon-car-gate" viewBox="0 0 150 150" fill="none">
<rect x="45" y="3" width="60" height="144" fill="#FFFFFF" stroke="#FFFFFF" >
</symbol>
<symbol id="icon-flood-gat1e" viewBox="0 0 129 139" fill="none">
<path fill-rule="evenodd" stroke="rgba(255, 255, 255, 1)" stroke-width="5" d="M0 1.5L61.5 1.5M61.5 1.5L123 1.5M61.5 1.5L61.5 137.5L0 137.5L123 137.5">
</symbol>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -58,7 +58,7 @@ export const drawCommonLayerList = [
value: ConcentrationDividingLine.Type,
defaultShow: true,
},
{ label: '防淹门', value: GarageDoor.Type, defaultShow: true },
{ label: '车库门', value: FloodGate.Type, defaultShow: true },
{ label: '车库门', value: GarageDoor.Type, defaultShow: true },
{ label: '防淹门', value: FloodGate.Type, defaultShow: true },
{ label: '洗车机', value: CarWashing.Type, defaultShow: true },
];

View File

@ -254,8 +254,8 @@ export const layerList = [
{ label: '轨道区段', value: TrackSection.Type, defaultShow: false },
{ label: '轨道逻辑区段', value: TrackLogicSection.Type, defaultShow: false },
{ label: '自动折返按钮箱', value: AutoReturnBox.Type, defaultShow: true },
{ label: '防淹门', value: GarageDoor.Type, defaultShow: true },
{ label: '车库门', value: FloodGate.Type, defaultShow: true },
{ label: '车库门', value: GarageDoor.Type, defaultShow: true },
{ label: '防淹门', value: FloodGate.Type, defaultShow: true },
{ label: '洗车机', value: CarWashing.Type, defaultShow: true },
];

View File

@ -22,7 +22,7 @@ export class CarWashingDraw extends GraphicDrawAssistant<
super(
app,
template,
'svguse:../../drawIcon.svg#icon-car-washing',
'svguse:../../drawIcon.svg#icon-car-gate',
'洗车机CarWashing'
);
CarWashingInteraction.init(app);

View File

@ -23,7 +23,7 @@ export class FloodGateDraw extends GraphicDrawAssistant<
app,
template,
'svguse:../../drawIcon.svg#icon-flood-gate',
'车库门FloodGate'
'防淹门FloodGate'
);
FloodGateInteraction.init(app);
}

View File

@ -23,7 +23,7 @@ export class GarageDoorDraw extends GraphicDrawAssistant<
app,
template,
'svguse:../../drawIcon.svg#icon-flood-gate',
'防淹门GarageDoor'
'车库门GarageDoor'
);
GarageDoorInteraction.init(app);
}