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

相关文章

使用Redis快速实现共享Session登录的详细步骤

《使用Redis快速实现共享Session登录的详细步骤》在Web开发中,Session通常用于存储用户的会话信息,允许用户在多个页面之间保持登录状态,Redis是一个开源的高性能键值数据库,广泛用于... 目录前言实现原理:步骤:使用Redis实现共享Session登录1. 引入Redis依赖2. 配置R

SpringBoot实现RSA+AES自动接口解密的实战指南

《SpringBoot实现RSA+AES自动接口解密的实战指南》在当今数据泄露频发的网络环境中,接口安全已成为开发者不可忽视的核心议题,RSA+AES混合加密方案因其安全性高、性能优越而被广泛采用,本... 目录一、项目依赖与环境准备1.1 Maven依赖配置1.2 密钥生成与配置二、加密工具类实现2.1

在Java中实现线程之间的数据共享的几种方式总结

《在Java中实现线程之间的数据共享的几种方式总结》在Java中实现线程间数据共享是并发编程的核心需求,但需要谨慎处理同步问题以避免竞态条件,本文通过代码示例给大家介绍了几种主要实现方式及其最佳实践,... 目录1. 共享变量与同步机制2. 轻量级通信机制3. 线程安全容器4. 线程局部变量(ThreadL

python使用Akshare与Streamlit实现股票估值分析教程(图文代码)

《python使用Akshare与Streamlit实现股票估值分析教程(图文代码)》入职测试中的一道题,要求:从Akshare下载某一个股票近十年的财务报表包括,资产负债表,利润表,现金流量表,保存... 目录一、前言二、核心知识点梳理1、Akshare数据获取2、Pandas数据处理3、Matplotl

分布式锁在Spring Boot应用中的实现过程

《分布式锁在SpringBoot应用中的实现过程》文章介绍在SpringBoot中通过自定义Lock注解、LockAspect切面和RedisLockUtils工具类实现分布式锁,确保多实例并发操作... 目录Lock注解LockASPect切面RedisLockUtils工具类总结在现代微服务架构中,分布

Java使用Thumbnailator库实现图片处理与压缩功能

《Java使用Thumbnailator库实现图片处理与压缩功能》Thumbnailator是高性能Java图像处理库,支持缩放、旋转、水印添加、裁剪及格式转换,提供易用API和性能优化,适合Web应... 目录1. 图片处理库Thumbnailator介绍2. 基本和指定大小图片缩放功能2.1 图片缩放的

Python使用Tenacity一行代码实现自动重试详解

《Python使用Tenacity一行代码实现自动重试详解》tenacity是一个专为Python设计的通用重试库,它的核心理念就是用简单、清晰的方式,为任何可能失败的操作添加重试能力,下面我们就来看... 目录一切始于一个简单的 API 调用Tenacity 入门:一行代码实现优雅重试精细控制:让重试按我

Redis客户端连接机制的实现方案

《Redis客户端连接机制的实现方案》本文主要介绍了Redis客户端连接机制的实现方案,包括事件驱动模型、非阻塞I/O处理、连接池应用及配置优化,具有一定的参考价值,感兴趣的可以了解一下... 目录1. Redis连接模型概述2. 连接建立过程详解2.1 连php接初始化流程2.2 关键配置参数3. 最大连

Python实现网格交易策略的过程

《Python实现网格交易策略的过程》本文讲解Python网格交易策略,利用ccxt获取加密货币数据及backtrader回测,通过设定网格节点,低买高卖获利,适合震荡行情,下面跟我一起看看我们的第一... 网格交易是一种经典的量化交易策略,其核心思想是在价格上下预设多个“网格”,当价格触发特定网格时执行买

python设置环境变量路径实现过程

《python设置环境变量路径实现过程》本文介绍设置Python路径的多种方法:临时设置(Windows用`set`,Linux/macOS用`export`)、永久设置(系统属性或shell配置文件... 目录设置python路径的方法临时设置环境变量(适用于当前会话)永久设置环境变量(Windows系统