123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /**
- * 水上客运地图功能组件,通过调用封装好的基础地图组件实现特定业务功能
- */
- import { fullExtent, clearMap, calculation, changeMap, setCamera,
- layerControl, layerQuery, addGraphic, draw, getDrawGeometry,
- addBoats, addBoatHistory
- } from '@/utils/map/ArcgisUtil'
- import {GetPjylLinePaths, GetWaterFlightPoints, GetShipRout} from "@/apis/ssky";
- // 浦江游览航线
- export function pjylLine(isShow){
- if(isShow){
- GetPjylLinePaths().then(res=>{
- for (let i=0;i<res.data.length;i++){
- let lineData = res.data[i]
- let linePoints = lineData.linePoints
- let points = []
- let first = []
- for(let j=0;j<linePoints.length;j++){
- let point = [Number(linePoints[j].x),Number(linePoints[j].y)]
- if(j==0){
- first = [Number(linePoints[j].x),Number(linePoints[j].y)]
- }
- points.push(point)
- }
- points.push(first)
- let params = {
- // title: res.data[i].get('lineName'),
- type: 'polygon',
- data: points,
- edit: false,
- temp: true,
- clear: false,
- goto: true,
- attributes: null,
- symbol: {
- type: "simple-fill",
- color: [50, 205, 50, 0.5],
- //style: "cross",
- outline: {
- color: [255, 0, 0],
- width: 2
- }
- }
- }
- // 绘制到地图上
- addGraphic(params)
- }
- })
- }else{
- clearMap({is_draw: false, is_search:true, layers: []})
- }
- }
- // 浦江游览码头定位
- export function onePjylPortLocation(data,isShow){
- if(isShow){
- // 码头定位
- let param = {
- title: data.portName,
- type: 'point',
- data:[data.mapx,data.mapy,20],
- edit: false,
- temp: true,
- clear: false,
- goto: true,
- attributes: null,
- symbol:{
- "type": "picture-marker",
- "url": "images/ssky/bgImgPort.png",
- "width":"300px",
- "height":"10px"
- }
- }
- addGraphic(param)
- // 绘制陆域围栏
- layerQuery({
- title: "waterPassenger",
- layerId: "4",
- where: "码头名称='" + data.portName +"'",
- symbol: null,
- is_draw: true,
- is_clear: false,
- callback: "pjylPortHandle"
- })
- }else{
- clearMap({is_draw: false, is_search:true, layers: []})
- }
- }
- // 浦江游览码头查询回调
- export function pjylPortHandle(res) {
- let data = res.data[0].geometry.rings[0]
- let params = {
- type: 'line-3d',
- data: data,
- edit: false,
- clear: false,
- goto: true,
- attributes: null,
- title: null
- }
- addGraphic(params)
- }
- // 对江轮渡码头定位
- export function oneDjldPortLocation(data,isShow){
- if(isShow) {
- // 码头定位
- let param = {
- title: data.portName,
- type: 'point',
- data: [data.mapx, data.mapy, 20],
- edit: false,
- clear: false,
- goto: true,
- attributes: null,
- symbol: {
- "type": "picture-marker",
- "url": "images/ssky/bgImgPort.png",
- "width": "300px",
- "height": "10px"
- }
- }
- addGraphic(param)
- /* // 绘制陆域围栏
- layerQuery({
- title: "waterPassenger",
- layerId: "1",
- where: "码头名称='" + data.portName + "'",
- symbol: null,
- is_draw: true,
- is_clear: false,
- callback: "djldPortHandle"
- })*/
- }else{
- clearMap({is_draw: false, is_search:true, layers: []})
- }
- }
- // 浦江游览码头查询回调
- export function djldPortHandle(res) {
- let data = res.data[0].geometry.rings[0]
- let params = {
- type: 'line-3d',
- data: data,
- edit: false,
- clear: false,
- goto: true,
- attributes: null,
- title: null
- }
- 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){
- GetWaterFlightPoints({lineName:lineName}).then(res=>{
- let rows = res.data.Rows;
- for (let i=0;i<rows.length;i++){
- let lineData = rows[i]
- let linePoints = lineData.linePoint[0]
- let points = []
- for(let j=0;j<linePoints.length;j++){
- let point = [Number(linePoints[j].x),Number(linePoints[j].y)]
- points.push(point)
- }
- let params = {
- title: lineName,
- type: 'polyline',
- data: points,
- edit: false,
- clear: false,
- goto: true,
- attributes: null,
- symbol: {
- type: "simple-line",
- color: [255, 255, 0],
- width: 2
- }
- }
- // 绘制到地图上
- addGraphic(params)
- }
- })
- }else{
- clearMap({is_draw: false, is_search:true, layers: []})
- }
- }
|