authenticMap.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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 Style from "ol/style/Style";
  5. import Icon from "ol/style/Icon";
  6. import VectorLayer from "ol/layer/Vector.js";
  7. import WKT from "ol/format/WKT.js";
  8. import { reactive } from "vue";
  9. import Point from "ol/geom/Point.js";
  10. import Feature from "ol/Feature";
  11. import { newPoint } from "@/utils/map.js";
  12. import { Fill, Text } from "ol/style";
  13. import { getArea } from "ol/sphere.js";
  14. import * as proj from "ol/proj";
  15. import proj4 from "proj4";
  16. import { register } from "ol/proj/proj4";
  17. proj4.defs(
  18. "EPSG:38572",
  19. "+proj=merc +a=6378137 +b=6378137 +lat_ts=0 +lon_0=0 +x_0=0 +y_0=0 +k=1 +units=m +nadgrids=@null +wktext +no_defs +type=crs"
  20. );
  21. register(proj4);
  22. export let mapData = reactive({
  23. isEdit: false,
  24. isEditArea: false,
  25. curPointData: {},
  26. point: null,
  27. selectPointArr: [],
  28. isPointHide: null,
  29. });
  30. /**
  31. * @description 地图层对象
  32. */
  33. class AuthenticMap {
  34. constructor() {
  35. let that = this;
  36. let vectorStyle = new KMap.VectorStyle();
  37. this.vectorStyle = vectorStyle;
  38. // 位置图标
  39. this.clickPointLayer = new KMap.VectorLayer("clickPointLayer", 9999, {
  40. style: (f) => {
  41. const style1 = new Style({
  42. image: new Icon({
  43. src: require(`@/assets/images/map/${f.get("icon")}-icon.png`),
  44. scale: 0.45,
  45. }),
  46. });
  47. const style2 = new Style({
  48. text: new Text({
  49. font: "16px sans-serif",
  50. text: f.get("masterName"),
  51. offsetY: -40,
  52. padding: [4, 3, 2, 106],
  53. fill: new Fill({ color: "#fff" }), // 字体颜色
  54. }),
  55. });
  56. const style3 = new Style({
  57. image: new Icon({
  58. src: require(`@/assets/images/map/${f.get("iconBg")}.png`),
  59. scale: 0.45,
  60. displacement: [0, 90],
  61. }),
  62. });
  63. return [style1, style2, style3];
  64. },
  65. });
  66. this.locationLayer = new KMap.VectorLayer("locationLayer", 9999, {
  67. style: () => {
  68. return new Style({
  69. image: new Icon({
  70. src: require("@/assets/images/map/location.png"),
  71. scale: 0.45,
  72. }),
  73. });
  74. },
  75. });
  76. // 存储绘制的地块特征
  77. // this.drawnFeatures = [];
  78. }
  79. initMap(location, target) {
  80. let level = 16;
  81. let coordinate = util.wktCastGeom(location).getFirstCoordinate();
  82. this.kmap = new KMap.Map(
  83. target,
  84. level,
  85. coordinate[0],
  86. coordinate[1],
  87. null,
  88. 6,
  89. 22
  90. );
  91. this.kmap.initDraw((e) => {
  92. if (e.type === "drawend") {
  93. mapData.isEdit = true;
  94. mapData.point = e.feature;
  95. const coord = e.feature.getGeometry().getCoordinates()[0];
  96. // console.log('coord',coord);
  97. }else{
  98. const coord = e.feature.getGeometry().getCoordinates()[0];
  99. // console.log('coord',coord);
  100. }
  101. // console.log("e", e);
  102. // console.log('111',e.feature.get('geometry'));
  103. // this.drawnFeatures.push(e.feature);
  104. });
  105. this.kmap.modifyDraw((e) => {
  106. mapData.isEditArea = false;
  107. mapData.isEditArea = true;
  108. });
  109. this.kmap.addLayer(this.clickPointLayer.layer);
  110. this.kmap.addLayer(this.locationLayer.layer);
  111. this.addMapSingerClick();
  112. }
  113. undoLastDraw() {
  114. const features = this.kmap.getLayerFeatures();
  115. features.forEach((feature) => {
  116. console.log("feature", feature, mapData.point);
  117. const coord = feature.getGeometry().getCoordinates()[0];
  118. });
  119. // this.kmap.setFeatureCursor("move")
  120. // const lastFeature = this.drawnFeatures.pop();
  121. // if (lastFeature) {
  122. // // const features = this.kmap.getLayerFeatures();
  123. // console.log("this", this.kmap.polygonLayer.source);
  124. // this.kmap.polygonLayer.source.removeFeature(lastFeature);
  125. // // this.kmap.getLayers().getArray()[1].getSource().removeFeature(lastFeature);
  126. // }
  127. }
  128. // 取消地块
  129. cancelDraw() {
  130. this.kmap.polygonLayer.source.removeFeature(mapData.point);
  131. }
  132. // 添加点位
  133. addPoint(points) {
  134. const arrPoints = [];
  135. if (points && points.length > 0) {
  136. points.forEach((item) => {
  137. arrPoints.push(
  138. newPoint({ ...item, icon: "point", iconBg: "name-bg" }, "point")
  139. );
  140. });
  141. this.clickPointLayer.source.addFeatures(arrPoints);
  142. }
  143. }
  144. // 设置地图中心点位
  145. setMapCenter(v) {
  146. let arrayOfNumbers = [];
  147. const arrayOfStrings = v.split(",");
  148. arrayOfNumbers = [arrayOfStrings[1], arrayOfStrings[0]];
  149. this.kmap.map.getView().setCenter(arrayOfNumbers);
  150. this.locationLayer.source.clear();
  151. let point = new Feature(new Point(arrayOfNumbers));
  152. this.locationLayer.addFeature(point);
  153. }
  154. // 开始勾画
  155. startDraw() {
  156. this.kmap.startDraw();
  157. }
  158. //结束勾画
  159. endDraw() {
  160. this.kmap.endDraw();
  161. this.kmap.endModify();
  162. }
  163. // 开始编辑
  164. startModify() {
  165. this.kmap.startModify();
  166. mapData.point.set("icon", "point-act");
  167. }
  168. //结束编辑
  169. endModify() {
  170. this.kmap.endModify();
  171. }
  172. // 清空单个数据
  173. clearMapData(name, val) {
  174. mapData[name] = val;
  175. }
  176. // 地图点击事件
  177. addMapSingerClick() {
  178. let that = this;
  179. that.kmap.on("singleclick", (evt) => {
  180. let num = 0;
  181. that.kmap.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  182. // 点击的图层是否是VectorLayer
  183. if (
  184. layer instanceof VectorLayer &&
  185. (layer.get("name") === "clickPointLayer" ||
  186. layer.get("name") === "defaultPolygonLayer")
  187. ) {
  188. // 每次点击,只走一遍该方法
  189. num = num + 1;
  190. if (num === 1) {
  191. that.getSelectPointArr(feature.get("id"));
  192. that.kmap.endDraw();
  193. }
  194. }
  195. });
  196. });
  197. }
  198. setPoint(name) {
  199. const arr = mapData.selectPointArr.filter(
  200. (item) => item.values_.icon === "point-act"
  201. );
  202. if (arr.length > 0) {
  203. mapData.point = arr[0];
  204. mapData.point.set("icon", name);
  205. mapData.isPointHide.set("icon", name);
  206. mapData.point.set("iconBg", "name-bg");
  207. }
  208. if (arr.length === 1) {
  209. mapData.selectPointArr = [];
  210. }
  211. }
  212. //添加地块
  213. setAreaGeometry(geometryArr) {
  214. let that = this;
  215. geometryArr.map((item) => {
  216. item.icon = "point";
  217. item.iconHide = "false";
  218. that.kmap.setLayerWkt(item.featureWkt, item);
  219. });
  220. }
  221. // 移除点的功能
  222. removePoint() {
  223. // console.log('getDefaultCursor',this.kmap.getDefaultCursor());
  224. // this.kmap.setDefaultCursor('text')
  225. // console.log('getDefaultCursor',this.kmap.getDefaultCursor());
  226. // var source = this.kmap.setDefaultCursor('move');
  227. // console.log('source',this.kmap);
  228. // var source = this.kmap.polygonLayer.source
  229. // console.log('mapData.curPointData',mapData.curPointData);
  230. // source.removeFeature(mapData.curPointData)
  231. // source.removeFeature(pointFeature);
  232. // this.kmap.endDraw1()
  233. }
  234. // 获取所有选中点位
  235. getSelectPointArr(id) {
  236. const arr = [];
  237. this.clickPointLayer.source.forEachFeature((feature) => {
  238. if (feature.get("id") === id) {
  239. // 修改当前点位高亮
  240. const icon = feature.get("icon") === "point" ? "point-act" : "point";
  241. const iconBg =
  242. feature.get("iconBg") === "name-bg" ? "name-act-bg" : "name-bg";
  243. feature.set("icon", icon);
  244. feature.set("iconBg", iconBg);
  245. mapData.point = feature;
  246. mapData.curPointData = feature.values_;
  247. }
  248. if (feature.get("icon") === "point-act") {
  249. arr.push(feature);
  250. }
  251. });
  252. const points = this.kmap.getLayerFeatures();
  253. points.forEach((feature) => {
  254. if (feature.get("id") === id) {
  255. const icon = feature.get("icon") === "point" ? "point-act" : "point";
  256. feature.set("icon", icon);
  257. this.kmap.polygonStyle(feature);
  258. mapData.isPointHide = feature;
  259. }
  260. });
  261. mapData.selectPointArr = arr;
  262. }
  263. hidePoint() {
  264. const feature = mapData.isPointHide;
  265. feature.set("iconHide", "true");
  266. this.kmap.polygonStyle(feature);
  267. }
  268. clearLayer() {
  269. this.clickPointLayer.source.clear();
  270. this.kmap.polygonLayer.source.clear();
  271. }
  272. addLayer() {
  273. this.kmap.addLayer(this.kmap.polygonLayer.layer);
  274. this.kmap.addLayer(this.clickPointLayer.layer);
  275. }
  276. //获取地块信息
  277. getAreaGeometry() {
  278. const features = this.kmap.getLayerFeatures();
  279. let geometryArr = [];
  280. let area = 0;
  281. // 获取图层上的Polygon,转成geoJson用于回显
  282. features.forEach((item) => {
  283. geometryArr.push({ featureWkt: new WKT().writeFeature(item) });
  284. let geom = item.getGeometry().clone();
  285. geom.transform(proj.get("EPSG:4326"), proj.get("EPSG:38572"));
  286. let areaItem = getArea(geom);
  287. area = (areaItem + areaItem / 2) / 1000;
  288. });
  289. return { geometryArr, area: area.toFixed(2) };
  290. }
  291. }
  292. export default AuthenticMap;