WaterPassenger.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /**
  2. * 水上客运地图功能组件,通过调用封装好的基础地图组件实现特定业务功能
  3. */
  4. import { fullExtent, clearMap, calculation, changeMap, setCamera,
  5. layerControl, layerQuery, addGraphic, draw, getDrawGeometry,
  6. addBoats, addBoatHistory
  7. } from '@/utils/map/ArcgisUtil'
  8. import {GetPjylLinePaths, GetWaterFlightPoints, GetShipRout} from "@/apis/ssky";
  9. // 浦江游览航线
  10. export function pjylLine(isShow){
  11. if(isShow){
  12. GetPjylLinePaths().then(res=>{
  13. for (let i=0;i<res.data.length;i++){
  14. let lineData = res.data[i]
  15. let linePoints = lineData.linePoints
  16. let points = []
  17. let first = []
  18. for(let j=0;j<linePoints.length;j++){
  19. let point = [Number(linePoints[j].x),Number(linePoints[j].y)]
  20. if(j==0){
  21. first = [Number(linePoints[j].x),Number(linePoints[j].y)]
  22. }
  23. points.push(point)
  24. }
  25. points.push(first)
  26. let params = {
  27. // title: res.data[i].get('lineName'),
  28. type: 'polygon',
  29. data: points,
  30. edit: false,
  31. temp: true,
  32. clear: false,
  33. goto: true,
  34. attributes: null,
  35. symbol: {
  36. type: "simple-fill",
  37. color: [50, 205, 50, 0.5],
  38. //style: "cross",
  39. outline: {
  40. color: [255, 0, 0],
  41. width: 2
  42. }
  43. }
  44. }
  45. // 绘制到地图上
  46. addGraphic(params)
  47. }
  48. })
  49. }else{
  50. clearMap({is_draw: false, is_search:true, layers: []})
  51. }
  52. }
  53. // 浦江游览码头定位
  54. export function onePjylPortLocation(data,isShow){
  55. if(isShow){
  56. // 码头定位
  57. let param = {
  58. title: data.portName,
  59. type: 'point',
  60. data:[data.mapx,data.mapy,20],
  61. edit: false,
  62. temp: true,
  63. clear: false,
  64. goto: true,
  65. attributes: null,
  66. symbol:{
  67. "type": "picture-marker",
  68. "url": "images/ssky/bgImgPort.png",
  69. "width":"300px",
  70. "height":"10px"
  71. }
  72. }
  73. addGraphic(param)
  74. // 绘制陆域围栏
  75. layerQuery({
  76. title: "waterPassenger",
  77. layerId: "4",
  78. where: "码头名称='" + data.portName +"'",
  79. symbol: null,
  80. is_draw: true,
  81. is_clear: false,
  82. callback: "pjylPortHandle"
  83. })
  84. }else{
  85. clearMap({is_draw: false, is_search:true, layers: []})
  86. }
  87. }
  88. // 浦江游览码头查询回调
  89. export function pjylPortHandle(res) {
  90. let data = res.data[0].geometry.rings[0]
  91. let params = {
  92. type: 'line-3d',
  93. data: data,
  94. edit: false,
  95. clear: false,
  96. goto: true,
  97. attributes: null,
  98. title: null
  99. }
  100. addGraphic(params)
  101. }
  102. // 对江轮渡码头定位
  103. export function oneDjldPortLocation(data,isShow){
  104. if(isShow) {
  105. // 码头定位
  106. let param = {
  107. title: data.portName,
  108. type: 'point',
  109. data: [data.mapx, data.mapy, 20],
  110. edit: false,
  111. clear: false,
  112. goto: true,
  113. attributes: null,
  114. symbol: {
  115. "type": "picture-marker",
  116. "url": "images/ssky/bgImgPort.png",
  117. "width": "300px",
  118. "height": "10px"
  119. }
  120. }
  121. addGraphic(param)
  122. /* // 绘制陆域围栏
  123. layerQuery({
  124. title: "waterPassenger",
  125. layerId: "1",
  126. where: "码头名称='" + data.portName + "'",
  127. symbol: null,
  128. is_draw: true,
  129. is_clear: false,
  130. callback: "djldPortHandle"
  131. })*/
  132. }else{
  133. clearMap({is_draw: false, is_search:true, layers: []})
  134. }
  135. }
  136. // 浦江游览码头查询回调
  137. export function djldPortHandle(res) {
  138. let data = res.data[0].geometry.rings[0]
  139. let params = {
  140. type: 'line-3d',
  141. data: data,
  142. edit: false,
  143. clear: false,
  144. goto: true,
  145. attributes: null,
  146. title: null
  147. }
  148. addGraphic(params)
  149. }
  150. // 对江轮渡航线批量展示
  151. export function djldLineAll(isShow) {
  152. if(isShow){
  153. GetShipRout({keywords:'',type:''}).then(res =>{
  154. let list = res.data.Rows.list;
  155. for(let i = 0; i < list.length;i++){
  156. let lineData = list[i].pointList;
  157. let lineName = list[i].name;
  158. let points = []
  159. for(let j=0;j<lineData.length;j++){
  160. let point = [Number(lineData[j].mapx),Number(lineData[j].mapy)]
  161. points.push(point)
  162. }
  163. let params = {
  164. title: lineName,
  165. type: 'polyline',
  166. data: points,
  167. edit: false,
  168. clear: false,
  169. temp: false,
  170. goto: false,
  171. attributes: null,
  172. symbol: {
  173. type: "simple-line",
  174. color: [255, 255, 0],
  175. width: 2
  176. }
  177. }
  178. // 绘制到地图上
  179. addGraphic(params)
  180. }
  181. })
  182. }else{
  183. clearMap({is_draw: false, is_search: true, layers: []})
  184. }
  185. }
  186. // 对江轮渡航线
  187. export function djldLine(lineName,isShow){
  188. if(isShow){
  189. GetWaterFlightPoints({lineName:lineName}).then(res=>{
  190. let rows = res.data.Rows;
  191. for (let i=0;i<rows.length;i++){
  192. let lineData = rows[i]
  193. let linePoints = lineData.linePoint[0]
  194. let points = []
  195. for(let j=0;j<linePoints.length;j++){
  196. let point = [Number(linePoints[j].x),Number(linePoints[j].y)]
  197. points.push(point)
  198. }
  199. let params = {
  200. title: lineName,
  201. type: 'polyline',
  202. data: points,
  203. edit: false,
  204. clear: false,
  205. goto: true,
  206. attributes: null,
  207. symbol: {
  208. type: "simple-line",
  209. color: [255, 255, 0],
  210. width: 2
  211. }
  212. }
  213. // 绘制到地图上
  214. addGraphic(params)
  215. }
  216. })
  217. }else{
  218. clearMap({is_draw: false, is_search:true, layers: []})
  219. }
  220. }