authenticMap.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  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,Circle,Stroke } 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. import GeometryCollection from 'ol/geom/GeometryCollection.js';
  18. import { ElMessage } from "element-plus";
  19. import { useStore } from "vuex";
  20. proj4.defs(
  21. "EPSG:38572",
  22. "+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"
  23. );
  24. register(proj4);
  25. export let mapData = reactive({
  26. isEdit: false,
  27. isEditArea: false,
  28. curPointData: {},
  29. point: null,
  30. selectPointArr: [],
  31. isPointHide: null,
  32. disabledForm : false,
  33. selectPoint:''
  34. });
  35. function resetMapData(){
  36. mapData.isEdit= false
  37. mapData.isEditArea= false
  38. mapData.curPointData= {}
  39. mapData.point= null
  40. mapData.selectPointArr= []
  41. mapData.isPointHide= null
  42. mapData.disabledForm= false
  43. mapData.selectPoint= ''
  44. }
  45. /**
  46. * @description 地图层对象
  47. */
  48. class AuthenticMap {
  49. constructor() {
  50. let that = this;
  51. that.store = useStore();
  52. let vectorStyle = new KMap.VectorStyle();
  53. this.vectorStyle = vectorStyle;
  54. // 位置图标
  55. this.clickPointLayer = new KMap.VectorLayer("clickPointLayer", 9999, {
  56. style: (f) => {
  57. const style1 = new Style({
  58. image: new Icon({
  59. src: require(`@/assets/images/map/${f.get("icon")}-icon.png`),
  60. scale: 0.45,
  61. }),
  62. });
  63. const style2 = new Style({
  64. text: new Text({
  65. font: "16px sans-serif",
  66. text: f.get("masterName"),
  67. offsetY: -40,
  68. padding: [4, 3, 2, 106],
  69. fill: new Fill({ color: "#fff" }), // 字体颜色
  70. }),
  71. });
  72. const style3 = new Style({
  73. image: new Icon({
  74. src: require(`@/assets/images/map/${f.get("iconBg")}.png`),
  75. scale: 0.45,
  76. displacement: [0, 90],
  77. }),
  78. });
  79. return [style1, style2, style3];
  80. },
  81. });
  82. this.locationLayer = new KMap.VectorLayer("locationLayer", 9999, {
  83. style: () => {
  84. return new Style({
  85. image: new Icon({
  86. src: require("@/assets/images/map/location.png"),
  87. scale: 0.45,
  88. }),
  89. });
  90. },
  91. });
  92. this.selectPointLayer = new KMap.VectorLayer("selectPointLayer", 9999, {
  93. style: () => {
  94. return new Style({
  95. // geometry: new Point(coord[0][i]),
  96. image: new Circle({
  97. radius: 6,
  98. fill: new Fill({
  99. color: 'red'
  100. }),
  101. stroke: new Stroke({
  102. color: '#fff',
  103. width: 1
  104. }),
  105. }),
  106. });
  107. },
  108. });
  109. // 存储绘制的地块特征
  110. // this.drawnFeatures = [];
  111. }
  112. initMap(location, target) {
  113. let that = this
  114. let level = 16;
  115. let coordinate = util.wktCastGeom(location).getFirstCoordinate();
  116. this.kmap = new KMap.Map(
  117. target,
  118. level,
  119. coordinate[0],
  120. coordinate[1],
  121. null,
  122. 6,
  123. 22
  124. );
  125. this.kmap.initDraw((e) => {
  126. if (e.type === "drawend") {
  127. mapData.isEdit = true;
  128. mapData.point = e.feature;
  129. }
  130. });
  131. this.kmap.modifyDraw((e) => {
  132. if(e.type === "modifyend"){
  133. mapData.isEditArea = false;
  134. mapData.isEditArea = true;
  135. }
  136. }, function(e){
  137. let f = null
  138. that.kmap.map.forEachFeatureAtPixel(e.pixel, function (feature, layer) {
  139. f= feature
  140. },{hitTolerance:10});
  141. if(!f){
  142. return false
  143. }
  144. let res = f.get("id") === mapData.curPointData.id || !f.get("id")
  145. if(!res){
  146. ElMessage.warning("编辑中")
  147. }
  148. console.log('f.get("height")',f);
  149. res = f.get("height")?false:res
  150. return res
  151. });
  152. this.kmap.addLayer(this.clickPointLayer.layer);
  153. this.kmap.addLayer(this.locationLayer.layer);
  154. this.kmap.addLayer(this.selectPointLayer.layer);
  155. this.addMapSingerClick();
  156. }
  157. fit(geometriesWkt){
  158. let geometries = []
  159. let f = new WKT();
  160. for(let wkt of geometriesWkt){
  161. geometries.push(f.readGeometry(wkt))
  162. }
  163. let extent = new GeometryCollection(geometries).getExtent()
  164. this.kmap.fit(extent)
  165. }
  166. //撤销上一个点
  167. undoLastDraw() {
  168. // const coordinates = this.kmap.getLayerFeatures()[0].getGeometry().getCoordinates()
  169. // coordinates[0][0].pop()
  170. // this.kmap.getLayerFeatures()[0].getGeometry().getCoordinates(coordinates)
  171. }
  172. // 取消地块
  173. cancelDraw() {
  174. this.kmap.polygonLayer.source.removeFeature(mapData.point);
  175. }
  176. // 添加点位
  177. addPoint(points) {
  178. const arrPoints = [];
  179. if (points && points.length > 0) {
  180. points.forEach((item) => {
  181. let f = newPoint({ ...item, icon: "point", iconBg: "name-bg" }, "point");
  182. arrPoints.push(f);
  183. });
  184. this.clickPointLayer.source.addFeatures(arrPoints);
  185. }
  186. }
  187. // 设置地图中心点位
  188. setMapCenter(v,isPoint = true) {
  189. let arrayOfNumbers = [];
  190. const arrayOfStrings = v.split(",");
  191. arrayOfNumbers = [arrayOfStrings[1], arrayOfStrings[0]];
  192. this.kmap.map.getView().setCenter(arrayOfNumbers);
  193. if(!isPoint) return
  194. this.locationLayer.source.clear();
  195. let point = new Feature(new Point(arrayOfNumbers));
  196. this.locationLayer.addFeature(point);
  197. }
  198. // 开始勾画
  199. startDraw() {
  200. this.kmap.setDefaultCursor("crosshair");
  201. this.kmap.startDraw();
  202. this.kmap.endModify();
  203. }
  204. //结束勾画
  205. endDraw() {
  206. this.kmap.endDraw();
  207. this.kmap.endModify();
  208. }
  209. // 开始编辑
  210. startModify(type) {
  211. this.kmap.startModify();
  212. this.kmap.endDraw();
  213. if(type==='upload'){
  214. const arr = this.kmap.getLayerFeatures()
  215. const lastItem = arr[arr.length - 1]
  216. mapData.point = lastItem
  217. mapData.point.set("icon", "point-act");
  218. this.kmap.polygonStyle(mapData.point);
  219. mapData.isPointHide = mapData.point;
  220. }else{
  221. mapData.point.set("icon", "point-act");
  222. }
  223. }
  224. //结束编辑
  225. endModify() {
  226. this.kmap.endModify();
  227. }
  228. // 清空单个数据
  229. clearMapData(name, val, id) {
  230. name && (mapData[name] = val);
  231. this.clickPointLayer.source.forEachFeature((feature) => {
  232. feature.set("icon", "point");
  233. feature.set("iconBg", "name-bg");
  234. });
  235. const points = this.kmap.getLayerFeatures();
  236. points.forEach((feature) => {
  237. feature.set("icon", "point");
  238. });
  239. resetMapData()
  240. }
  241. //全选
  242. allSelect(ids){
  243. let arr = []
  244. this.clickPointLayer.source.forEachFeature((feature) => {
  245. if(!ids || ids.findIndex((id)=> id == feature.get('id')) > -1){
  246. feature.set("icon", "point-act");
  247. feature.set("iconBg", "name-act-bg");
  248. }
  249. });
  250. const points = this.kmap.getLayerFeatures();
  251. points.forEach((feature) => {
  252. if(!ids || ids.findIndex((id)=> id == feature.get('id')) > -1) {
  253. feature.set("icon", "point-act");
  254. this.kmap.polygonStyle(feature);
  255. mapData.isPointHide = feature;
  256. arr.push(feature)
  257. }
  258. });
  259. mapData.selectPointArr = arr;
  260. }
  261. //no全选
  262. allUnSelect(){
  263. this.clickPointLayer.source.forEachFeature((feature) => {
  264. feature.set("icon", "point");
  265. feature.set("iconBg", "name-bg");
  266. });
  267. const points = this.kmap.getLayerFeatures();
  268. points.forEach((feature) => {
  269. feature.set("icon", "point");
  270. this.kmap.polygonStyle(feature);
  271. mapData.isPointHide = feature;
  272. });
  273. mapData.selectPointArr = [];
  274. }
  275. //选中点位方法
  276. selectPonitFun(map,evt){
  277. let that = this
  278. map.forEachFeatureAtPixel(evt.pixel, function (f, layer) {
  279. if (
  280. layer instanceof VectorLayer &&
  281. (
  282. layer.get("name") === "defaultPolygonLayer")
  283. ) {
  284. const features = map.getFeaturesAtPixel(evt.pixel);
  285. if (features.length > 0) {
  286. const feature = features[0];
  287. const geometry = feature.getGeometry();
  288. const coordinates = geometry.getCoordinates()[0]; // 获取多边形的顶点坐标
  289. if(Array.isArray(coordinates)){
  290. ElMessage.warning("编辑中")
  291. }else{
  292. ElMessage.success("已选择该点位")
  293. const features = that.kmap.getLayerFeatures()
  294. features.forEach(item =>{
  295. if(item.get("id")===mapData.selectPointArr[0].get("id")){
  296. const list = item.getGeometry().getCoordinates();
  297. const arr = list[0][0].find(subArray => subArray.includes(coordinates))
  298. that.selectPointLayer.source.clear();
  299. let point = new Feature(new Point(arr));
  300. that.selectPointLayer.addFeature(point);
  301. }
  302. })
  303. mapData.selectPoint = coordinates
  304. }
  305. }
  306. }
  307. });
  308. }
  309. // 地图点击事件
  310. addMapSingerClick() {
  311. let that = this;
  312. that.kmap.on("singleclick", (evt) => {
  313. if(mapData.curPointData.id && !mapData.disabledForm && mapData.selectPointArr.length===1){
  314. that.selectPonitFun(that.kmap.map,evt)
  315. return;
  316. }
  317. if(!mapData.curPointData.id && mapData.isEdit){
  318. that.selectPonitFun(that.kmap.map,evt)
  319. return;
  320. }
  321. //判断是否是导入的数据
  322. if(that.store.state.authentic.isEditStatus){
  323. that.selectPonitFun(that.kmap.map,evt)
  324. return;
  325. }
  326. let num = 0;
  327. that.kmap.map.forEachFeatureAtPixel(evt.pixel, function (feature, layer) {
  328. // 点击的图层是否是VectorLayer
  329. if (
  330. layer instanceof VectorLayer &&
  331. (layer.get("name") === "clickPointLayer" ||
  332. layer.get("name") === "defaultPolygonLayer")
  333. ) {
  334. // 每次点击,只走一遍该方法
  335. num = num + 1;
  336. if (num === 1) {
  337. that.getSelectPointArr(feature.get("id"));
  338. that.kmap.endDraw();
  339. }
  340. }
  341. });
  342. });
  343. }
  344. clearSelectPoint(){
  345. this.selectPointLayer.source.clear();
  346. }
  347. setPoint(name) {
  348. const arr = mapData.selectPointArr.filter(
  349. (item) => item.values_.icon === "point-act"
  350. );
  351. if (arr.length > 0) {
  352. mapData.point = arr[0];
  353. mapData.point.set("icon", name);
  354. mapData.isPointHide.set("icon", name);
  355. mapData.point.set("iconBg", "name-bg");
  356. }
  357. if (arr.length === 1) {
  358. mapData.selectPointArr = [];
  359. }
  360. }
  361. //添加地块
  362. setAreaGeometry(geometryArr) {
  363. let that = this;
  364. geometryArr.map((item) => {
  365. item.icon = "point";
  366. item.iconHide = "false";
  367. that.kmap.setLayerWkt(item.featureWkt, item);
  368. });
  369. }
  370. deletePointFun(point,callback){
  371. const coordinates = point.getGeometry().getCoordinates();
  372. let array = coordinates[0][0]
  373. const index = array.findIndex(subArray => subArray.includes(mapData.selectPoint))
  374. // 如果点存在,则删除它
  375. if (index > -1) {
  376. coordinates[0][0].splice(index, 1); // 删除点
  377. // 更新多边形的坐标
  378. point.getGeometry().setCoordinates(coordinates); // 更新几何形状
  379. }
  380. this.clearSelectPoint()
  381. callback && callback(index)
  382. }
  383. // 移除点的功能
  384. removePoint(callback) {
  385. // 获取多边形的所有坐标
  386. const features = this.kmap.getLayerFeatures()
  387. if(mapData.selectPointArr.length>0){
  388. features.forEach(item =>{
  389. if(item.get("id")===mapData.selectPointArr[0].get("id")){
  390. this.deletePointFun(item,callback)
  391. }
  392. })
  393. }else{
  394. this.deletePointFun(mapData.point,callback)
  395. }
  396. }
  397. // 获取所有选中点位
  398. getSelectPointArr(id) {
  399. const arr = [];
  400. this.clickPointLayer.source.forEachFeature((feature) => {
  401. if (feature.get("id") === id) {
  402. // 修改当前点位高亮
  403. const icon = feature.get("icon") === "point" ? "point-act" : "point";
  404. const iconBg =
  405. feature.get("iconBg") === "name-bg" ? "name-act-bg" : "name-bg";
  406. feature.set("icon", icon);
  407. feature.set("iconBg", iconBg);
  408. mapData.point = feature;
  409. mapData.curPointData = feature.values_;
  410. }
  411. if (feature.get("icon") === "point-act") {
  412. arr.push(feature);
  413. }
  414. });
  415. const points = this.kmap.getLayerFeatures();
  416. points.forEach((feature) => {
  417. if (feature.get("id") === id) {
  418. const icon = feature.get("icon") === "point" ? "point-act" : "point";
  419. feature.set("icon", icon);
  420. this.kmap.polygonStyle(feature);
  421. mapData.isPointHide = feature;
  422. }
  423. });
  424. mapData.selectPointArr = arr;
  425. }
  426. hidePoint() {
  427. const feature = mapData.isPointHide;
  428. feature.set("iconHide", "true");
  429. this.kmap.polygonStyle(feature);
  430. }
  431. clearLayer() {
  432. this.clickPointLayer.source.clear();
  433. this.kmap.polygonLayer.source.clear();
  434. }
  435. addLayer() {
  436. this.kmap.addLayer(this.kmap.polygonLayer.layer);
  437. this.kmap.addLayer(this.clickPointLayer.layer);
  438. }
  439. //获取地块信息
  440. getAreaGeometry(type) {
  441. let features = null
  442. if(type==='add') {
  443. features = [mapData.point]
  444. }else if(type==='upload'){
  445. features = this.kmap.getLayerFeatures()
  446. }else{
  447. if(mapData.curPointData.id){
  448. features = [this.kmap.getFeatureById(mapData.curPointData.id)];
  449. }else{
  450. features = [mapData.point]
  451. }
  452. }
  453. let geometryArr = [];
  454. let area = 0;
  455. // 获取图层上的Polygon,转成geoJson用于回显
  456. features.forEach((item) => {
  457. geometryArr.push({ featureWkt: new WKT().writeFeature(item) });
  458. let geom = item.getGeometry().clone();
  459. geom.transform(proj.get("EPSG:4326"), proj.get("EPSG:38572"));
  460. let areaItem = getArea(geom);
  461. area = (areaItem + areaItem / 2) / 1000;
  462. });
  463. return { geometryArr, area: area.toFixed(2) };
  464. }
  465. /**
  466. address
  467. farmName
  468. masterName
  469. masterTel
  470. speciesTypeName
  471. ""
  472. * @param form
  473. */
  474. search(form){
  475. const points = this.kmap.getLayerFeatures();
  476. let arr = []
  477. let geomWkt = []
  478. points.forEach((feature) => {
  479. let condition = []
  480. if(form.address != ''){
  481. condition.push(feature.get("address").includes(form.address))
  482. }
  483. if(form.farmName != ''){
  484. const text = feature.get("farmName")
  485. if(text!==form.farmName) return
  486. condition.push(feature.get("farmName").includes(form.farmName))
  487. }
  488. if(form.masterName != ''){
  489. const text = feature.get("masterName")
  490. if(text!==form.masterName) return
  491. condition.push(feature.get("masterName").includes(form.masterName))
  492. }
  493. if(form.masterTel != ''){
  494. const text = feature.get("masterTel")
  495. if(text!==form.masterTel) return
  496. condition.push(feature.get("masterTel").includes(form.masterTel))
  497. }
  498. if(form.speciesTypeName != ''){
  499. const text = feature.get("speciesTypeName")
  500. if(text!==form.speciesTypeName) return
  501. condition.push(feature.get("speciesTypeName").includes(form.speciesTypeName))
  502. }
  503. let b = false
  504. for(let item of condition){
  505. if(item){
  506. b = true
  507. }else{
  508. b = false
  509. break
  510. }
  511. }
  512. if(b){
  513. arr.push(feature.get("id"))
  514. geomWkt.push(new WKT().writeGeometry(feature.getGeometry()))
  515. }
  516. });
  517. this.allUnSelect()
  518. this.allSelect(arr)
  519. if(geomWkt.length>0){
  520. this.fit(geomWkt)
  521. }
  522. }
  523. }
  524. export default AuthenticMap;