Browse Source

修改bug

shuhao 4 months ago
parent
commit
2c4fdeae4e
3 changed files with 10 additions and 8 deletions
  1. 1 0
      src/utils/ol-map/Map.js
  2. 5 5
      src/views/authentic/authenticMap.js
  3. 4 3
      src/views/authentic/index.vue

+ 1 - 0
src/utils/ol-map/Map.js

@@ -399,6 +399,7 @@ class Map {
 		if(isView){
 			vm.map.getView().fit(extent, { padding: padding || [20, 20, 20, 20] });
 		}
+		return f
 	}
 
 	addLayer(layer){

+ 5 - 5
src/views/authentic/authenticMap.js

@@ -226,13 +226,11 @@ class AuthenticMap {
   }
 
   // 开始编辑
-  startModify(type) {
+  startModify(type, feature) {
     this.kmap.startModify();
     this.kmap.endDraw();
     if(type==='upload'){
-      const arr = this.kmap.getLayerFeatures()
-      const lastItem = arr[arr.length - 1]
-      mapData.point = lastItem
+      mapData.point = feature
       mapData.point.set("icon", "point-act");
       this.kmap.polygonStyle(mapData.point);
       mapData.isPointHide = mapData.point;
@@ -409,11 +407,13 @@ class AuthenticMap {
   //添加地块
   setAreaGeometry(geometryArr) {
     let that = this;
+    let res = []
     geometryArr.map((item) => {
       item.icon = "point";
       item.iconHide = "false";
-      that.kmap.setLayerWkt(item.featureWkt, item);
+      res.push(that.kmap.setLayerWkt(item.featureWkt, item));
     });
+    return res
   }
 
   deletePointFun(point,callback){

+ 4 - 3
src/views/authentic/index.vue

@@ -228,6 +228,7 @@ import { dateFormat } from "@/utils/date_util";
 import { exportExcel, parseMultiPolygon } from "@/utils/index";
 import { useStore } from "vuex";
 import Pdf from "./Pdf";
+import {Feature} from "ol";
 const pdfShow = ref(false);
 const mouseStyle = ref(1);
 const router = useRouter();
@@ -451,15 +452,15 @@ const onSuccess = (res) => {
         disabledForm.value = false;
         formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
         const geom = [{ featureWkt: res.data.geom, ...res.data }];
-        authenticMap.setAreaGeometry(geom);
+        let featureList = authenticMap.setAreaGeometry(geom);
         authenticMap.fit([res.data.geom]);
-        updatePointList("upload",geom[0]);
+        updatePointList("upload", geom[0]);
         heightArr.value = res.data.height;
         const arr = pointList.value.map((item, index) => {
             return [...item, res.data.height[index]];
         });
         getArea(arr);
-        authenticMap.startModify("upload");
+        authenticMap.startModify("upload", featureList[0]);
         uploadRef.value.clearFiles();
     } else {
         ElMessage.error("上传失败");