alarmLayer copy.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. // 底图数据
  27. eventBus.on("alarmList:warningLayers", (data) => {
  28. this.warningLayers = data
  29. this.plantLayer1 = this.kmap.addXYZLayer(
  30. this.warningLayers["面积"],
  31. { minZoom: 6, maxZoom: 22 },
  32. 99,
  33. 0.4
  34. );
  35. this.plantLayer1.layer.setOpacity(0.4)
  36. this.plantLayer2 = this.kmap.addXYZLayer(
  37. this.warningLayers["产量"],
  38. { minZoom: 6, maxZoom: 22 },
  39. 99,
  40. 0.4
  41. );
  42. this.plantLayer2.layer.setOpacity(0.4)
  43. this.plantLayer3 = ""
  44. this.plantLayer4 = ""
  45. })
  46. // 预警底图
  47. eventBus.on("alarmList:changeMapLayer", function (url) {
  48. console.log('uu', url);
  49. that.initLayer("https://birdseye-img.sysuimars.com/map/risk/lby_dwdh/{z}/{x}/{y}.png")
  50. })
  51. // 种植面积,预估产量,底图切换
  52. eventBus.on("warningHome:toggleMapLayer", function (name) {
  53. that.togglePlantLayer(name)
  54. })
  55. // 切换区域广东省or从化区
  56. that.areaId = "3"
  57. eventBus.on("warningHome:toggleArea", (id) => {
  58. that.areaId = id
  59. that.changeDistrict(id)
  60. })
  61. // 时间轴
  62. eventBus.on("weatherTime:changeTime", (index) => {
  63. console.log('vvv',index);
  64. that.toggleSmallLayer(index)
  65. })
  66. }
  67. initLayer(layerUrl) {
  68. this.lizhiLayer && this.kmap.map.removeLayer(this.lizhiLayer.layer)
  69. // 104.3017367175,30.329292136
  70. this.lizhiLayer = this.kmap.addXYZLayer(
  71. layerUrl,
  72. { minZoom: 5, maxZoom: 22 },
  73. 99,
  74. 0.4
  75. );
  76. this.lizhiLayer.layer.setOpacity(0.7)
  77. // this.kmap.map.getView().setZoom(18)
  78. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  79. }
  80. togglePlantLayer(name) {
  81. const url = this.warningLayers[name]
  82. console.log('rrrr', url);
  83. // const url = "https://birdseye-img.sysuimars.com/map/szts/{z}/{x}/{y}.png"
  84. // console.log('uu', url);
  85. // this.plantLayer && this.kmap.map.removeLayer(this.plantLayer.layer)
  86. // 104.3017367175,30.329292136
  87. // this.plantLayer = this.kmap.addXYZLayer(
  88. // url,
  89. // { minZoom: 6, maxZoom: 22 },
  90. // 99,
  91. // 0.4
  92. // );
  93. // this.plantLayer.layer.setOpacity(0.4)
  94. if (name === "面积") {
  95. this.plantLayer1.layer.setVisible(true)
  96. this.plantLayer2.layer.setVisible(false)
  97. } else if(name === "产量") {
  98. this.plantLayer1.layer.setVisible(false)
  99. this.plantLayer2.layer.setVisible(true)
  100. }
  101. this.kmap.map.getView().setZoom(7.3)
  102. this.kmap.map.getView().setCenter([113.679, 23.607])
  103. // this.kmap.map.getView().setCenter([113.61702297075017, 23.584863449735067])
  104. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  105. // this.plantLayer && this.kmap.map.removeLayer(this.plantLayer.layer)
  106. // // 104.3017367175,30.329292136
  107. // this.plantLayer = this.kmap.addXYZLayer(
  108. // url,
  109. // { minZoom: 5, maxZoom: 22 },
  110. // 99,
  111. // 0.4
  112. // );
  113. // this.plantLayer.layer.setOpacity(0.7)
  114. // this.kmap.map.getView().setZoom(18)
  115. // this.kmap.map.getView().setCenter([104.3017367175, 30.329292136])
  116. }
  117. // 切换地图区域
  118. changeDistrict(id) {
  119. VE_API.warning.fetchAreaDistrict({ id }).then(({ data }) => {
  120. if (data.geom) {
  121. let f = new Feature({
  122. geometry: new WKT().readGeometry(data.geom)
  123. })
  124. this.regionLayer.source.addFeature(f)
  125. this.kmap.map.getView().fit(f.getGeometry(), { padding: [180, 150, 100, 150] })
  126. }
  127. if (id === "3") {
  128. this.kmap.map.getView().setZoom(7.2)
  129. // const position = store.getters.userinfo.location
  130. this.kmap.map.getView().setCenter([113.679, 23.607])
  131. }
  132. })
  133. }
  134. // 从化区-切换到小范围
  135. toggleSmallLayer(index) {
  136. if (this.areaId === "3") {
  137. // 虚拟果园会播放物候变化
  138. }
  139. if (this.areaId === "3186") {
  140. this.kmap.map.getView().setZoom(12+index)
  141. // const position = store.getters.userinfo.location
  142. this.kmap.map.getView().setCenter([113.679, 23.607])
  143. }
  144. }
  145. }
  146. export default AlarmLayer;