Commit 98abf5b3 authored by 郭铭瑶's avatar 郭铭瑶 🤘

开启鼠标事件&去掉拖拽开关按钮

parent 0561516b
......@@ -3,7 +3,7 @@
</template>
<script lang="ts">
import { computed, defineComponent, nextTick, onMounted, PropType } from 'vue'
import { computed, defineComponent, PropType } from 'vue'
import store from '@/store'
declare const SMap: any
declare const Plugins: any
......@@ -43,7 +43,7 @@ export default defineComponent({
viewMode: '3D',
center: [1019.614669, 54.167243],
// center: [-135.98002789627407, -722.1597065437004],
zooms: [7, 12],
zooms: [7, 20],
zoom: 8,
pitch: 45,
mapStyle: 'smap://styles/dark',
......@@ -51,7 +51,6 @@ export default defineComponent({
...config,
...props.config,
}).on(SMap.MapEvent.maploaded, () => {
setMouseEvent(false)
// setBuildingBlock()
ctx.emit('complete', map)
addListener()
......
......@@ -65,7 +65,6 @@ export interface GlobalStateProps {
curView: ViewType
curMapType: string
showCommunityPoints: boolean
mapDragable: boolean
readonly zhenxing: any
readonly weihai: any
readonly workArea1: any
......
......@@ -26,9 +26,6 @@ export default {
SET_SHOW_COMMUNITY_POINTS(state: GlobalStateProps, val: boolean): void {
state.showCommunityPoints = val
},
SET_MAP_DRAGABLE(state: GlobalStateProps, val: boolean): void {
state.mapDragable = val
},
SET_PROPERTY_SUMMARY(
state: GlobalStateProps,
val: { [key: string]: number }
......
......@@ -5,7 +5,6 @@ export default {
curMapType: '2D',
curView: { name: '南京东路街道', type: 'street' },
showCommunityPoints: false,
mapDragable: false,
viewOptions: [
{ name: '南京东路街道', type: 'street' },
{ name: '第一工作站', type: 'work1', id: '01001' },
......
......@@ -77,14 +77,6 @@
/>
<template #title> 缩小地图 </template>
</a-tooltip>
<a-tooltip placement="left">
<img
draggable="false"
src="@/assets/images/map-btn8.png"
@click="setMapDrag"
/>
<template #title> 开启/关闭地图拖拽 </template>
</a-tooltip>
</div>
<m-modal
v-model="showMonitor"
......@@ -371,10 +363,6 @@ export default defineComponent({
map.value.zoom(type)
}
const dragAble = ref(false)
const setMapDrag = () => {
dragAble.value = !dragAble.value
map.value.setMouseEvent(dragAble.value)
}
return {
prefix,
rotation,
......@@ -395,7 +383,6 @@ export default defineComponent({
isCommunityPointsShowNow,
showCommunityPoints,
zoomMap,
setMapDrag,
}
},
})
......
......@@ -64,7 +64,6 @@ import btn4 from '@/assets/images/map-btn4.png'
import btn5 from '@/assets/images/map-btn5.png'
import btn6 from '@/assets/images/map-btn6.png'
import btn7 from '@/assets/images/map-btn7.png'
import btn8 from '@/assets/images/map-btn8.png'
import d2 from '@/assets/images/2d.png'
import d3 from '@/assets/images/3d.png'
import zoomIn from '@/assets/images/zoom-in.png'
......@@ -83,7 +82,6 @@ export default defineComponent({
: { key: '2D', icon: d2, title: '开启2D地图' }
const list = [
// { key: 'search', icon: btn1 },
{ key: 'dragable', icon: btn8, title: '开启/关闭拖拽功能' },
{ key: 'in', icon: zoomIn, title: '放大地图' },
{ key: 'out', icon: zoomOut, title: '缩小地图' },
{ key: 'full', icon: btn2, title: '全屏' },
......@@ -125,8 +123,6 @@ export default defineComponent({
!store.state.showCommunityPoints
)
break
case 'dragable':
store.commit('SET_MAP_DRAGABLE', !store.state.mapDragable)
default:
break
}
......
......@@ -13,12 +13,6 @@ export default function useSwitchMap(map: any) {
},
{ immediate: true }
)
watch(
() => store.state.mapDragable,
(val) => {
map.value.setMouseEvent(val)
}
)
watch(
() => store.state.showCommunityPoints,
(val) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment