regionLayer.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 {Vector as VectorSource} from "ol/source";
  14. import {newRegionFeature} from "../../zhgl/map";
  15. /**
  16. * @description 地图层对象
  17. */
  18. class RegionLayer {
  19. constructor(map, farm) {
  20. let that = this;
  21. this.farmId = farm.id
  22. this.vectorStyle = new KMap.VectorStyle();
  23. this.regionLayer = new KMap.VectorLayer("regionLayer",99,{
  24. minZoom:15,
  25. style:this.vectorStyle.getPolygonStyle("#fba50410", "#eee5e5", 2)
  26. })
  27. map.addLayer(this.regionLayer.layer)
  28. this.initData(this.farmId)
  29. }
  30. //得到点样式
  31. getStyle(feature){
  32. return this.getIconStyle(feature)
  33. }
  34. initData(farmId){
  35. let that = this
  36. VE_API.region.list({farmId}).then(({data})=>{
  37. let features = []
  38. for(let item of data){
  39. let f = newRegionFeature(item,"wkt");
  40. features.push(f)
  41. }
  42. const source = new VectorSource({
  43. features: features,
  44. });
  45. that.regionLayer.layer.setSource(source)
  46. })
  47. }
  48. reset(farm, region){
  49. this.clearLayer()
  50. this.initData(farm.id, region.id)
  51. }
  52. // 清除聚合图层,解除绑定
  53. clearLayer() {
  54. if (this.regionLayer) {
  55. this.regionLayer.layer.getSource().clear()
  56. }
  57. }
  58. }
  59. export default RegionLayer;