mapOperation.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. import { myBridge } from './map';
  2. import test2 from './test2.json';
  3. export function invokeParams(ActionName, params) {
  4. console.log(ActionName, params);
  5. myBridge.bridgeContent.Invoke({
  6. ActionName: ActionName,
  7. Parameters: {
  8. ...params
  9. }
  10. });
  11. }
  12. export function invokeParamsMap(mapId, ActionName, params) {
  13. console.log(ActionName, params);
  14. let map = mapId ? 'splitBridgeContent' + mapId : 'bridgeContent';
  15. myBridge[map].Invoke({
  16. ActionName: ActionName,
  17. Parameters: {
  18. ...params
  19. }
  20. });
  21. }
  22. export function addJuHePointSearchFun(mapId) {
  23. invokeParamsMap(mapId, 'MapClickAll', {
  24. status: true,
  25. is_draw: true,
  26. is_code: false
  27. });
  28. }
  29. export function addJuHePointSearch() {
  30. invokeParams('MapClickAll', {
  31. status: true,
  32. is_draw: true,
  33. is_code: false
  34. });
  35. }
  36. /**
  37. * 打点
  38. * @param {*} name 打点方法name,关闭时可做标识用
  39. * @param {*} param.imageUrl 打点图标,需要使用new URL(``, import.meta.url).href转为链接
  40. * @param {*} param.url 数据源接口地址
  41. */
  42. export function addJuHePoint(name, data, label) {
  43. invokeParams('ShowData', {
  44. name: name,
  45. data: {
  46. content: data,
  47. parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
  48. },
  49. legendVisible: false,
  50. popupEnabled: false,
  51. renderer: {
  52. type: 'simple',
  53. label: label,
  54. visualVariables: [],
  55. symbol: {
  56. type: 'simple-marker',
  57. size: 15,
  58. color: 'rgba(0,128,255,0.4)',
  59. outline: {
  60. width: 0.5,
  61. color: '#0080FF'
  62. }
  63. // type: 'picture-marker',
  64. // url: new URL(`@/assets/image/mapTools/2.png`, import.meta.url).href,
  65. // width: '64px',
  66. // height: '64px'
  67. }
  68. },
  69. featureReduction: {
  70. type: 'cluster',
  71. clusterRadius: '150px',
  72. popupTemplate: {
  73. title: 'Cluster summary',
  74. content: 'This cluster represents {cluster_count} earthquakes.',
  75. fieldInfos: [
  76. {
  77. fieldName: 'cluster_count',
  78. format: {
  79. places: 0,
  80. digitSeparator: true
  81. }
  82. }
  83. ]
  84. },
  85. clusterMinSize: '20px',
  86. clusterMaxSize: '50px',
  87. labelingInfo: [
  88. {
  89. deconflictionStrategy: 'none',
  90. labelExpressionInfo: {
  91. expression: "Text($feature.cluster_count, '#,###')"
  92. },
  93. symbol: {
  94. type: 'text',
  95. color: '#ffffff',
  96. font: {
  97. weight: 'bold',
  98. // family: 'Noto Sans',
  99. size: '16px'
  100. }
  101. },
  102. labelPlacement: 'center-center'
  103. }
  104. ]
  105. }
  106. });
  107. }
  108. // 简单打点
  109. export function addPoint(data, name) {
  110. invokeParams('ShowData', {
  111. name: name,
  112. data: {
  113. content: data,
  114. parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
  115. },
  116. legendVisible: false,
  117. popupEnabled: false,
  118. renderer: {
  119. type: 'simple',
  120. label: '测试车辆',
  121. visualVariables: [],
  122. symbol: {
  123. type: 'simple-marker',
  124. size: 10,
  125. color: 'rgba(0,128,255,0.4)',
  126. outline: {
  127. width: 0.5,
  128. color: '#0080FF'
  129. }
  130. }
  131. }
  132. });
  133. }
  134. // 简单打点
  135. export function replacePoint(data, name) {
  136. invokeParams('ShowData', {
  137. name: name,
  138. mode: 'replace',
  139. data: {
  140. content: data,
  141. parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
  142. },
  143. legendVisible: false,
  144. popupEnabled: false,
  145. renderer: {
  146. type: 'simple',
  147. label: '测试车辆',
  148. visualVariables: [],
  149. symbol: {
  150. type: 'simple-marker',
  151. size: 10,
  152. color: 'rgba(0,128,255,0.4)',
  153. outline: {
  154. width: 0.5,
  155. color: '#0080FF'
  156. }
  157. }
  158. }
  159. });
  160. }
  161. /**
  162. * 带图标打点
  163. * @param {*} name 打点方法name,关闭时可做标识用
  164. * @param {*} param.imageUrl 打点图标,需要使用new URL(``, import.meta.url).href转为链接
  165. * @param {*} param.url 数据源接口地址
  166. */
  167. export function addImagePoint(name, params) {
  168. invokeParams('ShowData', {
  169. name: name,
  170. data: {
  171. url: new URL(`@/utils/map/test.json`, import.meta.url).href,
  172. parsedata: 'function(d){return d}',
  173. parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
  174. },
  175. legendVisible: false,
  176. popupEnabled: false,
  177. renderer: {
  178. type: 'simple',
  179. label: '测试车辆',
  180. visualVariables: [],
  181. symbol: {
  182. type: 'picture-marker',
  183. url: params.imageUrl,
  184. width: '56px',
  185. height: '56px'
  186. }
  187. },
  188. labels: [
  189. {
  190. fields: ['#.size'],
  191. color: [255, 255, 255, 1],
  192. size: 15,
  193. labelPlacement: 'center-center'
  194. }
  195. ]
  196. });
  197. }
  198. //点线面隐藏
  199. export function closePoint(name) {
  200. invokeParams('ShowData', {
  201. name: name,
  202. mode: 'visible',
  203. visible: false
  204. });
  205. }
  206. //轨迹
  207. export function addTrajectory() {
  208. invokeParams('ShowData', {
  209. name: 'car_layer1',
  210. type: 'track',
  211. isLocate: true,
  212. data: {
  213. isComputingRote: false,
  214. url: './Data/1212/GPS模拟数据.json',
  215. parsedata: 'function(d){return d.data}',
  216. parsegeometry: 'function(item){return {x:Number(item.X),y:Number(item.Y)}}'
  217. },
  218. legendVisible: true,
  219. popupEnabled: true,
  220. renderer: {
  221. type: 'unique-value',
  222. uniqueValueInfos: [
  223. {
  224. value: 'line',
  225. symbol: {
  226. type: 'line-3d',
  227. symbolLayers: [
  228. {
  229. type: 'line',
  230. size: 2,
  231. material: {
  232. color: 'black'
  233. },
  234. cap: 'round',
  235. join: 'round'
  236. }
  237. ]
  238. }
  239. },
  240. {
  241. value: 'start',
  242. symbol: {
  243. type: 'simple-marker',
  244. size: 20,
  245. color: 'red',
  246. outline: {
  247. width: 0.5,
  248. color: 'white'
  249. }
  250. }
  251. },
  252. {
  253. value: 'end',
  254. symbol: {
  255. type: 'simple-marker',
  256. size: 20,
  257. color: 'orange',
  258. outline: {
  259. width: 0.5,
  260. color: 'white'
  261. }
  262. }
  263. }
  264. ]
  265. }
  266. });
  267. }
  268. //轨迹播放
  269. export function playTrajectory() {
  270. invokeParams('ShowData', {
  271. name: 'car_layer1',
  272. mode: 'player',
  273. action: 'play',
  274. speed: 20,
  275. showline: true,
  276. renderer: {
  277. type: 'unique-value',
  278. uniqueValueInfos: [
  279. {
  280. value: 'line',
  281. symbol: {
  282. type: 'line-3d',
  283. symbolLayers: [
  284. {
  285. type: 'line',
  286. size: 2,
  287. material: {
  288. color: 'green'
  289. },
  290. cap: 'round',
  291. join: 'round'
  292. }
  293. ]
  294. }
  295. },
  296. {
  297. value: 'flowlabel',
  298. symbol: {
  299. type: 'text',
  300. color: 'black',
  301. text: '{{FID}}\r\n{{DATETIME}}\r\n\r\n',
  302. font: {
  303. size: 10,
  304. weight: 'bold'
  305. }
  306. }
  307. },
  308. {
  309. value: 'marker',
  310. symbol: {
  311. type: 'simple-marker',
  312. size: 20,
  313. color: 'red',
  314. outline: {
  315. width: 0.5,
  316. color: 'white'
  317. }
  318. }
  319. }
  320. ]
  321. }
  322. });
  323. }
  324. //标绘制线
  325. export function startBidding(visible = true) {
  326. invokeParams('userSketch', {
  327. type: 'point', //'point',
  328. visible: visible,
  329. isTools: true,
  330. isLocate: true,
  331. position: 'top-right',
  332. activeSymbol: {
  333. type: 'simple-marker',
  334. size: 5,
  335. color: 'red',
  336. outline: {
  337. width: 0.5,
  338. color: 'white'
  339. }
  340. }
  341. });
  342. }
  343. //画线
  344. export function addPolyLine(data, name) {
  345. invokeParams('ShowData', {
  346. name: name || 'layer1',
  347. type: 'polyline',
  348. data: {
  349. content: data,
  350. parsegeometry: "function(item){return [Number(item['x']), Number(item['y'])]}"
  351. },
  352. legendVisible: false,
  353. popupEnabled: false,
  354. renderer: {
  355. type: 'simple',
  356. label: '测试',
  357. visualVariables: [],
  358. symbol: {
  359. type: 'line-3d',
  360. symbolLayers: [
  361. {
  362. type: 'line',
  363. size: 2,
  364. material: {
  365. color: 'red'
  366. },
  367. cap: 'round',
  368. join: 'round'
  369. }
  370. ]
  371. }
  372. }
  373. });
  374. }
  375. export function juHe() {
  376. invokeParams('ShowData', {
  377. name: 'car_layer',
  378. // type: 'cluster',
  379. isLocate: true,
  380. data: {
  381. url: new URL(`@/utils/map/test2.json`, import.meta.url).href,
  382. parsegeometry: 'function(item){return {x:Number(item.X),y:Number(item.Y)}}'
  383. },
  384. popupEnabled: false,
  385. legendVisible: false,
  386. featureReduction: {
  387. type: 'cluster',
  388. clusterRadius: '200px',
  389. // maxClusterRadius: 200,
  390. labelingInfo: [
  391. {
  392. symbol: {
  393. type: 'text',
  394. color: '#004a5d',
  395. font: {
  396. size: '12px'
  397. }
  398. },
  399. labelPlacement: 'center-center'
  400. }
  401. ],
  402. labelsVisible: true,
  403. popupEnabled: false,
  404. minScale: 0,
  405. maxScale: 0
  406. },
  407. renderer: {
  408. type: 'unique-value',
  409. field: 'STATUSNAME',
  410. uniqueValueInfos: [
  411. {
  412. value: '已结案',
  413. label: '已结案',
  414. symbol: {
  415. type: 'simple-marker',
  416. size: 20,
  417. color: 'green',
  418. outline: {
  419. width: 0.5,
  420. color: 'white'
  421. }
  422. }
  423. }
  424. ]
  425. }
  426. // labels: [
  427. // {
  428. // fields: ['#.STATUSNAME'],
  429. // color: [255, 255, 255, 1],
  430. // size: 10,
  431. // labelPlacement: 'center-center'
  432. // }
  433. // ]
  434. });
  435. }
  436. //添加arcGisMap图层
  437. export function addArcgisMap() {
  438. invokeParams('AddArcgisMap', {
  439. name: '疾控图层',
  440. url: 'https://zgscim.china-gis.com/server/rest/services/basemap/basemap_white/MapServer',
  441. type: 'wmts'
  442. });
  443. }
  444. //开始输出点坐标点
  445. export function startOutputPoint() {
  446. invokeParams('outputClickPosition', {
  447. type: 'position',
  448. mode: 'start',
  449. popupEnabled: false,
  450. symbol: {
  451. type: 'simple-marker',
  452. size: 6,
  453. color: 'black',
  454. outline: {
  455. width: 0.5,
  456. color: 'white'
  457. }
  458. }
  459. });
  460. }
  461. //关闭输出点坐标
  462. export function closeOutputPoint() {
  463. invokeParams('outputClickPosition', {
  464. type: 'position',
  465. mode: 'stop'
  466. });
  467. }
  468. //定位
  469. export function gotoPosition(point) {
  470. invokeParams('goToPosition', {
  471. positon: point,
  472. heading: 0,
  473. tilt: 45,
  474. hasImg: true,
  475. marker: {
  476. size: 16,
  477. color: '#000fff'
  478. },
  479. zoom: 18,
  480. isRotation360: false
  481. });
  482. }