|
@@ -10,6 +10,7 @@
|
|
|
<button @click="calculation('distance')">测距</button>
|
|
|
<button @click="calculation('area')">侧面积</button>
|
|
|
<button @click="test('初始视角')">初始视角</button>
|
|
|
+ <button @click="test('视频融合视角')">视频融合视角</button>
|
|
|
<button @click="test('浦江游览码头')">浦江游览码头</button>
|
|
|
<button @click="test('对江轮渡码头')">对江轮渡码头</button>
|
|
|
<button @click="test('浦江游览航线')">浦江游览航线</button>
|
|
@@ -42,7 +43,7 @@
|
|
|
import {initBridge, fullExtent, calculation, clearMap, changeMap, draw} from "@/utils/map/ArcgisUtil"
|
|
|
import {pjylLine, djldLine,djldLineAll,onePjylPortLocation,oneDjldPortLocation} from '@/utils/map/WaterPassenger'
|
|
|
import {setBoat, setBoatPath, onLocationBoat, locationBoat, boatDriving, drawArea, setMultiBoatHistory, playAreaBoatHistory} from '@/utils/map/Boat'
|
|
|
- import {setCenter} from '@/utils/map/Common'
|
|
|
+ import {setCenter, setVideoCamera} from '@/utils/map/Common'
|
|
|
import {addLayerByName,closeAllLayer} from '@/utils/map/Layer'
|
|
|
|
|
|
export default {
|
|
@@ -121,6 +122,9 @@
|
|
|
case '初始视角':
|
|
|
setCenter();
|
|
|
break
|
|
|
+ case '视频融合视角':
|
|
|
+ setVideoCamera();
|
|
|
+ break
|
|
|
case '码头泊位':
|
|
|
this.isShowPortLayer = !this.isShowPortLayer
|
|
|
addLayerByName('mt',this.isShowPortLayer)
|
|
@@ -173,10 +177,10 @@
|
|
|
boatDriving(false)
|
|
|
break
|
|
|
case '绘制轨迹回放区域':
|
|
|
- drawArea()
|
|
|
+ drawArea('2023-9-9 19:00:00','2023-9-9 19:15:00')
|
|
|
break
|
|
|
case '查询区域轨迹':
|
|
|
- setMultiBoatHistory('2023-9-9 19:00:00','2023-9-9 19:15:00')
|
|
|
+ setMultiBoatHistory()
|
|
|
break
|
|
|
case '轨迹回放':
|
|
|
playAreaBoatHistory('start')
|