<template>
|
<div class="public-org-nav-bar"
|
ref="publicOrgNavBar">
|
<div class="container">
|
<div class="header"
|
@mousedown="move"
|
:class="{'move': moveFlag}">
|
<div class="title">
|
<img class="icon"
|
src="/img/icon/jg.png"
|
alt="">
|
<span>
|
{{title}}
|
</span>
|
</div>
|
<img class="close"
|
src="/img/navicon/close.png"
|
alt=""
|
@click="closeModel">
|
</div>
|
<div class="content">
|
<ul>
|
<li v-for="(item, index) in navList"
|
:key="index"
|
@click="mapPopup(item)">
|
<img :src="item.icon"
|
alt="">
|
<span>
|
{{item.navTitle}}
|
</span>
|
</li>
|
</ul>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import { mapGetters } from 'vuex'
|
|
var $ = window.$
|
|
export default {
|
name: 'OrgNavBar',
|
data () {
|
return {
|
moveFlag: false,
|
DC: null
|
}
|
},
|
props: {
|
navList: {
|
type: Array
|
},
|
title: {
|
type: String
|
}
|
},
|
created () {
|
this.DC = global.DC
|
},
|
computed: {
|
...mapGetters([
|
'viewer',
|
'popupBgUrl',
|
'pupupQRUrl',
|
// 点信息
|
'pointPosition',
|
// 点名称
|
'stateName',
|
// 地址
|
'siteName',
|
// 介绍
|
'introduceText',
|
// 全景地址
|
'panoramaUrl'
|
])
|
},
|
methods: {
|
move (e) {
|
const that = this
|
const odiv = this.$refs.publicOrgNavBar // 获取目标元素
|
// 算出鼠标相对元素的位置
|
const disX = e.clientX - odiv.offsetLeft
|
const disY = e.clientY - odiv.offsetTop
|
|
const disH = odiv.offsetHeight
|
const disW = odiv.offsetWidth
|
|
document.onmousemove = (e) => {
|
that.moveFlag = true
|
// 鼠标按下并移动的事件
|
// 用鼠标的位置减去鼠标相对元素的位置,得到元素的位置
|
let left = e.clientX - disX
|
let top = e.clientY - disY
|
|
// 绑定元素位置到positionX和positionY上面
|
|
if (left >= window.innerWidth - disW) {
|
left = window.innerWidth - disW
|
}
|
|
if (left <= 0) {
|
left = 0
|
}
|
|
if (top >= window.innerHeight - disH) {
|
top = window.innerHeight - disH
|
}
|
|
if (top <= 60) {
|
top = 60
|
}
|
|
// 移动当前元素
|
odiv.style.left = (left) + 'px'
|
odiv.style.top = (top) + 'px'
|
odiv.style.bottom = 'auto'
|
}
|
document.onmouseup = (e) => {
|
that.moveFlag = false
|
document.onmousemove = null
|
document.onmouseup = null
|
}
|
},
|
closeModel () {
|
this.$parent.closeModel()
|
},
|
mapPopup (item) {
|
this.$store.commit('CLEAR_ALL', null)
|
|
this.$store.commit('SET_POPUPBGURL', item.bgImg)
|
this.$store.commit('SET_POPUPQRURL', item.QRImg)
|
this.$store.commit('SET_POINTPOSITION', [Number(item.longitude), Number(item.latitude), Number(item.alt), Number(item.heading), Number(item.pitch), Number(item.roll)])
|
this.$store.commit('SET_STATENAME', item.navTitle)
|
|
var that = this
|
|
this.viewer.zoomToPosition(
|
new this.DC.Position(item.longitude, item.latitude, item.alt, item.heading, item.pitch, item.roll),
|
function () {
|
that.newPopup(item)
|
}
|
)
|
},
|
newPopup (item) {
|
const position = this.DC.Transform.transformWGS84ToCartesian(new this.DC.Position(item.longitude, item.latitude, item.alt, item.heading, item.pitch, item.roll))
|
// eslint-disable-next-line no-unused-vars
|
var popup = new this.DC.DivForms(this.viewer, {
|
domId: 'divFormsDomBox',
|
position: [
|
position
|
]
|
})
|
|
this.$store.commit('SET_PANORAMAPOPUP', false)
|
this.$store.commit('SET_DETAILSPOPUP', true)
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang='scss'>
|
.public-org-nav-bar {
|
position: fixed;
|
width: 322px;
|
height: auto;
|
border-radius: 8px;
|
top: 24%;
|
left: 20%;
|
background-color: #fff;
|
z-index: 999;
|
font-size: 14px;
|
.container {
|
.header {
|
position: relative;
|
border-radius: 8px 8px 0 0;
|
width: 100%;
|
height: 36px;
|
line-height: 36px;
|
background-color: #020c17;
|
.title {
|
padding-left: 10px;
|
img {
|
width: 18px;
|
height: 18px;
|
vertical-align: middle;
|
}
|
span {
|
margin-left: 6px;
|
display: inline-block;
|
vertical-align: middle;
|
color: #fff;
|
}
|
}
|
.close {
|
position: absolute;
|
right: 6px;
|
top: 0;
|
left: auto;
|
bottom: 0;
|
margin: auto;
|
width: 14px;
|
height: 14px;
|
}
|
}
|
.move {
|
cursor: move;
|
}
|
.content {
|
clear: both;
|
width: 100%;
|
height: 440px;
|
margin-top: 0px;
|
text-align: center;
|
overflow-y: auto;
|
background: url(/img/bg/nav-bg.jpeg) no-repeat;
|
background-size: 100% 100%;
|
border-radius: 0 0 8px 8px;
|
ul {
|
padding: 15px;
|
padding-top: 4px;
|
li {
|
padding-left: 24px;
|
position: relative;
|
height: 40px;
|
line-height: 40px;
|
list-style: none;
|
border-bottom: 1px dashed #ccc;
|
text-align: left;
|
img {
|
position: absolute;
|
left: 0;
|
right: auto;
|
top: 0;
|
bottom: 0;
|
margin: auto;
|
width: 14px;
|
}
|
span {
|
color: #fff;
|
cursor: pointer;
|
}
|
span:hover {
|
text-decoration: underline;
|
}
|
}
|
}
|
}
|
}
|
}
|
</style>
|