@@ -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 {
@@ -547,3 +547,8 @@ export function regionZone() {
});
+
+//全景
+export function fullExtent() {
+ invokeParams('FullExtent');
+}