samplePointLayer.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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.treeClusterLayer = new KMap.VectorLayer("tree-cluster",999,{
  33. minZoom:15,
  34. source:this.clusterSource,
  35. style:(f)=> this.getStyle(f)})
  36. this.yellowBlockLayer = new KMap.VectorLayer("yellow-block",999,{
  37. minZoom:15,
  38. // source:this.clusterSource,
  39. // source:"POINT(113.61396985128522 23.5859386716038)",
  40. style: () => {
  41. return new Style({
  42. image: new Icon({
  43. src: require("@/assets/images/map/yellow-block.png"),
  44. scale: 0.4,
  45. }),
  46. });
  47. },
  48. })
  49. map.addLayer(this.treeClusterLayer.layer)
  50. map.addLayer(this.yellowBlockLayer.layer);
  51. let point = new Feature(new Point([113.61396985128522,23.5859386716038]));
  52. this.yellowBlockLayer.addFeature(point);
  53. this.initData(this.farmId, this.regionId)
  54. this.addMapSingerClick(map);
  55. }
  56. getIconStyle(feature){
  57. let style = new Style({
  58. image: new Icon({
  59. // src: feature.get('icon'),
  60. src: require(`@/assets/images/map/${feature.get('iconName')}-icon.png`),
  61. scale:0.25,
  62. })
  63. });
  64. return style
  65. }
  66. //多点的过滤方法
  67. manyFeatureFilter(features){
  68. let res = features[0]
  69. if(features.length == 1){
  70. return res
  71. }
  72. for(let item of features){
  73. res = res.get('status') > item.get('status') ? res : item
  74. }
  75. return res;
  76. }
  77. //得到点样式
  78. getStyle(feature){
  79. feature = this.manyFeatureFilter(feature.get('features'))
  80. return this.getIconStyle(feature)
  81. }
  82. initData(farmId, regionId){
  83. let that = this
  84. VE_API.sample.list({farmId,regionId}).then(({data})=>{
  85. // data[0].status = 9
  86. let features = []
  87. for(let item of data){
  88. item.iconName='defalut'
  89. that.getIcon(item)
  90. let point = newPoint(item);
  91. features.push(point)
  92. }
  93. const source = new VectorSource({
  94. features: features,
  95. });
  96. that.clusterSource.setSource(source)
  97. })
  98. }
  99. addMapSingerClick(kmap){
  100. let that = this
  101. kmap.on("singleclick", (evt) => {
  102. let hasFeature = false
  103. kmap.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  104. if (layer instanceof VectorLayer && layer.get("name") === "tree-cluster") {
  105. hasFeature = true
  106. if(that.curPoint){
  107. that.curPoint.set("iconName", "defalut");
  108. }
  109. const featureArr = feature.get("features")
  110. const fs = featureArr[0]
  111. that.curPoint = fs
  112. fs.set("iconName", "active");
  113. eventBus.emit("click:point",{name:fs.get("id"),value:fs.get("highYield")})
  114. }
  115. if (layer instanceof VectorLayer && layer.get("name") === "yellow-block") {
  116. hasFeature = true
  117. console.log('333333');
  118. eventBus.emit("click:yellowBlock")
  119. }
  120. })
  121. if(!hasFeature){
  122. kmap.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  123. if (layer instanceof VectorLayer && layer.get("name") === "regionLayer") {
  124. hasFeature = false
  125. if(that.curArea){
  126. that.curArea.set("bgName", "defalut");
  127. }
  128. feature.set("bgName", "active");
  129. that.curArea = feature
  130. eventBus.emit("click:area",{name:feature.get("id"),value:feature.get("highYield")})
  131. }
  132. })
  133. }
  134. })
  135. }
  136. resetPoint(){
  137. if(this.curPoint){
  138. this.curPoint.set("iconName", "defalut");
  139. }
  140. }
  141. getIcon(item){
  142. // let imgSrc = require(`@/assets/images/map/${item.iconName}-icon.png`)
  143. // if(item.status == 9){
  144. // imgSrc = require('@/assets/images/map/active-icon.png')
  145. // }
  146. // if(item.status == 2){
  147. // imgSrc = require('@/assets/status/status_szyc.png')
  148. // }
  149. // if(item.status == 3){
  150. // imgSrc = require('@/assets/status/status_bcyc.png')
  151. // }
  152. // item["icon"] = imgSrc
  153. }
  154. ccc(){
  155. console.log('00000000');
  156. }
  157. reset(farm, region){
  158. console.log('farm',farm);
  159. this.clearCluster()
  160. this.initData(farm.id, region.id)
  161. }
  162. // 清除聚合图层,解除绑定
  163. clearCluster() {
  164. if (this.treeClusterLayer) {
  165. this.treeClusterLayer.layer.getSource().getSource().clear()
  166. }
  167. }
  168. }
  169. export default SamplePointLayer;