|
@@ -281,6 +281,13 @@
|
|
|
<img src="../../assets/img/closeMap.png" alt="" />
|
|
<img src="../../assets/img/closeMap.png" alt="" />
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 地图导览遮罩 -->
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="rightMapSmBox"
|
|
|
|
|
+ :class="{ rightMapSmBoxAc: mapShow }"
|
|
|
|
|
+ @click="mapShow = false"
|
|
|
|
|
+ ></div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -429,7 +436,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 自动漫游隐藏
|
|
// 自动漫游隐藏
|
|
|
-#play{
|
|
|
|
|
|
|
+#play {
|
|
|
display: none !important;
|
|
display: none !important;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -585,6 +592,24 @@ export default {
|
|
|
right: 0px;
|
|
right: 0px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+// 地图遮罩
|
|
|
|
|
+.rightMapSmBox {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ opacity: 0;
|
|
|
|
|
+ pointer-events: none;
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ transition: all 0.2s;
|
|
|
|
|
+ backdrop-filter: blur(4px);
|
|
|
|
|
+}
|
|
|
|
|
+.rightMapSmBoxAc {
|
|
|
|
|
+ opacity: 1;
|
|
|
|
|
+ pointer-events: auto;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
// 右上角的地图
|
|
// 右上角的地图
|
|
|
.rightTopMap {
|
|
.rightTopMap {
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|