Browse Source

视频融合视角调整,船舶模拟驾驶和区域轨迹回放调整;

sbj 1 năm trước cách đây
mục cha
commit
48e4a99a00

+ 2 - 2
src/utils/map/ArcgisUtil.js

@@ -17,8 +17,8 @@ let clickGraphic
 export function initBridge(){
     bridge = new CityGis.Bridge({
         id: "i_map",
-        // url: "http://10.83.68.108:8090/mapVue/#/map", //政务网
-        url: "http://10.83.68.108:8090/mapWidgetVue/#/map", //政务网
+        url: "http://10.83.68.108:8090/mapVue/#/map", //4.23版本政务网
+        // url: "http://10.83.68.108:8090/mapWidgetVue/#/map", //4.26版本政务网
         // url: "http://localhost:8081/#/map", //政务网
         onReady: function(){
             console.log("地图创建完成");

+ 1 - 1
src/utils/map/Boat.js

@@ -163,7 +163,7 @@ export function clearBoatHistoryPath(){
     clearMap({is_draw: true, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
 }
 
-export function drawArea(){
+export function drawArea(startTime,endTime,isShow){
     draw('polygon');
 }
 

+ 13 - 0
src/utils/map/Common.js

@@ -31,4 +31,17 @@ export function setSxdxCamera() {
         heading:0,
         tilt:90
     })
+}
+
+/**
+ * 视频融合视角
+ */
+export function setVideoCamera() {
+    setCamera({
+        x:2407,
+        y:940,
+        z:2000,
+        heading:328,
+        tilt:0
+    })
 }

+ 2 - 2
src/views/home/Header.vue

@@ -34,13 +34,13 @@
     <water-level v-if="waterDeepShow"/>
     <Tools v-show="checkTool" @showView="vidoShow=true"  @hiddenView="closeVido"/>
 
-    <VideoForHK  v-if="vidoShow" :vidoBackShow="false"  :cameraIndexCode="'d692af55367a4b92b9896985f397ebb8'"  ref="childeRef"   @closeVido="closeVidoAll"/>
+    <VideoForHK  v-if="vidoShow" :vidoBackShow="false"  :cameraIndexCode="'89be6c491cf04a6aa3c42669e77d2127'"  ref="childeRef"   @closeVido="closeVidoAll"/>
 
     <LunDuMessage v-if="checkLinDu" @closeThis="closeLundu" :datas="ldData.value"/>
 
     <HuiFangArea v-if="checkArea" />
 
-    <SelectForUnit  v-if="showSelect"  />
+    <SelectForUnit  v-if="showSelect"/>
   </div>
 </template>
 

+ 7 - 3
src/views/map/Index.vue

@@ -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')