VectorCategory.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. const VectorCategory = {
  2. Line: {
  3. SingleArrowLine: "SingleArrowLine",
  4. DoubleArrowLine: "DoubleArrowLine",
  5. NormalLine: "NormalLine",
  6. BaseLine: "BaseLine",
  7. MeasureLine: "MeasureLine",
  8. FreeMeasureLine: "FreeMeasureLine",
  9. GuideLine: "GuideLine",
  10. PositionLine: "PositionLine", //定位线。基准点与待测点相连的线,或者与待测基准点相连的线
  11. GuidePositionLine: "GuidePositionLine", //定位辅助线
  12. ExtendedPositionLine: "ExtendedPositionLine", //定位延长线
  13. //重做定位
  14. GuideLocationLine: "GuideLocationLine", //定位辅助线
  15. LocationLineByFixPoint: "LocationLineByFixPoint", //经过固定点的定位线
  16. LocationLineByBasePoint: "LocationLineByBasePoint", //经过基础点的定位线
  17. LocationLineByFixPointToFixPoint: "LocationLineByFixPointToFixPoint", //经过固定点到固定点的定位线,综合定位法
  18. LocationLineByFixPointToBasePoint: "LocationLineByFixPointToBasePoint", //经过固定点到基础点的定位线,综合定位法
  19. },
  20. Point: {
  21. BasePoint: "BasePoint", //基准点
  22. NormalPoint: "NormalPoint", //正常点
  23. TestBasePoint: "TestBasePoint", //待测基准点,待测点与基准线相交的点
  24. FixPoint: "FixPoint", //固定点
  25. GuidePoint: "GuidePoint", //辅助点,定位法需要
  26. },
  27. SVG:{
  28. SVG: "SVG",
  29. RoadStructure: "RoadStructure"
  30. }
  31. };
  32. export default VectorCategory;