|
@@ -5,9 +5,9 @@ import { fullExtent, clearMap, calculation, changeMap, setCamera,
|
|
|
layerControl, layerQuery, addGraphic, draw, getDrawResult,
|
|
|
addBoats, setBoatHistory, playBoatHistory, clearBoatHistory,
|
|
|
openBoatDriving,closeBoatDriving,setAreaBoatHistory, playMultiBoatHistory,
|
|
|
- getMapScale
|
|
|
+ getMapScale,getMapExtent
|
|
|
} from '@/utils/map/ArcgisUtil'
|
|
|
-import {GetHpjShip,GetBoatAISHistoryByMMSI,GetShipHistoryByArea} from "@/apis/ship";
|
|
|
+import {GetHpjShip,GetBoatAISHistoryByMMSI,GetShipHistoryByArea,GetHpjShipWithWarn} from "@/apis/ship";
|
|
|
import {setCenter} from '@/utils/map/Common'
|
|
|
import {nextTick} from "vue";
|
|
|
import bus from "@/utils/bus";
|
|
@@ -74,7 +74,7 @@ export function setBoat(isShow){
|
|
|
if (boatInterval != null) {
|
|
|
clearInterval(boatInterval)
|
|
|
}
|
|
|
- boatInterval = setInterval(onLocationBoat, 10000)
|
|
|
+ boatInterval = setInterval(onLocationBoat, 5000)
|
|
|
}else{
|
|
|
if (showBoat){
|
|
|
showBoat = false
|
|
@@ -88,7 +88,17 @@ export function setBoat(isShow){
|
|
|
|
|
|
// 加载船舶
|
|
|
export function onLocationBoat(){
|
|
|
- GetHpjShip().then(res=>{
|
|
|
+ let extent = getMapExtent()
|
|
|
+ GetHpjShipWithWarn({
|
|
|
+ maxMapx:extent.xmax + 100,
|
|
|
+ minMapx:extent.xmin - 100,
|
|
|
+ maxMapy:extent.ymax + 100,
|
|
|
+ minMapy:extent.ymin - 100,
|
|
|
+ hour: 0.5
|
|
|
+ }).then(res=>{
|
|
|
+ if(!showBoat){
|
|
|
+ return
|
|
|
+ }
|
|
|
let data = res.Result.data
|
|
|
let boats = {
|
|
|
"scale": getMapScale(),
|
|
@@ -106,7 +116,8 @@ export function onLocationBoat(){
|
|
|
"shipBreadth": data[i].SHIPBREADTH,
|
|
|
"shipLength": data[i].SHIPLENGTH,
|
|
|
"mapx": data[i].MAPX,
|
|
|
- "mapy": data[i].MAPY
|
|
|
+ "mapy": data[i].MAPY,
|
|
|
+ "warnStatus": Object.keys(data[i].MAP).length == 0 ? 0: 1
|
|
|
}
|
|
|
boats.data.push(boat)
|
|
|
}
|
|
@@ -244,6 +255,7 @@ export function boatDriving(data,isShow){
|
|
|
closeBoatDriving()
|
|
|
// clearMap({is_draw: false, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
|
|
|
// setCenter()
|
|
|
+ locationBoat(data.mmsi,true)
|
|
|
}
|
|
|
}
|
|
|
|