From 681ee627e9f550428991ef07a8df494dcaba68ea Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Thu, 10 Mar 2022 11:37:34 +0800
Subject: [PATCH] +样式调整,增加底部按钮2个一个定位一个重置视角,去除左侧重置视角

---
 src/components/mobileCortrol/index.vue |  202 +++++++++++++++++++++++++-------------------------
 1 files changed, 101 insertions(+), 101 deletions(-)

diff --git a/src/components/mobileCortrol/index.vue b/src/components/mobileCortrol/index.vue
index 765eb33..4357ec4 100644
--- a/src/components/mobileCortrol/index.vue
+++ b/src/components/mobileCortrol/index.vue
@@ -1,123 +1,123 @@
 <template>
-    <div class="m-left-control">
-        <div class="m-l-inbut zoom-in" @click="zoomIn()">
+  <div class="m-left-control">
+    <!-- <div class="m-l-inbut zoom-in" @click="zoomIn()">
             <i class="el-icon-refresh"></i>
-        </div>
-        <!-- <div
+        </div> -->
+    <!-- <div
       class="m-l-inbut zoom-in m-l-inbut-2d"
       :class="{ active: dimension == '3D' }"
       @click="zoomIn('3D')"
     >
       3&nbsp;&nbsp;维
         </div>-->
-        <div
-            class="m-l-inbut zoom-in m-l-inbut-3d"
-            :class="{ active: dimension == '2.5D' }"
-            @click="zoomIn('2.5D')"
-        >3D</div>
+    <div
+      class="m-l-inbut zoom-in m-l-inbut-3d"
+      :class="{ active: dimension == '2.5D' }"
+      @click="zoomIn('2.5D')"
+    >
+      3D
     </div>
+  </div>
 </template>
 
 <script>
-import { mapGetters } from 'vuex'
+import { mapGetters } from "vuex";
 export default {
-    name: 'mobileCortrol',
-    data () {
-        return {
+  name: "mobileCortrol",
+  data() {
+    return {};
+  },
+  computed: {
+    ...mapGetters(["mviewer", "startPointFn", "dimension"]),
+  },
+  created() {},
+  methods: {
+    zoomIn(val) {
+      // this.$store.dispatch("mapFlyTo", {
+      //   //飞入
+      //   lntLat: [115.87988885, 28.72502592, 2100],
+      //   // lntLat: [115.87186406, 28.74449337, 1200],
+      //   // lntLat: [121.50492752204283, 31.21567802276832, 2530],
+      //   heading: 0,
+      //   pitch: -45,
+      //   roll: 0,
+      //   noOpen: true,
+      // });
+      if (val) {
+        if (this.dimension != val) {
+          this.$store.dispatch("MSET_DIMENSIONS", val);
         }
+        return;
+      }
+      this.startPointFn();
     },
-    computed: {
-        ...mapGetters(['mviewer', 'startPointFn', 'dimension'])
-    },
-    created () {
-    },
-    methods: {
-        zoomIn (val) {
-            // this.$store.dispatch("mapFlyTo", {
-            //   //飞入
-            //   lntLat: [115.87988885, 28.72502592, 2100],
-            //   // lntLat: [115.87186406, 28.74449337, 1200],
-            //   // lntLat: [121.50492752204283, 31.21567802276832, 2530],
-            //   heading: 0,
-            //   pitch: -45,
-            //   roll: 0,
-            //   noOpen: true,
-            // });
-            if (val) {
-                if (this.dimension != val) {
-                    this.$store.dispatch('MSET_DIMENSIONS', val)
-                }
-                return
-            }
-            this.startPointFn()
-        }
-    }
-}
+  },
+};
 </script>
 
 <style scoped lang="scss">
 .m-left-control {
-    position: fixed;
-    left: 20px;
-    top: 93px;
-    height: 10px;
-    z-index: 20 !important;
-    .m-l-inbut {
-        width: 35px;
-        height: 35px;
-        background-color: rgb(33, 150, 243);
-        // background-color: white;
-        // stroke-width: 10;
-        // stroke: #fff;
-        display: flex;
-        align-items: center;
-        justify-content: center;
-        color: white;
-        font-size: 22px;
-        margin-bottom: 12px;
-        border-radius: 5px;
-    }
-    .m-l-inbut-2d {
-        position: relative;
-        background-color: white;
-        top: 60px;
-        font-size: 12px;
-        color: #000;
-        border: 1px solid #a4d1ff;
-        border-radius: 5px 5px 0 0;
-        // box-shadow: 0px 0px 10px #409eff inset;
-        // &:hover {
-        //   background-color: rgb(21, 136, 230);
-        //   box-shadow: -2px -2px 3px rgb(3, 74, 136) inset;
-        // }
-    }
-    .m-l-inbut-3d {
-        @extend .m-l-inbut-2d;
-        top: 45px;
-        border-radius: 0 0 5px 5px;
-    }
+  position: fixed;
+  left: 20px;
+  top: 93px;
+  height: 10px;
+  z-index: 20 !important;
+  .m-l-inbut {
+    width: 35px;
+    height: 35px;
+    background-color: rgb(33, 150, 243);
+    // background-color: white;
+    // stroke-width: 10;
+    // stroke: #fff;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    color: white;
+    font-size: 22px;
+    margin-bottom: 12px;
+    border-radius: 5px;
+  }
+  .m-l-inbut-2d {
+    position: relative;
+    background-color: white;
+    top: 60px;
+    font-size: 12px;
+    color: #000;
+    border: 1px solid #a4d1ff;
+    border-radius: 5px 5px 0 0;
+    // box-shadow: 0px 0px 10px #409eff inset;
+    // &:hover {
+    //   background-color: rgb(21, 136, 230);
+    //   box-shadow: -2px -2px 3px rgb(3, 74, 136) inset;
+    // }
+  }
+  .m-l-inbut-3d {
+    @extend .m-l-inbut-2d;
+    top: 45px;
+    border-radius: 0 0 5px 5px;
+  }
 
-    .active {
-        background-color: #409eff;
-        border: 1px solid #409eff;
-        color: #fff;
-        border-radius: 5px;
-        z-index: 10;
-        // box-shadow: -4px -4px 10px rgb(13, 98, 167) inset;
-        // color: rgb(0, 0, 0);
-        // box-shadow: -4px -4px 10px rgb(13, 98, 167) inset;
-        transform: translateY(1px);
-        // position: relative;
-        // &::before {
-        //   top: 1px;
-        //   left: 1px;
-        //   position: absolute;
-        //   content: "";
-        //   width: 100%;
-        //   height: 100%;
-        //   box-shadow: -2px -2px 15px rgb(4, 95, 170) inset;
-        //   // border: 1px solid rgb(14, 54, 87);
-        // }
-    }
+  .active {
+    background-color: #409eff;
+    border: 1px solid #409eff;
+    color: #fff;
+    border-radius: 5px;
+    z-index: 10;
+    // box-shadow: -4px -4px 10px rgb(13, 98, 167) inset;
+    // color: rgb(0, 0, 0);
+    // box-shadow: -4px -4px 10px rgb(13, 98, 167) inset;
+    transform: translateY(1px);
+    // position: relative;
+    // &::before {
+    //   top: 1px;
+    //   left: 1px;
+    //   position: absolute;
+    //   content: "";
+    //   width: 100%;
+    //   height: 100%;
+    //   box-shadow: -2px -2px 15px rgb(4, 95, 170) inset;
+    //   // border: 1px solid rgb(14, 54, 87);
+    // }
+  }
 }
 </style>

--
Gitblit v1.9.3