From ff7803c7293caa7f8aee531f83542c9e4f74a7ac Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 11 Feb 2022 13:47:22 +0800
Subject: [PATCH] 我的标记的修改完善
---
src/components/map/index.vue | 38 +++++++++++++++++---------------------
1 files changed, 17 insertions(+), 21 deletions(-)
diff --git a/src/components/map/index.vue b/src/components/map/index.vue
index dbf3aad..7546c3d 100644
--- a/src/components/map/index.vue
+++ b/src/components/map/index.vue
@@ -1,22 +1,21 @@
/* eslint-disable camelcase */
<template>
- <div id="viewer-container"
- style="height: 100%; width: 100%;"
- @click="mapClick($event)">
-
- <video id="video"
- style="position: fixed;
+ <div id="viewer-container" style="height: 100%; width: 100%;" @click="mapClick($event)">
+ <video
+ id="video"
+ style="position: fixed;
visibility: hidden;"
- muted
- autoplay
- loop
- crossorigin
- controls>
- <source src="http://dc.dvgis.cn/examples/data/demo.mp4"
- type="video/mp4" />
+ muted
+ autoplay
+ loop
+ crossorigin
+ controls
+ >
+ <source src="http://dc.dvgis.cn/examples/data/demo.mp4" type="video/mp4" />
</video>
- <div style="
+ <div
+ style="
position: fixed;
left: 4px;
bottom: 4px;
@@ -28,11 +27,10 @@
border-radius: 4px;
background: #2196f3ed;
z-index: 11;
- ">
- 智慧社区
- </div>
+ "
+ >智慧社区</div>
- <dimension :areaLayer='areaLayer' />
+ <dimension :areaLayer="areaLayer" />
<left-nav ref="leftNav"></left-nav>
@@ -40,8 +38,7 @@
<campusBuildingSearch ref="campusBuildingSearch" />
- <campusNav ref="campusNavRoute"
- v-show="campusNavFlag" />
+ <campusNav ref="campusNavRoute" v-show="campusNavFlag" />
<search-details v-if="searchPopupFlag"></search-details>
<org-nav-bar v-if="orgNavBarFlag"></org-nav-bar>
@@ -50,7 +47,6 @@
</template>
<script>
-import axios from 'axios'
import { mapGetters } from 'vuex'
import mapPopup from './components/mapPopup.vue'
import campusBuildingSearch from './components/campusBuildingSearch.vue'
--
Gitblit v1.9.3