Boat.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /**
  2. * 船舶地图组件功能,通过调用封装好的基础地图组件实现特定业务功能
  3. */
  4. import { fullExtent, clearMap, calculation, changeMap, setCamera,
  5. layerControl, layerQuery, addGraphic, draw, getDrawResult,
  6. addBoats, setBoatHistory, playBoatHistory, clearBoatHistory,
  7. openBoatDriving,closeBoatDriving,setAreaBoatHistory, playMultiBoatHistory,
  8. getMapScale,getMapExtent
  9. } from '@/utils/map/ArcgisUtil'
  10. import {GetHpjShip,GetBoatAISHistoryByMMSI,GetShipHistoryByArea,GetHpjShipWithWarn} from "@/apis/ship";
  11. import {setCenter} from '@/utils/map/Common'
  12. import {nextTick} from "vue";
  13. import bus from "@/utils/bus";
  14. import {GetLshbBoatPath} from "@/apis/ssky";
  15. let boatInterval;
  16. let showBoat = false;
  17. let multiStartTime = null
  18. let multiEndTime = null
  19. let currentBoatMmsi = null
  20. // 船舶定位
  21. export function locationBoat(mmsi,isShow){
  22. console.log('船舶mmsi:'+mmsi)
  23. currentBoatMmsi = mmsi
  24. if(isShow){
  25. GetHpjShip().then(res=>{
  26. let data = res.Result.data
  27. let boats = {
  28. "scale": 2000,
  29. "goto": true,
  30. "data": [],
  31. "singleBoat":true
  32. }
  33. for(let i=0;i<data.length;i++){
  34. if(data[i].DEVICEID == mmsi){
  35. let boat = {
  36. "mmsi": data[i].DEVICEID,
  37. "shipNameCn": data[i].BOATNAME,
  38. "shipTypeName": data[i].SHIPTYPENAME,
  39. "direction": data[i].DIRECTION,
  40. "velocity": data[i].VELOCITY,
  41. "shipBreadth": data[i].SHIPBREADTH,
  42. "shipLength": data[i].SHIPLENGTH,
  43. "mapx": data[i].MAPX,
  44. "mapy": data[i].MAPY
  45. }
  46. boats.data.push(boat)
  47. }
  48. }
  49. // console.log('定位:'+JSON.stringify(boats))
  50. addBoats(boats)
  51. })
  52. }else{
  53. if (!showBoat){
  54. clearMap({is_draw: false, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
  55. }else{
  56. clearMap({is_draw: false, is_search:true, layers: []})
  57. }
  58. }
  59. }
  60. // 船舶撒点
  61. export function setBoat(isShow){
  62. if(isShow) {
  63. if (!showBoat){
  64. showBoat = true
  65. }else{
  66. return
  67. }
  68. onLocationBoat()
  69. if (boatInterval != null) {
  70. clearInterval(boatInterval)
  71. }
  72. boatInterval = setInterval(onLocationBoat, 5000)
  73. }else{
  74. if (showBoat){
  75. showBoat = false
  76. }
  77. if (boatInterval != null) {
  78. clearInterval(boatInterval)
  79. }
  80. clearMap({is_draw: false, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
  81. }
  82. }
  83. // 加载船舶
  84. export function onLocationBoat(){
  85. let extent = getMapExtent()
  86. GetHpjShipWithWarn({
  87. maxMapx:extent.xmax + 100,
  88. minMapx:extent.xmin - 100,
  89. maxMapy:extent.ymax + 100,
  90. minMapy:extent.ymin - 100,
  91. hour: 0.5
  92. }).then(res=>{
  93. if(!showBoat){
  94. return
  95. }
  96. let data = res.Result.data
  97. let boats = {
  98. "scale": getMapScale(),
  99. "goto": false,
  100. "data": [],
  101. "singleBoat":false
  102. }
  103. for(let i=0;i<data.length;i++){
  104. let boat = {
  105. "mmsi": data[i].DEVICEID,
  106. "shipNameCn": data[i].BOATNAME,
  107. "shipTypeName": data[i].SHIPTYPENAME,
  108. "direction": data[i].DIRECTION,
  109. "velocity": data[i].VELOCITY,
  110. "shipBreadth": data[i].SHIPBREADTH,
  111. "shipLength": data[i].SHIPLENGTH,
  112. "mapx": data[i].MAPX,
  113. "mapy": data[i].MAPY,
  114. "warnStatus": Object.keys(data[i].MAP).length == 0 ? 0: 1
  115. }
  116. boats.data.push(boat)
  117. }
  118. addBoats(boats)
  119. })
  120. }
  121. bus.on('playBoatPath', (params) => {
  122. nextTick(() => {
  123. setBoatPath(params)
  124. },{immediate: true});
  125. })
  126. // 设置船舶历史轨迹
  127. export function setBoatPath(data){
  128. currentBoatMmsi = data.mmsi
  129. GetBoatAISHistoryByMMSI({
  130. deviceId:data.mmsi,
  131. startTime:data.startTime,
  132. endTime:data.endTime
  133. }).then(res=>{
  134. let data = res.Result.data
  135. let historyPoints=[]
  136. for(let i=0;i<data.length;i++){
  137. let boat = {
  138. "mmsi": data[i].DEVICEID,
  139. "mapx": data[i].MAPX,
  140. "mapy": data[i].MAPY,
  141. "direction": data[i].DIRECTION,
  142. "shipTypeName": data[i].SHIPTYPENAME,
  143. "shipName": data[i].BOATNAME,
  144. "gpstime": data[i].GPSTIME
  145. }
  146. historyPoints.push(boat)
  147. }
  148. setBoatHistory(historyPoints)
  149. // setTimeout(function() {
  150. // playBoatHistory('start')
  151. // }, 5000);
  152. })
  153. }
  154. /**
  155. * 船舶轨迹播放
  156. * 开始:start,
  157. * 暂停:pause,
  158. * 继续:resume,
  159. * 停止:stop
  160. * @param type
  161. */
  162. bus.on('playBoatHistoryPath', (type) => {
  163. playBoatHistory(type)
  164. if(type == "stop"){
  165. clearBoatHistoryPath();
  166. }
  167. // 定位
  168. locationBoat(currentBoatMmsi,true)
  169. })
  170. /**
  171. * 清除船舶轨迹
  172. *
  173. * data 不为空表示清除单船
  174. */
  175. export function clearBoatHistoryPath(data){
  176. console.log('清除船舶')
  177. if(data != null && showBoat == true){
  178. return
  179. }
  180. clearBoatHistory()
  181. clearMap({is_draw: true, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
  182. }
  183. /***
  184. * 区域船舶轨迹回放 绘制区域并触发查询
  185. * @param startTime
  186. * @param endTime
  187. * @param isShow
  188. */
  189. export function drawArea(startTime,endTime,isShow){
  190. if(isShow){
  191. multiStartTime = startTime
  192. multiEndTime = endTime
  193. draw('polygon',"setMultiBoatHistory");
  194. }else{
  195. clearBoatHistoryPath();
  196. playMultiBoatHistory('stop');
  197. }
  198. }
  199. export function setMultiBoatHistory(drawResult){
  200. GetShipHistoryByArea({
  201. "minMapx": drawResult.extent.xmin,
  202. "minMapy": drawResult.extent.ymin,
  203. "maxMapx": drawResult.extent.xmax,
  204. "maxMapy": drawResult.extent.ymax,
  205. "startTime": multiStartTime,
  206. "endTime": multiEndTime
  207. }).then(res => {
  208. if(res.code === "200"){
  209. if(res.data){
  210. if(res.data.Rows){
  211. setAreaBoatHistory({
  212. startTime: multiStartTime,
  213. endTime: multiEndTime,
  214. datas:res.data.Rows
  215. })
  216. playAreaBoatHistory('start')
  217. }
  218. }
  219. }
  220. })
  221. }
  222. /***
  223. * 多船轨迹回放
  224. * @param type
  225. */
  226. export function playAreaBoatHistory(type){
  227. playMultiBoatHistory(type);
  228. if(type == "stop"){
  229. clearBoatHistoryPath();
  230. }
  231. }
  232. /**
  233. * 模拟驾驶
  234. * */
  235. export function boatDriving(data,isShow){
  236. if(isShow){
  237. openBoatDriving(data)
  238. }else{
  239. closeBoatDriving()
  240. // clearMap({is_draw: false, is_search:true, layers: ['boatLayer','boatPathLayer','boatGraphicLayer']})
  241. // setCenter()
  242. locationBoat(data.mmsi,true)
  243. }
  244. }
  245. /**
  246. * 历史航班轨迹查询
  247. * data:{routeTypeId:1,mmsi:413863314,startTime:'2023-09-13 20:25:00'}
  248. */
  249. // bus.on('djldBoatHistory',(data)=>{
  250. export function djldBoatHistory(data,isShow) {
  251. if(isShow){
  252. GetLshbBoatPath(data).then(res => {
  253. let data = res.data.Rows
  254. let historyPoints = []
  255. for (let i = 0; i < data.length; i++) {
  256. let boat = {
  257. "mmsi": data[i].mmsi,
  258. "mapx": Number(data[i].mapx),
  259. "mapy": Number(data[i].mapy),
  260. "direction": data[i].direction,
  261. "shipTypeName": data[i].shipTypeName,
  262. "shipName": data[i].shipName,
  263. "gpstime": data[i].gpsTime
  264. }
  265. historyPoints.push(boat)
  266. }
  267. setBoatHistory(historyPoints)
  268. })
  269. }else{
  270. clearBoatHistoryPath()
  271. }
  272. }
  273. // })