Forráskód Böngészése

添加时空差异分析(其实就是两个面的差集计算……)

DESKTOP-6LTVLN7\Liumouren 1 hónapja
szülő
commit
98b81a277f
1 módosított fájl, 4 hozzáadás és 5 törlés
  1. 4 5
      src/components/wgn/controlPanel.vue

+ 4 - 5
src/components/wgn/controlPanel.vue

@@ -430,10 +430,10 @@ export default {
               value: "1.2.5.5",
               label: "线面体分割",
             },
-            // {
-            //   value: "1.2.5.6",
-            //   label: "时空差异分析",
-            // },
+            {
+              value: "1.2.5.6",
+              label: "时空差异分析",
+            },
           ],
         },
       ],
@@ -689,7 +689,6 @@ export default {
     addLine(coordinates) {
       // 1. 解析线的坐标
       console.log("addLine coordinates", coordinates);
-
       // 2. 处理坐标格式:如果是二维数组则取第一个元素,否则直接使用
       const lineCoordinates =
         Array.isArray(coordinates[0]) && Array.isArray(coordinates[0][0])