citygis-lhh 3 miesięcy temu
rodzic
commit
89198f40f1

+ 1 - 2
src/components/map/GisMap.vue

@@ -31,8 +31,7 @@ onMounted(() => {
       url: window.CityGisHtml,
       onReady: function () {
         console.log('ready');
-        regionZone('松江区');
-        //默认加载
+        regionZone('松江');
         addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
           imageUrl: new URL(`@/assets/image/mapTools/new_icon.png`, import.meta.url).href
         });

+ 2 - 2
src/stores/mapStore.js

@@ -147,9 +147,9 @@ export const useMapStore = defineStore('mapStore', () => {
         setCurrentToolSelectArray(item);
         if (selectPartKey.value?.length > 0) {
           if (selectPartKey.value == '浦东新区') {
-            regionZone('浦东新区');
+            regionZone('浦东');
           } else {
-            regionZone(selectPartKey.value);
+            regionZone(selectPartKey.value.split('区')[0]);
           }
         }
       }

+ 2 - 2
src/views/DataCenterGis/components/RightPanel.vue

@@ -275,9 +275,9 @@ const handleSelect = (key) => {
   }
   mapStore.selectPartKey = key;
   if (key == '浦东新区') {
-    regionZone('浦东新区');
+    regionZone('浦东');
   } else {
-    regionZone(key);
+    regionZone(key.split('区')[0]);
   }
 };