|
@@ -0,0 +1,310 @@
|
|
|
+<template>
|
|
|
+ <div id="simulateFly" :class="[useMapStore().simulate_flyShow?'switch-right-active':'switch-right']">
|
|
|
+ <div class="top-menu">
|
|
|
+ <div v-for="(item,index) in menuList" class="menu-item" :class="[item.chosen?'top-menu-chosen':'top-menu-item']" :key="index" @click="changeMenu(item,index)">
|
|
|
+ <span>{{item.name}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <template v-if="currentMenu === 'existing'">
|
|
|
+ <div v-for="(item ,index) in existingPathList" :key="index" class="single" @click="showPath(item)" :class="[item.chosen?'single-icon-chosen':'single-icon']">
|
|
|
+ <span>{{item.begin}}--{{item.end}}</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <div v-for="(item ,index) in planPathList" :key="index" class="single" :class="[item.chosen?'single-icon-chosen':'single-icon']">
|
|
|
+ <span>{{item.begin}}--{{item.end}}</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import {ref} from "vue";
|
|
|
+import {useMapStore} from "@/store/mapStore.js";
|
|
|
+import {PathPipe} from "@/unit/map/addLayer.js";
|
|
|
+let menuList = ref([
|
|
|
+ {
|
|
|
+ name:"现有航路",
|
|
|
+ chosen:true,
|
|
|
+ value:"existing"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name:"规划航路",
|
|
|
+ chosen:false,
|
|
|
+ value:"plan"
|
|
|
+ },
|
|
|
+]);
|
|
|
+let currentPaths = [];//当前选中的路径
|
|
|
+let existingPathList = ref([
|
|
|
+ {
|
|
|
+ id:"1",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"同济大学",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4307.0713031925261, 7251.5063864272088,100],
|
|
|
+ [4207.5877708923072, 7308.6565007288009,100],
|
|
|
+ [4050.9541242914274, 7308.6565007288009,100],
|
|
|
+ [3661.4866786887869, 7162.6062086299062,100],
|
|
|
+ [2960.8686107881367, 6910.7223715279251,100],
|
|
|
+ [2910.0685091875494, 6045.003973422572,100],
|
|
|
+ [2793.651609685272, 5721.1533257234842,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"2",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"复旦大学",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4307.0713031925261, 7251.5063864272088,100],
|
|
|
+ [4207.5877708923072, 7308.6565007288009,100],
|
|
|
+ [4050.9541242914274, 7308.6565007288009,100],
|
|
|
+ [3661.4866786887869, 7162.6062086299062,100],
|
|
|
+ [3113.2689155880362, 7162.6062086299062,100]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"3",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"复旦大学学生公寓",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4307.0713031925261, 7251.5063864272088,100],
|
|
|
+ [4207.5877708923072, 7308.6565007288009,100],
|
|
|
+ [4050.9541242914274, 7308.6565007288009,100],
|
|
|
+ [3661.4866786887869, 7162.6062086299062,100],
|
|
|
+ [3542.9531082902104, 7171.0728922281414,100],
|
|
|
+ [3352.6202267482877, 7543.2479691505432,100],
|
|
|
+ [2515.309386334382, 7247.2730446271598,100],
|
|
|
+ [2481.4426519349217, 7477.9901727326214,100]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"4",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"财大绿叶步行街",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4307.0713031925261, 7251.5063864272088,100],
|
|
|
+ [4207.5877708923072, 7308.6565007288009,100],
|
|
|
+ [4050.9541242914274, 7308.6565007288009,100],
|
|
|
+ [3661.4866786887869, 7162.6062086299062,100],
|
|
|
+ [3542.9531082902104, 7171.0728922281414,100],
|
|
|
+ [3352.6202267482877, 7543.2479691505432,100],
|
|
|
+ [3084.568078446202, 8067.3945490997285,100],
|
|
|
+ [2648.6596530349925, 8013.507910432294,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"5",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"国正中心",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4307.0713031925261, 7251.5063864272088,100],
|
|
|
+ [4207.5877708923072, 7308.6565007288009,100],
|
|
|
+ [4050.9541242914274, 7308.6565007288009,100],
|
|
|
+ [3661.4866786887869, 7162.6062086299062,100],
|
|
|
+ [3542.9531082902104, 7171.0728922281414,100],
|
|
|
+ [2973.5686361864209, 8284.441785633564,100],
|
|
|
+ [3316.469321988523, 8288.6751274317503,100],
|
|
|
+ [3316.469321988523, 8417.7920523341745,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"6",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"互联宝地",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4673.2553688948974, 7064.3463766910136,100],
|
|
|
+ [4946.3059149952605, 5978.4942049868405,100],
|
|
|
+ [5183.24076386448, 5030.0933498516679,100],
|
|
|
+ [5095.9280892377719, 4891.1868220418692,100],
|
|
|
+ [5508.6789147406816, 4220.4667305964977,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"7",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"共青森林公园",
|
|
|
+ path:[
|
|
|
+ [4399.5433631362393, 7370.3376136757433,0],
|
|
|
+ [4645.6063552629203, 7362.4000978022814,100],
|
|
|
+ [5751.5669005159289, 7709.0049576759338,100],
|
|
|
+ [6475.7329321820289, 7954.5387820750475,100],
|
|
|
+ [6469.3829194819555, 8229.7059990745038,100],
|
|
|
+ [7199.6343799848109, 8585.3067102786154,100],
|
|
|
+ [7504.4349895855412, 9167.3912077825516,100],
|
|
|
+ [7280.0678741866723, 9861.6592629849911,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"8",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"黄兴公园-去程",
|
|
|
+ path:[
|
|
|
+ [5533.4394958499997, 6674.1814939699998,0],
|
|
|
+ [5565.1395865100003, 6664.3312929399999,100],
|
|
|
+ [5771.0319604699998, 7084.9363842700004,100],
|
|
|
+ [5747.4897482899996, 7181.6602556999997,100],
|
|
|
+ [5775.4378630900001, 7452.3969179300002,100],
|
|
|
+ [5773.1627494000004, 7551.3616085399999,100],
|
|
|
+ [5756.9613519900004, 7714.4921131499996,100],
|
|
|
+ [5090.5727929900004, 7511.65297938,100],
|
|
|
+ [4777.61920852, 7378.2719266800004,100],
|
|
|
+ [4445.5372873599999, 7295.6718325900001,100],
|
|
|
+ [4413.6341138199996, 7361.9600904199997,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"9",
|
|
|
+ begin:"合生汇",
|
|
|
+ end:"黄兴公园-返程",
|
|
|
+ path:[
|
|
|
+ [4419.4892839994282, 7361.3196348026395,0],
|
|
|
+ [4722.4523340091109, 7353.5317879915237,100],
|
|
|
+ [5082.947024250403, 7512.1369348522276,100],
|
|
|
+ [5757.1514683701098, 7714.9800673611462,100],
|
|
|
+ [5775.1619675792754, 7551.3184095919132,100],
|
|
|
+ [5774.801678430289, 7449.5138318110257,100],
|
|
|
+ [5737.2197882905602, 7127.4370903726667,100],
|
|
|
+ [5591.3118801191449, 6784.3444970101118,100],
|
|
|
+ [5542.6769579108804, 6669.9844871591777,100],
|
|
|
+ [5533.4394958522171, 6674.1814939714968,0]
|
|
|
+ ],
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+]);
|
|
|
+let planPathList = ref([
|
|
|
+ {
|
|
|
+ id:"1",
|
|
|
+ begin:"xxxxx",
|
|
|
+ end:"xxxxx",
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id:"2",
|
|
|
+ begin:"xxxxx",
|
|
|
+ end:"xxxxx",
|
|
|
+ chosen:false
|
|
|
+ },
|
|
|
+])
|
|
|
+const currentMenu = ref('existing');
|
|
|
+function changeMenu(item){
|
|
|
+ menuList.value.forEach((i)=>{
|
|
|
+ if(i.name == item.name){
|
|
|
+ i.chosen = true;
|
|
|
+ currentMenu.value = i.value
|
|
|
+ }else{
|
|
|
+ i.chosen = false
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+function showPath(item){
|
|
|
+ existingPathList.value.forEach((i)=>{
|
|
|
+ if(item.id == i.id){
|
|
|
+ i.chosen = !i.chosen
|
|
|
+ }
|
|
|
+ });
|
|
|
+ currentPaths = [];
|
|
|
+ debugger
|
|
|
+ existingPathList.value.forEach((i)=>{
|
|
|
+ if(i.chosen){
|
|
|
+ currentPaths.push(i.path);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ PathPipe({
|
|
|
+ status:"show",
|
|
|
+ paths:currentPaths
|
|
|
+ })
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+#simulateFly {
|
|
|
+ position: absolute;
|
|
|
+ right: 20px;
|
|
|
+ top: 87px;
|
|
|
+ width: 360px;
|
|
|
+ z-index: 2;
|
|
|
+ .top-menu{
|
|
|
+ width: 100%;
|
|
|
+ height: 60px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ .menu-item{
|
|
|
+ width: 137px;
|
|
|
+ height: 40px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ cursor: pointer;
|
|
|
+ span{
|
|
|
+ font-family: YouSheBiaoTiHei;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ text-shadow: 0px 8px 1px rgba(19, 80, 143, 0.1);
|
|
|
+ background: linear-gradient(0deg, rgb(119, 186, 255) 0%, rgb(233, 248, 255) 73%, rgb(255, 255, 255) 100%);
|
|
|
+ opacity: 0.89;
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .top-menu-item{
|
|
|
+ background-image: url("../../../../../assets/imgs/lowAltitude/menu_unchosen.png");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .top-menu-chosen{
|
|
|
+ background-image: url("../../../../../assets/imgs/lowAltitude/menu_chosen.png");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .single{
|
|
|
+ width: 100%;
|
|
|
+ height: 45px;
|
|
|
+ margin-top: 30px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ span{
|
|
|
+ color:rgba(255,255,255,0.8);
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .single-icon{
|
|
|
+ cursor: pointer;
|
|
|
+ background-image: url("../../../../../assets/imgs/lowAltitude/board.png");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .single-icon-chosen{
|
|
|
+ background-image: url("../../../../../assets/imgs/lowAltitude/board_chosen.png");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.switch-right-active{
|
|
|
+ transition-property: transform;
|
|
|
+ transition-duration:1s;
|
|
|
+}
|
|
|
+.switch-right{
|
|
|
+ transition-property: transform;
|
|
|
+ transition-duration:1s;
|
|
|
+ transform: translateX(480px);
|
|
|
+}
|
|
|
+</style>
|