Browse Source

表格数据

citygis-lhh 5 months ago
parent
commit
dae7d9f982
2 changed files with 8 additions and 1 deletions
  1. 3 1
      src/stores/mapStore.js
  2. 5 0
      src/utils/map/mapOperation.js

+ 3 - 1
src/stores/mapStore.js

@@ -7,7 +7,8 @@ import {
   stopTrajectory,
   startBidding,
   closeOutputPoint,
-  addPoint
+  addPoint,
+  fullExtent
 } from '@/utils/map/mapOperation.js';
 import { getTrajectorPointOnPeople, getTrajectorPointOnCar } from '@/service/api/mapRequest.js';
 import { useDrawPointStore } from '@/stores/drawPointManage';
@@ -172,6 +173,7 @@ export const useMapStore = defineStore('mapStore', () => {
     } else {
       closePoint(value);
     }
+    fullExtent();
   };
 
   return {

+ 5 - 0
src/utils/map/mapOperation.js

@@ -547,3 +547,8 @@ export function regionZone() {
     }
   });
 }
+
+//全景
+export function fullExtent() {
+  invokeParams('FullExtent');
+}