Browse Source

Merge branch 'master' of http://www.sysuimars.cn:3000/feiniao/feiniao-pc-vue

shuhao 2 months ago
parent
commit
68a46387f8
2 changed files with 144 additions and 247 deletions
  1. 29 31
      src/views/authentic/authenticMap.js
  2. 115 216
      yarn.lock

+ 29 - 31
src/views/authentic/authenticMap.js

@@ -311,38 +311,36 @@ class AuthenticMap {
           const geometry = feature.getGeometry();
           let coordinates = geometry.getCoordinates()[0]; // 获取多边形的顶点坐标
             ElMessage.success("已选择该点位")
-            const features = f
-            //代码可优化,明天优化
-              if(mapData.selectPointArr.length>0){
-                if(features.get("id")===mapData.selectPointArr[0].get("id")){
-                    const list = features.getGeometry().getCoordinates();
-                  coordinates = list[0][0]
-                    // const arr = list[0][0].find(subArray => subArray.includes(coordinates))
-                  let arr = []
-                  let i = 0;let curDistance = 0
-                  for(let subArray of coordinates){
-                    let from = turf.point(subArray);
-                    let to = turf.point(lonlat);
-                    let options = { units: "miles" };
-                    let distance = turf.distance(from, to, options);
-                    if(distance < 0.1){
-                      if(curDistance == 0){
-                        arr = subArray
-                        curDistance = distance
-                        mapData.pointIndex = i
-                      }else if(curDistance > distance){
-                        arr = subArray
-                        curDistance = distance
-                        mapData.pointIndex = i
-                      }
-                    }
-                    i++
-                  }
-                  that.selectPointLayer.refresh();
-                  let point = new Feature(new Point(arr));
-                  that.selectPointLayer.addFeature(point);
-                  }
+            let list 
+            if(mapData.selectPointArr.length>0){
+              list = f.getGeometry().getCoordinates();
+            }else{
+              list = mapData.point.getGeometry().getCoordinates();
+            }
+            coordinates = list[0][0]
+            let arr = []
+            let i = 0;let curDistance = 0
+            for(let subArray of coordinates){
+              let from = turf.point(subArray);
+              let to = turf.point(lonlat);
+              let options = { units: "miles" };
+              let distance = turf.distance(from, to, options);
+              if(distance < 0.1){
+                if(curDistance == 0){
+                  arr = subArray
+                  curDistance = distance
+                  mapData.pointIndex = i
+                }else if(curDistance > distance){
+                  arr = subArray
+                  curDistance = distance
+                  mapData.pointIndex = i
+                }
               }
+              i++
+            }
+            that.selectPointLayer.refresh();
+            let point = new Feature(new Point(arr));
+            that.selectPointLayer.addFeature(point);
             mapData.selectPoint = coordinates
         }
       }

File diff suppressed because it is too large
+ 115 - 216
yarn.lock


Some files were not shown because too many files changed in this diff