@@ -98,7 +98,7 @@ export default class AddPoint {
lineService.createByPointId(
testPointId,
join.vectorId,
- VectorCategory.Line.PositionLine
+ VectorCategory.Line.GuidePositionLine
);
@@ -301,7 +301,10 @@ export default class ListenLayer {
}
const line = dataService.getLine(lineId);
- if (line.getCategory() == VectorCategory.Line.PositionLine) {
+ if (
+ line.getCategory() == VectorCategory.Line.PositionLine ||
+ line.getCategory() == VectorCategory.Line.GuidePositionLine
+ ) {
continue;
let startPoint = dataService.getPoint(line.startId);
@@ -7,6 +7,7 @@ const VectorCategory = {
MeasureLine: "MeasureLine",
GuideLine: "GuideLine",
PositionLine: "PositionLine", //定位线。基准点与待测点相连的线,或者与待测基准点相连的线
+ GuidePositionLine: "GuidePositionLine", //定位辅助线
},
Point: {
BasePoint: "BasePoint", //基准点