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

相关文章

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

使用Python删除Excel中的行列和单元格示例详解

《使用Python删除Excel中的行列和单元格示例详解》在处理Excel数据时,删除不需要的行、列或单元格是一项常见且必要的操作,本文将使用Python脚本实现对Excel表格的高效自动化处理,感兴... 目录开发环境准备使用 python 删除 Excphpel 表格中的行删除特定行删除空白行删除含指定

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

mybatis执行insert返回id实现详解

《mybatis执行insert返回id实现详解》MyBatis插入操作默认返回受影响行数,需通过useGeneratedKeys+keyProperty或selectKey获取主键ID,确保主键为自... 目录 两种方式获取自增 ID:1. ​​useGeneratedKeys+keyProperty(推

Spring Boot集成Druid实现数据源管理与监控的详细步骤

《SpringBoot集成Druid实现数据源管理与监控的详细步骤》本文介绍如何在SpringBoot项目中集成Druid数据库连接池,包括环境搭建、Maven依赖配置、SpringBoot配置文件... 目录1. 引言1.1 环境准备1.2 Druid介绍2. 配置Druid连接池3. 查看Druid监控

Linux在线解压jar包的实现方式

《Linux在线解压jar包的实现方式》:本文主要介绍Linux在线解压jar包的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux在线解压jar包解压 jar包的步骤总结Linux在线解压jar包在 Centos 中解压 jar 包可以使用 u