vue实现平面图标记点位可拖拽可删除(可自定义标记图标)

2023-10-06 22:40

本文主要是介绍vue实现平面图标记点位可拖拽可删除(可自定义标记图标),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

需求:

1.不限制背景图的大小做overflower,标记点位获取相对位置xy,可拖动修改标点位置,可删除标点
2.关联设备后做自定义标记图标

图例:

在这里插入图片描述

代码:

1.html

<el-dialog title="设置设备" :visible.sync="imgMark" append-to-body id="plan"><div class="plan-img"><img class="bg" :src="bgSrc" @click.stop="setPoint" /><div v-for="(item, index) in markerArr" :key="index" class="block" :style="{ left: item.x, top: item.y, transform: 'translate(-50%, -100%)' }"@drag="dragenter($event, item)"draggable="true"><img :src="markSrc" class="mark-icon"  @click.stop="editPoit(index,item)" /><div class="button-group" v-if="item.showModal"><span @click="associative(index)">关联设备</span><span @click="deletePoit(index)">删除点位</span></div></div></div><div slot="footer" class="dialog-footer"><el-button type="primary" @click="submitMark" class="button-minwidth">确定</el-button><el-button @click="imgMark = false" class="button-minwidth">取消</el-button></div>
</el-dialog>

2.js

<script>
import bgSrc from '@/assets/images/bg.png'
import markSrc from '@/assets/images/img-mark.png'export default {data() {return {//平面图标记点位imgMark:false,bgSrc,markSrc,markerArr:[],};},created() {window.addEventListener("resize", this.getImgRect)},beforeDestroy() {window.removeEventListener("resize", this.getImgRect)},methods: {//设置设备handleSetDev(row){this.imgMark = truethis.getImgRect()},//绘制标记setPoint(e){e = e || window.event;let x = e.offsetX || e.layerX;let y = e.offsetY || e.layerY;let obj = {x: x + 'px',y: y + 'px',showModal:false}this.markerArr.push(obj);},//获取相对位置getImgRect() {setTimeout(() => {// 元素点是相对 背景图定位的    拖拽点获得的做标是相对屏幕的距离 this.imgRect = document.querySelector(".plan-img .bg").getBoundingClientRect()}, 30);},//移动位置dragenter(e, item) {const {x, y} = this.imgRectif(e.clientX !==0 && e.clientY !==0) {item.x = `${e.clientX - x}px`item.y = `${e.clientY - y}px`}   },//编辑标记editPoit(index,item){if(item.showModal==false){item.showModal=true}else {item.showModal=false}},//关联设备associative(index){},//提交关联设备submitDev(){this.spaceDev=false},//删除标记deletePoit(index){this.markerArr.splice(index, 1);},//提交标记submitMark(){this.imgMark=false},}
};
</script>

3.css

#plan{::v-deep .el-dialog{height: 65%;}::v-deep .el-dialog__body{overflow: hidden !important;}.plan-img{width: 100%;height: 100%;overflow: auto;margin-bottom: 20px;position: relative;.bg{position: relative;  top:0px;  left:0px;}.block{cursor: pointer;z-index: 29;position:absolute;display: flex;flex-direction: row;width: 24px;height: 30px;.mark-icon{position: absolute;top: 0;left: 0;width: 24px;height: 30px;z-index: 30;}.button-group{position: absolute;left: 34px;top: 0px;display: flex;flex-direction: column;background: #ffffff;z-index: 40;span{padding: 10px 44px 10px 20px;white-space: nowrap;}span:first-child{border-bottom: 1px solid #DCDFE6;}}}}
}

上图用到的图片放在下面了

标点图:在这里插入图片描述
背景图:

在这里插入图片描述

切换自定义图标:

1.图例
在这里插入图片描述

这里我就不写具体功能实现js代码了,实现的思路是:
1.打开弹窗时必须要把markerArr置空并调用后台获取标点详情接口获取markerArr数据,下面组合数据可以参考
2.在标点选择关联的数据提交后,改变当前对象isDev属性为true切换图标样式并展示当前对象icon,下面HTML和CSS代码可以对比上文参考
3.如果当前对象的isDev已经为true,也可以切换另一条数据绑定Id进行重新绑定存入markerArr,这一步需要后台提供筛选数据的接口为基础,最后按后台保存接口参数要求筛选组合markerArr属性数据提交保存

2.代码

(1)组合数据

let arr=res.dataif(arr.length>0){arr.forEach(item=>{let obj={deptId:item.deptId,xcoordinate:item.xcoordinate?item.xcoordinate+'px':'',ycoordinate:item.ycoordinate?item.ycoordinate+'px':'',showModal:false,isDev:true,Id:item.Id,devName:item.devName,icon:item.icon}this.markerArr.push(obj)})
}

(2)html

<el-dialog title="设置设备" :visible.sync="imgMark" append-to-body id="plan"><div class="plan-img"><img class="bg" :src="bgSrc" @click.stop="setPoint" /><div v-for="(item, index) in markerArr" :key="index" :class="item.isDev==true?'blocks':'block'" :style="{ left: item.xcoordinate, top: item.ycoordinate, transform: 'translate(-50%, -100%)' }"@drag="dragenter($event, item)"draggable="true"><img v-if="item.isDev==false" :src="markSrc" class="mark-icon"  @click.stop="editPoit(index,item)" /> --><div v-if="item.isDev==true" class="marker-outer" @click.stop="editPoit(index,item)"><div class="marker-inner"><img :src="item.icon"/></div></div><div class="button-group" v-if="item.showModal"><span @click="associative(index)">关联设备</span><span @click="deletePoit(index)">删除点位</span></div></div></div><div slot="footer" class="dialog-footer"><el-button type="primary" @click="submitMark" class="button-minwidth">{{$t('Base.confirms')}}</el-button><el-button @click="imgMark = false" class="button-minwidth">{{$t('Base.cancels')}}</el-button></div></el-dialog>

(3)css

.blocks{cursor: pointer;z-index: 29;position:absolute;display: flex;flex-direction: row;width: 60px;height: 80px;.marker-outer{position: absolute;top: 0;left: 0;z-index: 30;display: inline-block;width: 66px;height: 66px;border-radius: 50%;background: #ffffff;text-align: center;box-shadow: 0px 0px 2px 3px #0095FF;.marker-inner{display: inline-block;width: 43px;height: 43px;border-radius: 50%;background: #fff;color: #111;position: absolute;top: 10px;left: 10px;z-index: 31;img{width: 100%;height: 100%;}}}

最近产品提了个做边界限制的需求,所以需要根据图标显示对按钮编辑框的显示位置进行动态变更

<div class="button-group" v-if="item.showModal":class="[toLeftBottom?'button-lb':'',toLeftTop?'button-lt':'',toRight?'buttom-r':'',toRightBottom?'buttom-rb':'',toRightTop?'buttom-rt':'']" ><span @click="associative(index)">关联设备</span><span @click="deletePoit(index)">删除点位</span>
</div>
data(){return{toLeftTop:false,  //左上toLeftBottom:false,  //左下toRight:false,toRightTop:false,  //右上toRightBottom:false,  //右下}
},
methods:{//编辑标记editPoit(index,item){this.markerArr.forEach(res=>{if(res!==item){res.showModal=false}else{if(item.showModal==false){item.showModal=true}else {item.showModal=false}}})let x=parseInt(item.xcoordinate)let y=parseInt(item.ycoordinate)let width=parseInt(this.imgWidth)let height=parseInt(this.imgHeight)this.toRight=falsethis.toLeftBottom=falsethis.toRightTop=falsethis.toLeftTop=falsethis.toRightBottom=falseif(x>=width-100){this.toRight=trueif(y<=50){this.toRightBottom=true}else if(y>=height-50){this.toRightTop=true}}else if(x<=20){if(y<=20){this.toLeftBottom=true}else if(y>=height-50){this.toLeftTop=true}}},
}
.button-lb{top: 80px;}
.button-lt{top:5px;}
.buttom-r{left: -130px;}
.buttom-rb{top: 80px;}
.buttom-rt{top: -40px;}.button-lb{top: 30px;}
.button-lt{top: -40px;}
.buttom-r{left: -130px;}
.buttom-rb{top: 30px;}
.buttom-rt{top: -40px;}

这篇关于vue实现平面图标记点位可拖拽可删除(可自定义标记图标)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

C++中零拷贝的多种实现方式

《C++中零拷贝的多种实现方式》本文主要介绍了C++中零拷贝的实现示例,旨在在减少数据在内存中的不必要复制,从而提高程序性能、降低内存使用并减少CPU消耗,零拷贝技术通过多种方式实现,下面就来了解一下... 目录一、C++中零拷贝技术的核心概念二、std::string_view 简介三、std::stri

C++高效内存池实现减少动态分配开销的解决方案

《C++高效内存池实现减少动态分配开销的解决方案》C++动态内存分配存在系统调用开销、碎片化和锁竞争等性能问题,内存池通过预分配、分块管理和缓存复用解决这些问题,下面就来了解一下... 目录一、C++内存分配的性能挑战二、内存池技术的核心原理三、主流内存池实现:TCMalloc与Jemalloc1. TCM

OpenCV实现实时颜色检测的示例

《OpenCV实现实时颜色检测的示例》本文主要介绍了OpenCV实现实时颜色检测的示例,通过HSV色彩空间转换和色调范围判断实现红黄绿蓝颜色检测,包含视频捕捉、区域标记、颜色分析等功能,具有一定的参考... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间

苹果macOS 26 Tahoe主题功能大升级:可定制图标/高亮文本/文件夹颜色

《苹果macOS26Tahoe主题功能大升级:可定制图标/高亮文本/文件夹颜色》在整体系统设计方面,macOS26采用了全新的玻璃质感视觉风格,应用于Dock栏、应用图标以及桌面小部件等多个界面... 科技媒体 MACRumors 昨日(6 月 13 日)发布博文,报道称在 macOS 26 Tahoe 中

Python实现精准提取 PDF中的文本,表格与图片

《Python实现精准提取PDF中的文本,表格与图片》在实际的系统开发中,处理PDF文件不仅限于读取整页文本,还有提取文档中的表格数据,图片或特定区域的内容,下面我们来看看如何使用Python实... 目录安装 python 库提取 PDF 文本内容:获取整页文本与指定区域内容获取页面上的所有文本内容获取

基于Python实现一个Windows Tree命令工具

《基于Python实现一个WindowsTree命令工具》今天想要在Windows平台的CMD命令终端窗口中使用像Linux下的tree命令,打印一下目录结构层级树,然而还真有tree命令,但是发现... 目录引言实现代码使用说明可用选项示例用法功能特点添加到环境变量方法一:创建批处理文件并添加到PATH1

Java使用HttpClient实现图片下载与本地保存功能

《Java使用HttpClient实现图片下载与本地保存功能》在当今数字化时代,网络资源的获取与处理已成为软件开发中的常见需求,其中,图片作为网络上最常见的资源之一,其下载与保存功能在许多应用场景中都... 目录引言一、Apache HttpClient简介二、技术栈与环境准备三、实现图片下载与保存功能1.

canal实现mysql数据同步的详细过程

《canal实现mysql数据同步的详细过程》:本文主要介绍canal实现mysql数据同步的详细过程,本文通过实例图文相结合给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的... 目录1、canal下载2、mysql同步用户创建和授权3、canal admin安装和启动4、canal

Nexus安装和启动的实现教程

《Nexus安装和启动的实现教程》:本文主要介绍Nexus安装和启动的实现教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、Nexus下载二、Nexus安装和启动三、关闭Nexus总结一、Nexus下载官方下载链接:DownloadWindows系统根

SpringBoot集成LiteFlow实现轻量级工作流引擎的详细过程

《SpringBoot集成LiteFlow实现轻量级工作流引擎的详细过程》LiteFlow是一款专注于逻辑驱动流程编排的轻量级框架,它以组件化方式快速构建和执行业务流程,有效解耦复杂业务逻辑,下面给大... 目录一、基础概念1.1 组件(Component)1.2 规则(Rule)1.3 上下文(Conte