Parcourir la source

更新船舶轨迹清除方法

sbj il y a 1 an
Parent
commit
9c78260c41
2 fichiers modifiés avec 14 ajouts et 2 suppressions
  1. 12 0
      src/utils/map/ArcgisUtil.js
  2. 2 2
      src/utils/map/Boat.js

+ 12 - 0
src/utils/map/ArcgisUtil.js

@@ -169,6 +169,18 @@ export function playBoatHistory(type){
     bridge.Invoke(params);
 }
 
+/**
+ * 清除船舶轨迹
+ * @constructor
+ */
+export function clearBoatHistory(){
+    let params = {
+        "ActionName": "ClearBoatHistory",
+        "Parameters": {}
+    };
+    bridge.Invoke(params);
+}
+
 /*查询服务*/
 /*参数格式:
 {

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

@@ -3,7 +3,7 @@
  */
 import { fullExtent, clearMap, calculation, changeMap, setCamera,
     layerControl, layerQuery, addGraphic, draw, getDrawGeometry,
-    addBoats, setBoatHistory, playBoatHistory,
+    addBoats, setBoatHistory, playBoatHistory, clearBoatHistory,
     getMapScale
 } from '@/utils/map/ArcgisUtil'
 import {GetHpjShip,GetBoatAISHistoryByMMSI} from "@/apis/ship";
@@ -154,5 +154,5 @@ bus.on('playBoatHistoryPath', (type) => {
  */
 export function clearBoatHistoryPath(){
     console.log('清除船舶')
-    clearMap({is_draw: false, is_search: false, layers: ['boatLayer','boatPathLayer','tempLayer']})
+    clearBoatHistory()
 }