samplePointLayer.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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 {unByKey} from "ol/Observable";
  11. import Style from "ol/style/Style";
  12. import Icon from "ol/style/Icon";
  13. import {Cluster, Vector as VectorSource} from "ol/source";
  14. import {newPoint} from "../../zhgl/map";
  15. import eventBus from "@/api/eventBus";
  16. /**
  17. * @description 地图层对象
  18. */
  19. class SamplePointLayer {
  20. constructor(map, farm, region) {
  21. let that = this;
  22. this.farmId = farm.id
  23. this.regionId = region.id
  24. let vectorStyle = new KMap.VectorStyle();
  25. this.vectorStyle = vectorStyle;
  26. this.clusterSource = new Cluster({
  27. distance: 15,
  28. minDistance: 60,
  29. });
  30. this.curPoint = null
  31. this.curArea = null
  32. this.isUpdatePoint = null
  33. this.isUpdateArea = null
  34. this.treeClusterLayer = new KMap.VectorLayer("tree-cluster",999,{
  35. minZoom:15,
  36. source:this.clusterSource,
  37. style:(f)=> this.getStyle(f)})
  38. this.yellowBlockLayer = new KMap.VectorLayer("yellow-block",999,{
  39. minZoom:15,
  40. // source:this.clusterSource,
  41. // source:"POINT(113.61396985128522 23.5859386716038)",
  42. style: () => {
  43. return new Style({
  44. image: new Icon({
  45. src: require("@/assets/images/map/yellow-block.png"),
  46. scale: 0.4,
  47. }),
  48. });
  49. },
  50. })
  51. map.addLayer(this.treeClusterLayer.layer)
  52. map.addLayer(this.yellowBlockLayer.layer);
  53. let point = new Feature(new Point([113.61396985128522,23.5859386716038]));
  54. let point1 = new Feature(new Point([113.61390710255375 ,23.586379215663726]));
  55. let point2 = new Feature(new Point([113.61491218688275 ,23.58671519555776]));
  56. this.yellowBlockLayer.addFeature(point);
  57. this.yellowBlockLayer.addFeature(point1);
  58. this.yellowBlockLayer.addFeature(point2);
  59. this.initData(this.farmId, this.regionId)
  60. this.addMapSingerClick(map);
  61. }
  62. getIconStyle(feature){
  63. let style = new Style({
  64. image: new Icon({
  65. src: feature.get('icon'),
  66. // src: require(`@/assets/images/map/${feature.get('iconName')}-icon.png`),
  67. scale:feature.get('scale'),
  68. })
  69. });
  70. return style
  71. }
  72. //多点的过滤方法
  73. manyFeatureFilter(features){
  74. let res = features[0]
  75. if(features.length == 1){
  76. return res
  77. }
  78. for(let item of features){
  79. res = res.get('status') > item.get('status') ? res : item
  80. }
  81. return res;
  82. }
  83. //得到点样式
  84. getStyle(feature){
  85. feature = this.manyFeatureFilter(feature.get('features'))
  86. return this.getIconStyle(feature)
  87. }
  88. initData(farmId, regionId){
  89. let that = this
  90. VE_API.sample.list({farmId:766,regionId:2}).then(({data})=>{
  91. // data[0].status = 9
  92. let features = []
  93. for(let item of data){
  94. item.iconName='defalut'
  95. that.getIcon(item)
  96. let point = newPoint(item);
  97. features.push(point)
  98. }
  99. const source = new VectorSource({
  100. features: features,
  101. });
  102. that.clusterSource.setSource(source)
  103. })
  104. }
  105. addMapSingerClick(kmap){
  106. let that = this
  107. kmap.on("singleclick", (evt) => {
  108. let hasFeature = false
  109. kmap.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  110. if (layer instanceof VectorLayer && layer.get("name") === "tree-cluster") {
  111. hasFeature = true
  112. if(that.curPoint){
  113. that.curPoint.set("iconName", "defalut");
  114. }
  115. const featureArr = feature.get("features")
  116. const fs = featureArr[0]
  117. that.curPoint = fs
  118. if(that.isUpdatePoint){
  119. fs.set("iconName", "active");
  120. }
  121. eventBus.emit("click:point",{name:fs.get("id"),value:fs.get("highYield")})
  122. }
  123. if (layer instanceof VectorLayer && layer.get("name") === "yellow-block") {
  124. hasFeature = true
  125. eventBus.emit("click:yellowBlock",feature.get("geometry").flatCoordinates[0])
  126. }
  127. })
  128. if(!hasFeature){
  129. kmap.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  130. if (layer instanceof VectorLayer && layer.get("name") === "regionLayer") {
  131. hasFeature = false
  132. if(that.curArea){
  133. that.curArea.set("bgName", "defalut");
  134. }
  135. that.curArea = feature
  136. if(that.isUpdateArea){
  137. feature.set("bgName", "active");
  138. eventBus.emit("click:updateArea",{name:feature.get("id"),value:feature.get("blueZone")})
  139. }else{
  140. eventBus.emit("click:area",{name:feature.get("id"),value:feature.get("highYield")})
  141. }
  142. }
  143. })
  144. }
  145. })
  146. }
  147. resetPoint(){
  148. this.isUpdatePoint = null
  149. if(this.curPoint){
  150. this.curPoint.set("iconName", "defalut");
  151. }
  152. }
  153. updatePointStatus(e){
  154. this.isUpdatePoint = e
  155. }
  156. updateAreaStatus(e){
  157. this.isUpdateArea = e
  158. }
  159. getIcon(item){
  160. console.log(item)
  161. let imgSrc = require(`@/assets/images/map/${item.iconName}-icon.png`)
  162. let scale = 0.25
  163. if(item.status == 1){
  164. imgSrc = require('@/assets/images/map/active-icon.png')
  165. }
  166. if(item.status == 2){
  167. imgSrc = require('@/assets/status/status_szyc.png')
  168. scale = 0.8
  169. }
  170. if(item.status == 3){
  171. imgSrc = require('@/assets/status/status_bcyc.png')
  172. scale = 0.8
  173. }
  174. item["icon"] = imgSrc
  175. item["scale"] = scale
  176. }
  177. reset(farm, region){
  178. console.log('farm',farm);
  179. this.clearCluster()
  180. this.initData(farm.id, region.id)
  181. }
  182. // 清除聚合图层,解除绑定
  183. clearCluster() {
  184. if (this.treeClusterLayer) {
  185. this.treeClusterLayer.layer.getSource().getSource().clear()
  186. }
  187. }
  188. }
  189. export default SamplePointLayer;