regionLayer.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 { Circle as CircleStyle, Fill, Text } from "ol/style.js";
  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. import Stroke from "ol/style/Stroke";
  16. /**
  17. * @description 地图层对象
  18. */
  19. class RegionLayer {
  20. constructor(map, farm) {
  21. let that = this;
  22. this.farmId = farm.id;
  23. this.vectorStyle = new KMap.VectorStyle();
  24. this.area = null
  25. this.index = null
  26. const colorObj = {
  27. "defalut":["#fba50410","#eee5e5"],
  28. "blue":["#2199f894","#2199f894"],
  29. "blue1":["#2199f804","#2199f804"],
  30. "blue2":["#2199f87a","#2199f87a"],
  31. "red":["#b8150094","#b8150094"],
  32. "red1":["#FF733F94","#FF733F94"],
  33. "red2":["#FFA96C94","#FFA96C94"],
  34. "green":["#006f0b94","#006f0b94"],
  35. "green1":["#32b81a94","#32b81a94"],
  36. "green2":["#B7FFAA94","#B7FFAA94"]
  37. }
  38. this.regionLayer = new KMap.VectorLayer("regionLayer", 99, {
  39. minZoom: 15,
  40. style: (f) => {
  41. let style1
  42. style1 = this.vectorStyle.getPolygonStyle("#fba50410", "#eee5e5", 2);
  43. if(f.get("bgName")==="active"){
  44. const color = colorObj[f.get("bgColor")]
  45. style1 = this.vectorStyle.getPolygonStyle(color[0], color[1], 2);
  46. }
  47. const style2 = new Style({
  48. text: new Text({
  49. text: f.get("id"),
  50. color: "#120046",
  51. stroke: new Stroke({
  52. color: "#FFFFFF",
  53. width: 2,
  54. }),
  55. backgroundFill: new Fill({
  56. color: "#f8f9fa10",
  57. width: 2,
  58. }),
  59. font: "30px sans-serif",
  60. }),
  61. });
  62. return [style1];
  63. },
  64. });
  65. map.addLayer(this.regionLayer.layer);
  66. this.initData(this.farmId);
  67. }
  68. //得到点样式
  69. getStyle(feature) {
  70. return this.getIconStyle(feature);
  71. }
  72. selectArea(index,color){
  73. if(this.index !=null){
  74. this.resetData()
  75. }
  76. this.area[index].set("bgColor", color);
  77. this.area[index].set("bgName", "active");
  78. this.index = index
  79. }
  80. resetData(){
  81. this.area.forEach(item =>{
  82. item.set("bgName", "defalut");
  83. })
  84. }
  85. selectAreaMultiple(arr){
  86. this.resetData()
  87. arr.forEach(item =>{
  88. this.area[item.value].set("bgColor", item.color);
  89. this.area[item.value].set("bgName", "active");
  90. })
  91. }
  92. initData(farmId) {
  93. let that = this;
  94. VE_API.region.listArea().then(({ data }) => {
  95. let features = [];
  96. for (let item of data) {
  97. let f = newRegionFeature({...item,bgName:"defalut",bgColor:"defalut"}, "wkt");
  98. features.push(f);
  99. }
  100. that.area = features
  101. const source = new VectorSource({
  102. features: features,
  103. });
  104. that.regionLayer.layer.setSource(source);
  105. });
  106. }
  107. reset(farm, region) {
  108. this.clearLayer();
  109. this.initData(farm.id);
  110. }
  111. // 清除聚合图层,解除绑定
  112. clearLayer() {
  113. if (this.regionLayer) {
  114. this.regionLayer.layer.getSource().clear();
  115. }
  116. }
  117. }
  118. export default RegionLayer;