Sfoglia il codice sorgente

增加对江轮渡航线批量加载方法,其它功能微调

sbj 1 anno fa
parent
commit
6d81e65555

+ 8 - 0
src/apis/ssky.js

@@ -73,6 +73,14 @@ export function GetPjylLinePaths() {
   })
 }
 
+export function GetShipRout(data) {
+  return request({
+    url: '/dataShare/GetShipRout',
+    method: "post",
+    data:data
+  })
+}
+
 export function GetWaterFlightPoints(data) {
   return request({
     url: '/DigitalTwain/PassengerTraffic/getWaterFlightPoints',

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

@@ -275,6 +275,7 @@ export function addGraphic(datas){
             "type": datas.type,
             "is_edit": datas.edit,
             "is_clear": datas.clear,
+            "is_temp": datas.temp,
             "is_goto": datas.goto,
             "data": datas.data,
             "attributes": datas.attributes,

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

@@ -107,5 +107,5 @@ export function setBoatPath(data){
  * @param type
  */
 export function playBoatHistoryPath(type) {
-    this.playBoatHistory(type)
+    playBoatHistory(type)
 }

+ 38 - 1
src/utils/map/WaterPassenger.js

@@ -6,7 +6,7 @@ import { fullExtent, clearMap, calculation, changeMap, setCamera,
     addBoats, addBoatHistory
 } from '@/utils/map/ArcgisUtil'
 
-import {GetPjylLinePaths, GetWaterFlightPoints} from "@/apis/ssky";
+import {GetPjylLinePaths, GetWaterFlightPoints, GetShipRout} from "@/apis/ssky";
 
 // 浦江游览航线
 export function pjylLine(isShow){
@@ -156,6 +156,43 @@ export function djldPortHandle(res) {
     addGraphic(params)
 }
 
+// 对江轮渡航线批量展示
+export function djldLineAll(isShow) {
+    if(isShow){
+        GetShipRout({keywords:'',type:''}).then(res =>{
+            let list = res.data.Rows.list;
+            for(let i = 0; i < list.length;i++){
+                let lineData = list[i].pointList;
+                let lineName = list[i].name;
+                let points = []
+                for(let j=0;j<lineData.length;j++){
+                    let point = [Number(lineData[j].mapx),Number(lineData[j].mapy)]
+                    points.push(point)
+                }
+                let params = {
+                    title: lineName,
+                    type: 'polyline',
+                    data: points,
+                    edit: false,
+                    clear: false,
+                    temp: false,
+                    goto: false,
+                    attributes: null,
+                    symbol: {
+                        type: "simple-line",
+                        color: [255, 255, 0],
+                        width: 2
+                    }
+                }
+                // 绘制到地图上
+                addGraphic(params)
+            }
+        })
+    }else{
+        clearMap({is_draw: false, is_search: true, layers: []})
+    }
+}
+
 // 对江轮渡航线
 export function djldLine(lineName,isShow){
     if(isShow){

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

@@ -18,7 +18,7 @@
 
 <script>
     import {initBridge,fullExtent,calculation,clearMap} from "@/utils/map/ArcgisUtil"
-    import {pjylLine, djldLine,onePjylPortLocation,oneDjldPortLocation} from '@/utils/map/WaterPassenger'
+    import {pjylLine, djldLine,djldLineAll,onePjylPortLocation,oneDjldPortLocation} from '@/utils/map/WaterPassenger'
     import {setBoat, setBoatPath, onLocationBoat, locationBoat} from '@/utils/map/Boat'
 
     export default {
@@ -67,7 +67,8 @@
                         break
                     case '对江轮渡航线':
                         this.isShowDjldLine = !this.isShowDjldLine
-                        djldLine('歇宁线',this.isShowDjldLine)
+                        // djldLine('歇宁线',this.isShowDjldLine)
+                        djldLineAll(this.isShowDjldLine)
                         break
                     case '船舶撒点':
                         setBoat()