ArcgisUtil.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. //加载地图控件
  2. import CityGis from "@/utils/map/CityGis.Bridge";
  3. import { ElMessage } from 'element-plus'
  4. import 'element-plus/es/components/message/style/css'
  5. import {onLocationBoat} from '@/utils/map/Boat'
  6. import {refreshDepthPoints} from '@/utils/map/Layer'
  7. import bus from '@/utils/bus';
  8. import {setMultiBoatHistory} from '@/utils/map/Boat'
  9. let bridge
  10. let calculateFinish = false
  11. // let drawGeometry = null
  12. let drawResult = null
  13. let showBoat = false
  14. let showDepthPoints = false
  15. let mapExtent
  16. let mapScale
  17. let clickGraphic
  18. export function initBridge(){
  19. bridge = new CityGis.Bridge({
  20. id: "i_map",
  21. url: "http://10.83.68.108:8090/mapVue/#/map", //4.23版本政务网
  22. // url: "http://10.83.68.108:8090/mapWidgetVue/#/map", //4.26版本政务网
  23. // url: "http://localhost:8081/#/map", //政务网
  24. onReady: function(){
  25. console.log("地图创建完成");
  26. }
  27. });
  28. bridge.addEventListener((arg) => {
  29. switch (arg.action) {
  30. case "MapIsReady":
  31. break;
  32. case "MapExtentChanged":
  33. console.log(arg)
  34. mapExtent = arg.data.extent
  35. mapScale = arg.data.scale
  36. if(showBoat){
  37. onLocationBoat()
  38. }
  39. if(showDepthPoints){
  40. refreshDepthPoints()
  41. }
  42. break;
  43. case "MapClickObject":
  44. clickGraphic = arg.data.graphic
  45. // 点击船舶则打开船舶面板
  46. if(clickGraphic.attributes.mmsi){
  47. bus.emit('ueRec_BoatClick',{'mmsi':clickGraphic.attributes.mmsi})
  48. }
  49. break
  50. default:
  51. console.log(JSON.stringify(arg.data, null, 4))
  52. }
  53. });
  54. }
  55. // 获取地图范围
  56. export function getMapExtent() {
  57. return mapExtent
  58. }
  59. // 获取地图比例尺
  60. export function getMapScale() {
  61. return mapScale
  62. }
  63. /*切换底图
  64. * 基础地图:baseMap
  65. * 遥感地图:airMap
  66. */
  67. export function changeMap(type){
  68. let params = {
  69. "ActionName": "ChangeBaseMap",
  70. "Parameters": {
  71. "title": type,
  72. "opacity": 1
  73. }
  74. };
  75. bridge.Invoke(params);
  76. }
  77. /**
  78. * 设置透明度
  79. * 参数 opacity 范围 0-1,0全透明,1不透明
  80. */
  81. export function setOpacity(opacity){
  82. let params = {
  83. "ActionName": "SetOpacity",
  84. "Parameters": {
  85. "opacity": opacity
  86. }
  87. };
  88. bridge.Invoke(params);
  89. }
  90. /**
  91. * 添加图层
  92. * @param data 地图参数
  93. * @param isShow 显隐控制 true 显示,false 隐藏
  94. */
  95. export function addLayer(data){
  96. let params = {
  97. "ActionName": "AddLayer",
  98. "Parameters": {
  99. "id": data.id,
  100. "title": data.title,
  101. "visible": data.visible,
  102. "opacity": data.opacity,
  103. // "url": "http://10.83.68.109:6080/arcgis/rest/services/ghjg_cxall/MapServer",
  104. "url": data.url,
  105. "type": data.type,
  106. "token": data.token,
  107. // "is_goto": data.is_goto,
  108. "elevationInfo": data.elevationInfo
  109. }
  110. };
  111. bridge.Invoke(params);
  112. }
  113. /* 定位船舶 */
  114. /*参数格式:
  115. [
  116. {
  117. "mmsi": "413266820",
  118. "shipNameCn": "苏州号",
  119. "shipTypeName": "客船",
  120. "direction": 245,
  121. "velocity": 0,
  122. "shipBreadth": 22,
  123. "shipLength": 154,
  124. "mapx": 2755.61767,
  125. "mapy": 1521.00687
  126. }
  127. ]*/
  128. export function addBoats(boats){
  129. let params = {
  130. "ActionName": "AddBoat",
  131. "Parameters": {
  132. "scale": boats.scale,
  133. "goto": boats.goto,
  134. "data": boats.data,
  135. "singleBoat": boats.singleBoat
  136. }
  137. };
  138. // console.log('定位:'+JSON.stringify(params))
  139. bridge.Invoke(params);
  140. }
  141. /* 绘制船舶轨迹 */
  142. /*参数格式:
  143. [
  144. {
  145. "mapx": 2755.61767,
  146. "mapy": 1521.00687,
  147. "time": "2021/1/18 9:40:53"
  148. },
  149. {
  150. "mapx": 2705.61767,
  151. "mapy": 1481.00687,
  152. "time": "2021/1/18 10:07:19"
  153. }
  154. ]*/
  155. export function setBoatHistory(datas){
  156. let params = {
  157. "ActionName": "SetBoatHistory",
  158. "Parameters": {
  159. "data":datas
  160. }
  161. };
  162. bridge.Invoke(params);
  163. }
  164. /* 绘制多船轨迹 */
  165. /*参数格式:
  166. datas:[
  167. [
  168. {
  169. "mmsi": 123456789,
  170. "mapx": 2755.61767,
  171. "mapy": 1521.00687,
  172. "direction": 0,
  173. "gpsTime": "2021/1/18 9:40:53"
  174. },
  175. {
  176. "mmsi": 123456789,
  177. "mapx": 2705.61767,
  178. "mapy": 1481.00687,
  179. "direction": 0,
  180. "gpsTime": "2021/1/18 10:07:19"
  181. }
  182. ],[
  183. {
  184. "mmsi": 123456790,
  185. "mapx": 2755.61767,
  186. "mapy": 1521.00687,
  187. "direction": 0,
  188. "gpsTime": "2021/1/18 9:40:53"
  189. },
  190. {
  191. "mmsi": 123456790,
  192. "mapx": 2705.61767,
  193. "mapy": 1481.00687,
  194. "direction": 0,
  195. "gpsTime": "2021/1/18 10:07:19"
  196. }
  197. ]
  198. ]*/
  199. export function setAreaBoatHistory(param){
  200. let params = {
  201. "ActionName": "SetAreaBoatHistory",
  202. "Parameters": {
  203. "startTime": param.startTime,
  204. "endTime": param.endTime,
  205. "data":param.datas
  206. }
  207. };
  208. bridge.Invoke(params);
  209. }
  210. /**
  211. * 开始:start,
  212. * 暂停:pause,
  213. * 继续:resume,
  214. * 停止:stop
  215. * @param type
  216. */
  217. export function playBoatHistory(type){
  218. let params = {
  219. "ActionName": "PlayBoatHistory",
  220. "Parameters": {
  221. "status": type
  222. }
  223. };
  224. bridge.Invoke(params);
  225. }
  226. /**
  227. * 开始:start,
  228. * 暂停:pause,
  229. * 继续:resume,
  230. * 停止:stop
  231. * @param type
  232. */
  233. export function playMultiBoatHistory(type){
  234. let params = {
  235. "ActionName": "PlayMultiBoatHistory",
  236. "Parameters": {
  237. "status": type
  238. }
  239. };
  240. bridge.Invoke(params);
  241. bridge.addEventListener((arg) => {
  242. switch (arg.action) {
  243. case "MapIsReady":
  244. break;
  245. }
  246. });
  247. }
  248. /**
  249. * 清除船舶轨迹
  250. * @constructor
  251. */
  252. export function clearBoatHistory(){
  253. let params = {
  254. "ActionName": "ClearBoatHistory",
  255. "Parameters": {}
  256. };
  257. bridge.Invoke(params);
  258. }
  259. /*查询服务*/
  260. /*参数格式:
  261. {
  262. "ActionName": "LayerQuery",
  263. "Parameters": {
  264. "title": "ghjg_cxall",
  265. "layerid": "0",
  266. "where": "视频点名称='华江石油码头'",
  267. "outFields": [
  268. "*"
  269. ],
  270. "returnGeometry": true,
  271. "is_draw": true,
  272. "symbol": {
  273. "type": "simple-marker",
  274. "style": "circle",
  275. "color": [
  276. 255,
  277. 0,
  278. 0
  279. ],
  280. "size": 10
  281. }
  282. }
  283. }*/
  284. export function layerQuery(paramData){
  285. let params = {
  286. "ActionName": "LayerQuery",
  287. "Parameters": {
  288. "title": paramData.title,
  289. "layerid": paramData.layerId,
  290. "where": paramData.where,
  291. "outFields": [
  292. "*"
  293. ],
  294. "returnGeometry": true,
  295. "is_draw": paramData.is_draw == null?true:paramData.is_draw,
  296. "is_clear": paramData.is_clear == null?true:paramData.is_clear,
  297. "symbol": paramData.symbol
  298. }
  299. };
  300. console.log("params",params)
  301. bridge.Invoke(params);
  302. bridge.addEventListener((arg) => {
  303. if(arg.action == "ReturnDataList"){
  304. console.log(arg)
  305. if(arg.status == false){
  306. this.$message({
  307. showClose: true,
  308. message: "未查询到结果!",
  309. type: "warning"
  310. })
  311. return
  312. }
  313. // 回调函数
  314. if(paramData.callback == 'pjylPortHandle'){
  315. this.pjylPortHandle(arg)
  316. }else if(paramData.callback == 'djldPortHandle'){
  317. this.djldPortHandle(arg)
  318. }
  319. }
  320. });
  321. }
  322. /*重置*/
  323. export function resetMap(){
  324. let params = {
  325. "ActionName": "ResetMap"
  326. };
  327. bridge.Invoke(params);
  328. }
  329. /*全景*/
  330. export function fullExtent(){
  331. let params = {
  332. "ActionName": "FullExtent"
  333. };
  334. bridge.Invoke(params);
  335. }
  336. /*测距/测面积*/
  337. /*测距:distance 测面积:area*/
  338. export function calculation(type){
  339. let g_type
  340. calculateFinish = false
  341. if(type == "distance"){
  342. g_type = "polyline"
  343. }
  344. if(type == "area"){
  345. g_type = "polygon"
  346. }
  347. let params = {
  348. "ActionName": "Calculation",
  349. "Parameters": {
  350. "type": g_type,
  351. "is_show": false
  352. }
  353. };
  354. bridge.Invoke(params);
  355. bridge.addEventListener((arg) => {
  356. if(arg.action == "Calculation" && calculateFinish == false){
  357. calculateFinish = true
  358. ElMessage.warning("测量结果:" + arg.data.result)
  359. }
  360. });
  361. }
  362. /*图层开关*/
  363. export function layerControl(data){
  364. if(data == "" || data == null){
  365. return
  366. }
  367. this.mapClickLayers = []
  368. if(data.visible == true){
  369. // this.mapClickLayers = data.sublayers
  370. let sublayers = data.sublayers.split(",")
  371. for(let i=0;i<sublayers.length;i++){
  372. this.mapClickLayers.push(sublayers[i])
  373. }
  374. }
  375. let params = {
  376. "ActionName": "LayerControl",
  377. "Parameters": {
  378. "title": data.title,
  379. "visible": data.visible,
  380. "opacity": data.opacity,
  381. "sublayers": data.sublayers // 倒序
  382. }
  383. };
  384. bridge.Invoke(params);
  385. }
  386. /*绘制点线面*/
  387. /*参数说明:
  388. point 点;
  389. polyline 线;
  390. polygon 面;*/
  391. export function draw(type,isBack){
  392. let params = {
  393. "ActionName": "Draw",
  394. "Parameters": {
  395. "type": type
  396. }
  397. };
  398. bridge.Invoke(params);
  399. bridge.addEventListener((arg) => {
  400. if(arg.action == "DrawComplete"){
  401. drawResult = arg.data
  402. // drawGeometry = arg.data.geometry
  403. if(isBack == 'setMultiBoatHistory'){
  404. setMultiBoatHistory(drawResult)
  405. }
  406. }
  407. });
  408. }
  409. // 标记图形
  410. export function addGraphic(datas){
  411. console.log("addGraphic:",datas)
  412. let params = {
  413. "ActionName": "AddGraphic",
  414. "Parameters": {
  415. "type": datas.type,
  416. "is_edit": datas.edit,
  417. "is_clear": datas.clear,
  418. "is_temp": datas.temp,
  419. "is_goto": datas.goto,
  420. "data": datas.data,
  421. "attributes": datas.attributes,
  422. "symbol": datas.symbol,
  423. "textSymbol": datas.textSymbol,
  424. "title": datas.title
  425. }
  426. };
  427. bridge.Invoke(params);
  428. }
  429. // 设置摄像机
  430. export function setCamera(data){
  431. let params = {
  432. "ActionName": "SetCamera",
  433. "Parameters": {
  434. "position": {
  435. "x": data.x,
  436. "y": data.y,
  437. "z": data.z,
  438. "spatialReference": 102100
  439. },
  440. "heading": data.heading,
  441. "tilt": data.tilt,
  442. }
  443. };
  444. bridge.Invoke(params);
  445. }
  446. /**
  447. * 清空地图
  448. * 下面是支持的图层,可多选
  449. * layers:['sketchLayer','bufferLayer','tempLayer','boatLayer','boatPathLayer','boatGraphicLayer']
  450. * is_draw 对应图形绘制
  451. * is_search 对应点查询和图形标记
  452. * */
  453. export function clearMap(data){
  454. let params = {
  455. "ActionName": "ClearMap",
  456. "Parameters": {
  457. "is_draw": data.is_draw,
  458. "is_search": data.is_search,
  459. // "is_position": data.is_position,
  460. "layers": data.layers
  461. }
  462. };
  463. bridge.Invoke(params);
  464. }
  465. export function getDrawResult(){
  466. return drawResult
  467. }
  468. /**
  469. * 开启船舶模拟
  470. * */
  471. export function openBoatDriving(data){
  472. let params = {
  473. "ActionName": "AddBoatDriving",
  474. "Parameters": {
  475. "mmsi": data.mmsi,
  476. "shipName": data.shipName,
  477. "shipTypeName": data.shipTypeName,
  478. "direction": data.direction,
  479. "mapx": data.mapx,
  480. "mapy": data.mapy
  481. }
  482. };
  483. bridge.Invoke(params);
  484. }
  485. /**
  486. * 关闭船舶模拟
  487. * */
  488. export function closeBoatDriving(data){
  489. let params = {
  490. "ActionName": "CloseBoatDriving",
  491. "Parameters": {}
  492. };
  493. bridge.Invoke(params);
  494. }
  495. export function setShowDepthPointsState(data){
  496. showDepthPoints = data
  497. }