From 90671325090a58b0dfc91dac6a84b1c2a09eaac7 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 27 三月 2025 17:29:27 +0800 Subject: [PATCH] 修复绘制轨迹线时,上一组数据没有清除的问题 --- src/stores/toolbox.js | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/stores/toolbox.js b/src/stores/toolbox.js index 93a5cf3..986e7a2 100644 --- a/src/stores/toolbox.js +++ b/src/stores/toolbox.js @@ -2,6 +2,9 @@ import { defineStore } from 'pinia'; export const useToolboxStore = defineStore('toolbox', () => { + const selectedDistrict = ref(null); + // 寮�鍏宠鏀垮尯鍒� + const districtStatus = ref(false); // 寮�鍏冲湴鐗╂爣娉� const featuresStatus = ref(false); // 寮�鍏冲崼鏄熷湴鍥� @@ -18,6 +21,8 @@ const sceneSearchStatus = ref(true); return { + selectedDistrict, + districtStatus, featuresStatus, satelliteStatus, controlbarStatus, -- Gitblit v1.9.3