alarmLayer.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. import eventBus from "@/api/eventBus";
  2. import * as KMap from "@/utils/ol-map/KMap";
  3. import { Vector as VectorSource } from "ol/source.js";
  4. import Style from "ol/style/Style";
  5. import { WKT } from 'ol/format'
  6. import { Fill, Text } from "ol/style";
  7. import { Feature } from "ol";
  8. import store from '@/store'
  9. /**
  10. *
  11. */
  12. class AlarmLayer {
  13. constructor(kmap) {
  14. let that = this;
  15. this.kmap = kmap
  16. let vectorStyle = new KMap.VectorStyle()
  17. this.regionLayer = new KMap.VectorLayer("regionLayer", 3, {
  18. source: new VectorSource({}),
  19. style: function (f) {
  20. let style2 = vectorStyle.getPolygonStyle("#032833" + "30", "#c7cb20", 2)
  21. return [style2]
  22. }
  23. });
  24. this.kmap.addLayer(this.regionLayer.layer)
  25. this.warningLayers = {}
  26. this.plantLayer = null
  27. this.warningLayer = null
  28. // 底图数据
  29. eventBus.on("alarmList:warningLayers", (data) => {
  30. this.warningLayers = data
  31. })
  32. // 预警底图
  33. eventBus.on("alarmList:changeMapLayer", function ({url, type}) {
  34. that.plantLayer && that.kmap.map.removeLayer(that.plantLayer.layer)
  35. that.initWarningLayer(url, type)
  36. })
  37. // 种植面积,预估产量,底图切换
  38. eventBus.on("warningHome:toggleMapLayer", function (name) {
  39. that.warningLayer && that.kmap.map.removeLayer(that.warningLayer.layer)
  40. that.togglePlantLayer(name)
  41. })
  42. // 切换区域广东省or从化区
  43. that.areaId = "3"
  44. eventBus.on("warningHome:toggleArea", (id) => {
  45. that.plantLayer && that.kmap.map.removeLayer(that.plantLayer.layer)
  46. that.warningLayer && that.kmap.map.removeLayer(that.warningLayer.layer)
  47. that.areaId = id
  48. that.changeDistrict(id)
  49. })
  50. // 时间轴
  51. eventBus.on("weatherTime:changeTime", ({index}) => {
  52. console.log('vvv',index);
  53. that.toggleSmallLayer(index)
  54. })
  55. }
  56. initWarningLayer(layerUrl, type) {
  57. this.warningLayer && this.kmap.map.removeLayer(this.warningLayer.layer)
  58. // 104.3017367175,30.329292136
  59. this.warningLayer = this.kmap.addXYZLayer(
  60. layerUrl,
  61. { minZoom: 5, maxZoom: 22 },
  62. 99,
  63. 0.4
  64. );
  65. this.warningLayer.layer.setOpacity(0.67)
  66. if (type === 1) {
  67. this.kmap.map.getView().setZoom(7.6)
  68. // 23.310292140601142,113.10638639232688
  69. this.kmap.map.getView().setCenter([113.609050, 23.30707646])
  70. }
  71. // 23.407672480519803,113.07739330484166
  72. // this.kmap.map.getView().setZoom(18)
  73. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  74. }
  75. togglePlantLayer(name) {
  76. const url = this.warningLayers[name]
  77. // const url = "https://birdseye-img.sysuimars.com/map/szts/{z}/{x}/{y}.png"
  78. // console.log('uu', url);
  79. this.plantLayer && this.kmap.map.removeLayer(this.plantLayer.layer)
  80. // 104.3017367175,30.329292136
  81. this.plantLayer = this.kmap.addXYZLayer(
  82. url,
  83. { minZoom: 6, maxZoom: 22 },
  84. 99,
  85. 0.4
  86. );
  87. this.plantLayer.layer.setOpacity(0.6)
  88. if (name !== "从化荔枝") {
  89. this.kmap.map.getView().setZoom(7.6)
  90. this.kmap.map.getView().setCenter([113.609050, 23.30707646])
  91. } else {
  92. this.kmap.map.getView().setZoom(11)
  93. this.kmap.map.getView().setCenter([113.679, 23.607])
  94. }
  95. // this.kmap.map.getView().setCenter([113.679, 23.607])
  96. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  97. // this.plantLayer && this.kmap.map.removeLayer(this.plantLayer.layer)
  98. // // 104.3017367175,30.329292136
  99. // this.plantLayer = this.kmap.addXYZLayer(
  100. // url,
  101. // { minZoom: 5, maxZoom: 22 },
  102. // 99,
  103. // 0.4
  104. // );
  105. // this.plantLayer.layer.setOpacity(0.7)
  106. // this.kmap.map.getView().setZoom(18)
  107. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  108. }
  109. // 切换地图区域
  110. changeDistrict(id) {
  111. VE_API.warning.fetchAreaDistrict({ id }).then(({ data }) => {
  112. if (data.geom) {
  113. let f = new Feature({
  114. geometry: new WKT().readGeometry(data.geom)
  115. })
  116. this.regionLayer.source.addFeature(f)
  117. this.kmap.map.getView().fit(f.getGeometry(), { padding: [180, 150, 100, 150] })
  118. }
  119. if (id === "3") {
  120. this.kmap.map.getView().setZoom(7.2)
  121. // const position = store.getters.userinfo.location
  122. this.kmap.map.getView().setCenter([113.679, 23.607])
  123. }
  124. })
  125. }
  126. // 从化区-切换到小范围
  127. toggleSmallLayer(index) {
  128. if (this.areaId === "3") {
  129. // 虚拟果园会播放物候变化
  130. }
  131. if (this.areaId === "3186") {
  132. let url = "https://birdseye-img.sysuimars.com/map/risk/lby_rjwd/{z}/{x}/{y}.png"
  133. // if (index === 0) {
  134. // url = "https://birdseye-img.sysuimars.com/map/risk/lby_ghqs/{z}/{x}/{y}.png"
  135. // } else if (index === 1) {
  136. // url = "https://birdseye-img.sysuimars.com/map/risk/lby_dwdh/{z}/{x}/{y}.png"
  137. // }
  138. this.warningLayer && this.kmap.map.removeLayer(this.warningLayer.layer)
  139. // 104.3017367175,30.329292136
  140. this.warningLayer = this.kmap.addXYZLayer(
  141. url,
  142. { minZoom: 5, maxZoom: 22 },
  143. 99,
  144. 0.4
  145. );
  146. this.warningLayer.layer.setOpacity(0.6)
  147. // this.kmap.map.getView().setZoom(12+index)
  148. // const position = store.getters.userinfo.location
  149. this.kmap.map.getView().setZoom(16.6)
  150. // 23.60747406160339,113.6805952006568
  151. this.kmap.map.getView().setCenter([113.6805952006568, 23.60747406160339])
  152. }
  153. }
  154. }
  155. export default AlarmLayer;