maptalks 右键删除坐标点位

2024-01-24 21:20

本文主要是介绍maptalks 右键删除坐标点位,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

<!-- 地图组件 -->
<template><div :id="id" class="container"></div>
</template><script>
import _ from "lodash";
import "maptalks/dist/maptalks.css";
import * as maptalks from "maptalks";
export default {//import引入的组件需要注入到对象中才能使用name: "Map",props: {id: {type: String,default: () => {return "map";},},mapSet: {type: Object,default: () => {return {};},},color: {type: String,default: () => {return "";},},},components: {},data() {//这里存放数据return {dataLis: [],layer: null,layer2: null,map: null,polygon: null,drawTool: null,// 默认中心点点位center: [121.7294793802647, 29.97249795779439],// 缩放层级zoom: 14,// 倾斜度pitch: 0,// 轴承// bearing: 90,// 最小缩放层级minZoom: 1,// 最大缩放层级maxZoom: 18.5,symbol: {polygonFill: "#ff0000", // 图形覆盖颜色polygonOpacity: 0.3, // 图形覆盖区域透明度lineColor: "#ff0000", // 线条颜色lineWidth: 2, // 线条宽度},pointSymbol: {markerFile: "@/assets/logo/logo.png",markerWidth: 20,markerHeight: 20,},layerSwitcherControl: {position: "top-right",// title of base layersbaseTitle: "Base Layers",// title of layersoverlayTitle: "Layers",// layers you don't want to manage with layer switcherexcludeLayers: [],// css class of container element, maptalks-layer-switcher by defaultcontainerClass: "maptalks-layer-switcher",},drawMap: {Point: "点",LineString: "线",Polygon: "多边形",Circle: "圆",Ellipse: "椭圆",Rectangle: "长方形",},};},//监听属性 类似于data概念computed: {},//监控data中的数据变化watch: {mapSet: {deep: true,immediate: true,async handler(val) {if (Object.keys(val).length) {let { drawMapType, drawMapArray, editable, draggable } = val;if (this.map) this.map.remove();await this.init();if (drawMapArray && drawMapArray.length > 0) {// console.log("地图获取到所有点位", drawMapArray);drawMapArray.map(i => {// console.log(123, i[0]);let items = i[0]let obj = {drawMapArray: () => {this.startEdit(items, {drawMapType, //点位editable: true,//可编辑的draggable: true, //拖动drawMapArray: items  //数据});},drawMapType: () => {this.drawMapType({drawMapType, //点位editable: true,//可编辑的draggable: true, //拖动drawMapArray: items  //数据});},};let arrayKeys = Object.keys({drawMapType, //点位editable: true,//可编辑的draggable: true, //拖动drawMapArray: items  //数据});arrayKeys.map((items) => {if (obj[items]) return obj[items]();});})// let items2 = [121.720448, 29.978434]// console.log(9992, items2);// let obj2 = {//   drawMapArray: () => {//     this.startEdit(items2, {//       drawMapType, //点位//       editable: true,//可编辑的//       draggable: true, //拖动//       drawMapArray: items2  //数据//     });//   },//   drawMapType: () => {//     this.drawMapType({//       drawMapType, //点位//       editable: true,//可编辑的//       draggable: true, //拖动//       drawMapArray: items2  //数据//     });//   },// };// let arrayKeys2 = Object.keys({//   drawMapType, //点位//   editable: true,//可编辑的//   draggable: true, //拖动//   drawMapArray: items2  //数据// });// arrayKeys2.map((items2) => {//   if (obj2[items2]) return obj2[items2]();// }); // 出现// this.drawMapType({//   drawMapType, //点位//   editable: true,//可编辑的//   draggable: true, //拖动//   drawMapArray: undefined  //数据// });}this.drawMapType({drawMapType, //点位editable: true,//可编辑的draggable: true, //拖动drawMapArray: undefined  //数据});// if (drawMapArray && drawMapArray.length > 0) {//   drawMapArray.forEach((item, indexs) => {//     console.log(999, item);//     let obj = {//       drawMapArray: () => {//         this.startEdit(item, {//           drawMapType, //点位//           editable: true,//可编辑的//           draggable: true, //拖动//           drawMapArray: item  //数据//         });//       },//       drawMapType: () => {//         this.drawMapType({//           drawMapType, //点位//           editable: true,//可编辑的//           draggable: true, //拖动//           drawMapArray: item  //数据//         });//       },//     };//     let arrayKeys = Object.keys({//       drawMapType, //点位//       editable: true,//可编辑的//       draggable: true, //拖动//       drawMapArray: item  //数据//     });//     arrayKeys.map((item) => {//       if (obj[item]) return obj[item]();//     });//   })// } else {//   let obj = {//     // 绘制图形//     drawMapType: () => {//       this.drawMapType({//         drawMapType, //点位//         editable: true,//可编辑的//         draggable: true, //拖动//         drawMapArray: item  //数据//       });//     },//   };//   let arrayKeys = Object.keys({//     drawMapType, //点位//     editable: true,//可编辑的//     draggable: true, //拖动//     drawMapArray: item  //数据//   });//   arrayKeys.map((item) => {//     if (obj[item]) return obj[item]();//   });// }// ----------------// //  循环插入多边形// if (drawMapArray && drawMapArray.length > 0) {// drawMapArray.forEach(item => {// let obj = {//   // 编辑图形//   drawMapArray: () => {//     this.startEdit(item, {//       drawMapType,//       editable,//       draggable,//       drawMapArray: item//     });//   },//   // 绘制图形//   drawMapType: () => {//     this.drawMapType({//       drawMapType,//       editable,//       draggable,//       drawMapArray: item//     });//   },// };// let arrayKeys = Object.keys({//   drawMapType,//   editable,//   draggable,//   drawMapArray: item// });// arrayKeys.map((item) => {//   if (obj[item]) return obj[item]();// });// })// } else {//   let obj = {//     // 编辑图形//     // drawMapArray: () => {//     //   this.startEdit(item, {//     //     drawMapType,//     //     editable,//     //     draggable,//     //     drawMapArray//     //   });//     // },//     // 绘制图形//     drawMapType: () => {//       this.drawMapType({//         drawMapType,//         editable,//         draggable,//         drawMapArray//       });//     },//   };//   let arrayKeys = Object.keys({//     drawMapType,//     editable,//     draggable,//     drawMapArray//   });//   arrayKeys.map((item) => {//     if (obj[item]) return obj[item]();//   });// }} else {// console.log("销毁地图");if (this.map != undefined) this.map.remove();}},},color: {immediate: true,handler(val) {if (val) {let { drawTool, polygon } = this;if (drawTool) this.changeSymbol("drawTool", drawTool, val);if (polygon) this.changeSymbol("Point", polygon, val);// if (drawTool) {//   drawTool.setSymbol({//     polygonFill: val, // 图形覆盖颜色//     polygonOpacity: 0.3, // 图形覆盖区域透明度//     lineColor: val, // 线条颜色//     lineWidth: 2 // 线条宽度//   });// }// if (polygon) {//   polygon.updateSymbol({//     polygonFill: val, // 图形覆盖颜色//     lineColor: val // 线条颜色//   });// }}},},},//生命周期 - 创建完成(可以访问当前this实例)created() { },//生命周期 - 挂载完成(可以访问DOM元素)mounted() {// let a = "rgb(255, 69, 0)";// console.log(a.slice(5, a.length - 1));},// beforeDestroy() {//   let { map } = this;//   // console.log(//   //   "🚀 ~ Date:2023/07/11 14:37 ~ File: index.vue ~ Line:154 ----- ",//   //   销毁地图//   // );//   if (map) map.remove();// },//方法集合methods: {// 获取到图层所有的点位extractCoordinates(data) {// console.log("获取到图层所有的点位", data);let datas = []data.forEach(res => {datas.push({"lngWgs": res._coordinates.x,"latWgs": res._coordinates.y})})// console.log(111111, datas);return datas;},// getSent(data) {//   let array = []//   data.forEach(res => {//     let arrray2 = []//     res._coordinates.forEach(res2 => {//       arrray2.push({//         "lngWgs": res2.x,//         "latWgs": res2.y,//         // "sort": index2//       })//     })//     array.push(arrray2)//   })//   return array;// },init() {this.$nextTick(() => {let { center, zoom, pitch, minZoom, maxZoom, symbol, layerSwitcherControl, id } = this;this.map = new maptalks.Map(id, {center,zoom,pitch,minZoom,maxZoom,centerCross: true,seamlessZoom: true,attribution: true,zoomControl: true, // add zoom controlscaleControl: true, // add scale controllayerSwitcherControl,symbol,// baseLayer 表示基础图层,它可以添加多个,逗号隔开baseLayer: new maptalks.GroupTileLayer("Base TileLayer", [new maptalks.TileLayer("卫星图", {urlTemplate:"https://t5.tianditu.gov.cn/DataServer?T=img_w&X={x}&Y={y}&L={z}&tk=074d4a21c8f34a3a20cd1f69f81b26bf",subdomains: ["a", "b", "c", "d"],}),new maptalks.TileLayer("Carto light", {visible: false,urlTemplate:"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png",subdomains: ["a", "b", "c", "d"],}),new maptalks.TileLayer("Carto dark", {visible: false,urlTemplate:"https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png",subdomains: ["a", "b", "c", "d"],}),new maptalks.WMSTileLayer("survey", {urlTemplate: "http://10.169.61.30:8080/geoserver/gwc/service/wms",crs: "EPSG:3857",layers: "haigang",styles: "",version: "1.1.1",tileStackDepth: 0,format: "image/png",transparent: true,uppercase: true,zIndex: 1,forceRenderOnMoving: true,forceRenderOnZooming: true,}),]),});// this.layer = new maptalks.VectorLayer("vector").addTo(this.map)this.layer = new maptalks.VectorLayer("vector").addTo(this.map)this.layer2 = new maptalks.VectorLayer("vector2").addTo(this.map)this.map.on("click", function (params) {});this.map.on("editrecord", function (params) {// console.log(params);});});},// 绘制图形drawMapType(val) {// !this.layer ? this.layer = new maptalks.VectorLayer("vector").addTo(this.map) : null// console.log('绘制图形', val, this.map);let { drawMapType, drawMapArray } = val;if (!drawMapArray) {let { map, symbol, color } = this;let that = this;// var layer = new maptalks.VectorLayer("vector").addTo(map);var drawTool = new maptalks.DrawTool({mode: drawMapType,// once: true,// once: false,symbol: drawMapType == "Point" ? null : symbol,}).addTo(map).disable();drawTool.on("drawend", function (param) {// console.log(param.geometry);let { _coordinates } = param.geometry;let array = null;if (drawMapType == "Point") {array = [_coordinates.x, _coordinates.y];} else if (drawMapType == "Polygon") {array = _coordinates.map((item) => {return [item.x, item.y];});}that.dataLis.push(array)// console.log(123, array);that.layer.addGeometry(param.geometry);that.startEdit(array, val, that.dataLis.length - 1);that.layer.remove();that.layer.setZIndex(6);// that.$nextTick(() => {// console.log("绘制好了 发送", that.getSent(that.layer2._geoList));// that.$emit("drawPointChange", that.getSent(that.layer2._geoList));// })// console.log(666666, that.extractCoordinates(that.layer._geoList));that.$emit("drawPointChange", that.extractCoordinates(that.layer._geoList));// console.log(666666, that.layer._geoList);});this.drawTool = drawTool;drawTool.setMode(drawMapType).enable();// 改变覆盖物设置if (color) this.changeSymbol("drawTool", drawTool, color);// if (color) {//   drawTool.setSymbol({//     polygonFill: color, // 图形覆盖颜色//     polygonOpacity: 0.3, // 图形覆盖区域透明度//     lineColor: color, // 线条颜色//     lineWidth: 2 // 线条宽度//   });// }}},// 编辑绘制图形startEdit(array, val) {// let nun = Math.random();// console.log("编辑绘制图形", array, val);let that = this;let { drawMapType, editable, draggable } = val;let { symbol, map, pointSymbol, color } = that;let type = null;let pointArray = _.clone(array);// that.$emit("drawPointChange", pointArray);that.$emit("drawPointChange", that.extractCoordinates(that.layer._geoList));let objArray = [[() => drawMapType == "Point",() => {type = "Marker";},() => {// 更改位置polygon.on("shapechange", function (param) {console.log(110, param, that.extractCoordinates(that.layer2._geoList));// that.extractCoordinates(that.layer._geoList)// let { _coordinates } = param.target;// pointArray = [_coordinates.x, _coordinates.y];// that.$emit("drawPointChange", pointArray);that.$emit("drawPointChange", that.extractCoordinates(that.layer2._geoList));});// 更改位置polygon.on("positionchange", function (param) {console.log(110, param, that.extractCoordinates(that.layer2._geoList));// that.extractCoordinates(that.layer._geoList)// let { _coordinates } = param.target;// pointArray = [_coordinates.x, _coordinates.y];// that.$emit("drawPointChange", pointArray);that.$emit("drawPointChange", that.extractCoordinates(that.layer2._geoList));});// 更改位置polygon.on("remove", function (param) {console.log(110, param, that.extractCoordinates(that.layer2._geoList));// that.extractCoordinates(that.layer._geoList)// let { _coordinates } = param.target;// pointArray = [_coordinates.x, _coordinates.y];// that.$emit("drawPointChange", pointArray);that.$emit("drawPointChange", that.extractCoordinates(that.layer2._geoList));});},]];let state = objArray.find((m) => m[0]());if (state) state[1]();let polygon = new maptalks[type](array, {visible: true,editable,cursor: "pointer",draggable,dragShadow: false,drawOnAxis: null,symbol: drawMapType == "Point" ? null : symbol,});var options = {'items': [{item: '删除', click: function (e) {that.layer2.removeGeometry(polygon);}}]};polygon.setMenu(options).openMenu();// new maptalks.VectorLayer("vectorEdit" + nun, polygon).addTo(map);that.layer2.addGeometry(polygon);// that.layer.addGeometry(polygon);map.fitExtent(polygon.getExtent(), -1); // 自动适配区域 if (color) this.changeSymbol("Point", polygon, color);if (state) state[2]();that.polygon = polygon;},// 覆盖物设置更改changeSymbol(type, mapObj, color) {let obj = {drawTool: () => {mapObj.setSymbol({polygonFill: color, // 图形覆盖颜色polygonOpacity: 0.3, // 图形覆盖区域透明度lineColor: color, // 线条颜色lineWidth: 2, // 线条宽度});},polygon: () => {mapObj.updateSymbol({polygonFill: color, // 图形覆盖颜色lineColor: color, // 线条颜色});},};if (obj[type]) return obj[type]();},},
};
</script>
<style scoped>
.container {width: calc(100% - 50px);/* width: 550px; */min-height: 550px;margin: 15px;
}
</style>

这篇关于maptalks 右键删除坐标点位的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/641029

相关文章

电脑桌面文件删除了怎么找回来?别急,快速恢复攻略在此

在日常使用电脑的过程中,我们经常会遇到这样的情况:一不小心,桌面上的某个重要文件被删除了。这时,大多数人可能会感到惊慌失措,不知所措。 其实,不必过于担心,因为有很多方法可以帮助我们找回被删除的桌面文件。下面,就让我们一起来了解一下这些恢复桌面文件的方法吧。 一、使用撤销操作 如果我们刚刚删除了桌面上的文件,并且还没有进行其他操作,那么可以尝试使用撤销操作来恢复文件。在键盘上同时按下“C

Windows如何添加右键新建菜单

Windows如何添加右键新建菜单 文章目录 Windows如何添加右键新建菜单实验环境缘起以新建`.md`文件为例第一步第二步第三步 总结 实验环境 Windows7 缘起 因为我习惯用 Markdown 格式写文本,每次新建一个.txt后都要手动修改为.md,真的麻烦。如何在右键新建菜单中添加.md选项呢? 网上有很多方法,这些方法我都尝试了,要么太麻烦,要么不凑效

学习记录:js算法(二十八):删除排序链表中的重复元素、删除排序链表中的重复元素II

文章目录 删除排序链表中的重复元素我的思路解法一:循环解法二:递归 网上思路 删除排序链表中的重复元素 II我的思路网上思路 总结 删除排序链表中的重复元素 给定一个已排序的链表的头 head , 删除所有重复的元素,使每个元素只出现一次 。返回 已排序的链表 。 图一 图二 示例 1:(图一)输入:head = [1,1,2]输出:[1,2]示例 2:(图

如何恢复回收站中已删除/清空的文件

回收站清空后如何恢复已删除的文件?是否可以恢复永久删除的文件?或者最糟糕的是,如果文件直接被删除怎么办?本文将向您展示清空回收站后恢复已删除数据的最佳方法。 回收站清空后如何恢复已删除的文件? “回收站清空后我还能恢复已删除的文件吗?” 答案是肯定的,但是在这种情况下您将需要一个  回收站恢复工具 来从回收站中检索文件: 错误/永久删除回收站或任何数字存储设备中的文件 直接删除的文件/

Temu官方宣导务必将所有的点位材料进行检测-RSL资质检测

关于饰品类产品合规问题宣导: 产品法规RSL要求 RSL测试是根据REACH法规及附录17的要求进行测试。REACH法规是欧洲一项重要的法规,其中包含许多对化学物质进行限制的规定和高度关注物质。 为了确保珠宝首饰的安全性,欧盟REACH法规规定,珠宝首饰上架各大电商平台前必须进行RSLReport(欧盟禁限用化学物质检测报告)资质认证,以确保产品不含对人体有害的化学物质。 RSL-铅,

Linux 删除 当前下的 mysql-8.0.31 空文件夹

在Linux中,如果你想要删除当前目录下的名为mysql-8.0.31的空文件夹(即该文件夹内没有任何文件或子文件夹),你可以使用rmdir命令。但是,如果mysql-8.0.31文件夹并非完全为空(即它包含文件或子文件夹),rmdir命令会失败。 如果你的目标是删除mysql-8.0.31文件夹及其内部的所有内容(无论是否为空),你应该使用rm命令结合-r(或-R,它们是等价的)选项来递归地删

SW - 引入第三方dwg图纸后,修改坐标原点

文章目录 SW - 引入第三方dwg图纸后,修改坐标原点概述笔记设置图纸新原点END SW - 引入第三方dwg图纸后,修改坐标原点 概述 在solidworks中引入第三方的dwg格式图纸后,坐标原点大概率都不合适。 全图自动缩放后,引入的图纸离默认的原点位置差很多。 需要自己重新设置原点位置,才能自动缩放后,在工作区中间显示引入的图纸。 笔记 将dwg图纸拖到SW中

如何删除不小心上传到git远程仓库中的.idea .iml文件

如果在开始的时候不配置,gitignore文件或者文件配置不正确,初始化上传的时候就会有一些不必要的信息上传上去 如果已经存在了一些文件在git远程仓库中,如。idea,.iml文件等。 首先在项目中定义一个  .gitignore文件,简单的实例如下也可以用idea中的gitignore插件 .DS_Storeclasses/*.settings/target/.classpath

Win8下如何快速查找和删除电脑中的病毒

Win8系统如何查找和删除病毒?检查你的电脑是否存在病毒的一种快速方法是使用 Windows Defender. 此恶意软件防护随 Windows 提供,可帮助识别和删除病毒、间谍软件和其他恶意软件。   注意:如果你使用的是 Windows RT,则 Windows Defender 会始终启用,并且不能关闭。   如果你使用的是 Windows 8,则可以根据自己的喜好运行由其他

【数据结构与算法 | 灵神题单 | 删除链表篇】力扣3217, 82, 237

总结,删除链表节点问题使用到列表,哈希表,递归比较容易超时,我觉得使用计数排序比较稳,处理起来也不是很难。 1. 力扣3217:从链表中移除在数组中的节点 1.1 题目: 给你一个整数数组 nums 和一个链表的头节点 head。从链表中移除所有存在于 nums 中的节点后,返回修改后的链表的头节点。 示例 1: 输入: nums = [1,2,3], head = [1,2,3,