samplePointLayer.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. /**
  16. * @description 地图层对象
  17. */
  18. class SamplePointLayer {
  19. constructor(map, farm, region) {
  20. let that = this;
  21. this.farmId = farm.id
  22. this.regionId = region.id
  23. let vectorStyle = new KMap.VectorStyle();
  24. this.vectorStyle = vectorStyle;
  25. this.clusterSource = new Cluster({
  26. distance: 15,
  27. minDistance: 60,
  28. });
  29. this.treeClusterLayer = new KMap.VectorLayer("tree-cluster",999,{
  30. minZoom:15,
  31. source:this.clusterSource,
  32. style:(f)=> this.getStyle(f)})
  33. map.addLayer(this.treeClusterLayer.layer)
  34. this.initData(this.farmId, this.regionId)
  35. }
  36. getIconStyle(feature){
  37. let style = new Style({
  38. image: new Icon({
  39. src: feature.get('icon'),
  40. scale:1,
  41. })
  42. });
  43. return style
  44. }
  45. //多点的过滤方法
  46. manyFeatureFilter(features){
  47. let res = features[0]
  48. if(features.length == 1){
  49. return res
  50. }
  51. for(let item of features){
  52. res = res.get('status') > item.get('status') ? res : item
  53. }
  54. return res;
  55. }
  56. //得到点样式
  57. getStyle(feature){
  58. feature = this.manyFeatureFilter(feature.get('features'))
  59. return this.getIconStyle(feature)
  60. }
  61. initData(farmId, regionId){
  62. let that = this
  63. VE_API.sample.list({farmId,regionId}).then(({data})=>{
  64. let features = []
  65. for(let item of data){
  66. that.getIcon(item)
  67. let point = newPoint(item);
  68. features.push(point)
  69. }
  70. const source = new VectorSource({
  71. features: features,
  72. });
  73. that.clusterSource.setSource(source)
  74. })
  75. }
  76. getIcon(item){
  77. let imgSrc = require('@/assets/status/status_xfdw.png')
  78. if(item.status == 1){
  79. imgSrc = require('@/assets/status/status_dfh.png')
  80. }
  81. if(item.status == 2){
  82. imgSrc = require('@/assets/status/status_szyc.png')
  83. }
  84. if(item.status == 3){
  85. imgSrc = require('@/assets/status/status_bcyc.png')
  86. }
  87. item["icon"] = imgSrc
  88. }
  89. reset(farm, region){
  90. this.clearCluster()
  91. this.initData(farm.id, region.id)
  92. }
  93. // 清除聚合图层,解除绑定
  94. clearCluster() {
  95. if (this.treeClusterLayer) {
  96. this.treeClusterLayer.layer.getSource().getSource().clear()
  97. }
  98. }
  99. }
  100. export default SamplePointLayer;