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