From 01e5133c54adf39957213fcc3d5a79ef834acf14 Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Wed, 13 Sep 2023 08:55:57 +0800
Subject: [PATCH] 部分问题修改完善

---
 src/components/cesiumMap/cesium.vue |   12 +-----------
 1 files changed, 1 insertions(+), 11 deletions(-)

diff --git a/src/components/cesiumMap/cesium.vue b/src/components/cesiumMap/cesium.vue
index 110559e..946f26c 100644
--- a/src/components/cesiumMap/cesium.vue
+++ b/src/components/cesiumMap/cesium.vue
@@ -1,13 +1,3 @@
-<!--
- * @Author: 胡思旗 931347610@qq.com
- * @Date: 2023-08-22 17:50:30
- * @LastEditors: husq 931347610@qq.com
- * @LastEditTime: 2023-09-11 09:57:01
- * @FilePath: \Cloud-API-Demo-Web\src\components\cesiumMap\cesium.vue
- * @Description:
- *
- * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
--->
 <template>
   <div class="height-100 width-100 cesium" id="cesiumContainer"></div>
   <div v-if="centerConfig.type && !centerConfig.latitude" class="pointLongitude">在地图上点击绘制项目中心点</div>
@@ -141,7 +131,7 @@
 
 // 设置项目中所有的项目中心坐标
 watch(() => store.state.map.pointList, (newVal) => {
-  if (newVal && newVal.length > 0) {
+  if (newVal) {
     pointCenter(viewer, newVal)
     clickPoint(viewer, newVal)
   }

--
Gitblit v1.9.3