From 2c8b6c370dde23d1a648a1eb9e96b733b7781f7f Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Fri, 31 Oct 2025 11:45:51 +0800
Subject: [PATCH] feat:添加限制

---
 src/views/layerManagement/index.vue |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/src/views/layerManagement/index.vue b/src/views/layerManagement/index.vue
index c26f7af..7b733e1 100644
--- a/src/views/layerManagement/index.vue
+++ b/src/views/layerManagement/index.vue
@@ -9,6 +9,9 @@
       </div>
       <!-- 地图 -->
       <div class="mapContainer">
+        <div class="tool-tip" v-if="layerParams.addNest ">
+		        点击地图生成测绘区域
+		</div>
         <div id="layMap" class="ztzf-cesium"></div>
         <leftList
           v-if="
@@ -376,5 +379,24 @@
     width: 100%;
     height: 100%;
   }
+  .tool-tip {
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	position: absolute;
+	width: 800px;
+	height: 64px;
+	right: 430px;
+	top: 60px;
+	font-family: Source Han Sans CN, Source Han Sans CN;
+	font-size: 18px;
+	color: #ffffff;
+
+	background: rgba(11, 31, 58, 0.7);
+	-moz-user-select: none;
+	-webkit-user-select: none;
+	-ms-user-select: none;
+	user-select: none;
+}
 }
 </style>

--
Gitblit v1.9.3