warningMap.js 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. import config from "@/api/config.js";
  2. import * as KMap from "@/utils/ol-map/KMap";
  3. import * as util from "@/common/ol_common.js";
  4. import Point from "ol/geom/Point.js";
  5. import Feature from "ol/Feature";
  6. import VectorLayer from "ol/layer/Vector.js";
  7. import WKT from "ol/format/WKT.js";
  8. import ScaleLine from "ol/control/ScaleLine";
  9. import { useRouter } from "vue-router";
  10. import Overlay from 'ol/Overlay'
  11. import eventBus from "@/api/eventBus";
  12. /**
  13. * @description 地图层对象
  14. */
  15. class HomeMap {
  16. constructor() {
  17. let that = this;
  18. let vectorStyle = new KMap.VectorStyle();
  19. this.vectorStyle = vectorStyle;
  20. }
  21. initMap(location, target) {
  22. let level = 6;
  23. let coordinate = util.wktCastGeom(location).getFirstCoordinate();
  24. this.kmap = new KMap.Map(target, level, coordinate[0], coordinate[1], null, 6, 22);
  25. eventBus.emit('warningMap:init', this.kmap);
  26. this.addPopup()
  27. this.addMapListen()
  28. }
  29. addMapListen() {
  30. let that = this
  31. // 监听地图点击事件
  32. // 创建弹窗图层
  33. this.popup = new Overlay({
  34. element: document.getElementById('popup'),
  35. positioning: 'bottom-center',
  36. offset: [0, -10],
  37. });
  38. this.kmap.map.addOverlay(this.popup);
  39. setTimeout(() => {
  40. console.log('');
  41. // this.popup.getElement().innerHTML = `<div class="flight" id="flight">231231</div>`;
  42. }, 100)
  43. that.kmap.on('singleclick', function (event) {
  44. let feature = that.kmap.map.forEachFeatureAtPixel(event.pixel, function (feature) {
  45. return feature;
  46. });
  47. console.log('feature', feature);
  48. if (feature) {
  49. // 在这里可以获取feature的属性,并显示在弹窗中
  50. let content = '<p>Feature properties:</p><ul>';
  51. for (let key in feature.getProperties()) {
  52. content += '<li>' + key + ': ' + feature.get(key) + '</li>';
  53. }
  54. content += '</ul>';
  55. document.getElementById('popup-title').innerHTML = "广东-清远";
  56. document.getElementById('popup-content').innerHTML = content;
  57. that.popup.setPosition(event.coordinate); // 设置弹窗位置为点击位置
  58. } else {
  59. // that.popup.setPosition(undefined); // 如果没有点击到feature,则隐藏弹窗
  60. // 在这里可以获取feature的属性,并显示在弹窗中
  61. let content = '<div>';
  62. // for (let key in feature.getProperties()) {
  63. // content += '<li>' + key + ': ' + feature.get(key) + '</li>';
  64. // }
  65. content += '区县的气象风险</div>';
  66. document.getElementById('popup-title').innerHTML = "广东-清远";
  67. document.getElementById('popup-content').innerHTML = content;
  68. that.popup.setPosition(event.coordinate); // 设置弹窗位置为点击位置
  69. }
  70. })
  71. }
  72. // 点击地图出现弹窗
  73. addPopup() {
  74. // 创建弹窗图层
  75. this.popup = new Overlay({
  76. element: document.getElementById('popup')
  77. });
  78. this.kmap.map.addOverlay(this.popup);
  79. }
  80. }
  81. export default HomeMap;