vue3 实现 Map 地图区域组件封装

图例:重庆区域

 一、安装echarts

坑:地图echarts版本必须在5.0.0以下,否则不能显示,此处指定安装 echarts@4.9.0 即可

cnpm install echarts@4.9.0 --save

二、下载 “重庆” 区域地图json文件

下载地址:https://www.isqqw.com/geojson

将下载的 json 放至assets下的 img文件夹 中

 三、在需要的页面引入

import * as echarts from "echarts"
import cqMap from './../../assets/img/500000.json'

四、传递的数据结构

其中通过后台返回的数据结构,name 名称必须与下载的 json 文件的name名相等,否则会导致 单击的 data数据为空或显示不出来

let data = [{ value: 28, name: '万州区' },{ value: 29, name: '忠县' },{ value: 30, name: '奉节县' },{ value: 31, name: '开州区' }......
]

五、echarts 的相关事件操作

//设置默认选中高亮部分
let index = 0;
myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: 0
});// 当鼠标移入时,如果不是第一项,则把当前项置为选中,如果是第一项,则设置第一项为当前项
myCharts.value.on('mouseover', function(e) {myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: 0});if (e.dataIndex != index) {myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: index});}if (e.dataIndex == 0) {myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: e.dataIndex});}
});//当鼠标离开时,把当前项置为选中
myCharts.value.on('mouseout', function(e) {index = e.dataIndex;myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: e.dataIndex});
});
myCharts.value.dispatchAction({type: 'showTip',seriesIndex: 0, // 显示第几个seriesdataIndex: 0 // 显示第几个数据
});// 点击事件
myCharts.value.on('click', (e) => {emit('getRegionByRegionId',e.data)myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: 0});if (e.dataIndex != index) {myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: index});}myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: e.dataIndex});
})

六、创建组件 regionMap.vue

<!-- 地图组件 -->
<template><div class="bars_w" :id="id"></div>
</template><script setup>
import { ref, nextTick, onMounted, defineEmits } from 'vue';
import * as echarts from 'echarts'
import cqMap from './../../assets/img/500000.json'const props = defineProps({id: {type: String,required: true},datas:{type: Array,required: true}
})
const myCharts = ref()
const emit=defineEmits(['getRegionByRegionId'])onMounted(() => {GetEchar()
})const GetEchar = () => {nextTick(() => {let chartDom = document.getElementById(props.id)myCharts.value = echarts.init(chartDom)echarts.registerMap('centerMap', cqMap)let option = {series: [{type: 'map',zlevel: 5,map: 'centerMap',// layoutCenter: ['60%', '50%'],// layoutSize: "200%",roam: true,  // 是否开启鼠标缩放和平移漫游zoom: 1.2,scaleLimit: {min: 1.2,max: 4},label: {show: true,color: '#fff',fontSize: 12,},itemStyle: {color: '#fff',areaColor: '#569bfe',borderColor: '#00ffff'},emphasis: { // 选中后的样式label: {show: true,distance: 1,color: "#fff",fontSize: 14,fontWeight: 'bold',borderWidth: 1,backgroundColor:'red',padding:[5,8]},itemStyle: {areaColor: '#23e1d2', // 模块背景色color: "#2080F7",borderColor: 'rgba(255, 255, 255, 1)',borderWidth: 1}},data:props.datas}]}myCharts.value.setOption(option);window.addEventListener('resize', function () {myCharts.value.resize()})//设置默认选中高亮部分let index = 11;myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: index});// 点击事件myCharts.value.on('click', (e) => {emit('getRegionByRegionId',e.data)myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: 0});if (e.dataIndex != index) {myCharts.value.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: index});}myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: e.dataIndex});index=e.dataIndex})// 当鼠标离开时myCharts.value.on('mouseout', function(e) {myCharts.value.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: index});});})
}
</script><style lang="scss" scoped>
.bars_w {width: 100%;height: 500px;
}
</style>

七、页面调用

<template><RegionMap v-if="person.mapList&&person.mapList.length>0" id="'LearnMap'" :datas="person.mapList" @getRegionByRegionId="GetRegionByRegionId"/>
</template><script setup>
import { reactive } from 'vue'
import RegionMap from '@/components/regionMap'let person = reactive({mapList: [{ value: 28, name: '万州区' },{ value: 29, name: '忠县' },{ value: 30, name: '奉节县' },{ value: 31, name: '开州区' }],regionName: ''
})// 获取地图点击后数据
const GetRegionByRegionId=(item)=>{person.regionName=item.name// 传id调接口 item.value}</script>

      希望我的愚见能够帮助你哦~,若有不足之处,还望指出,你们有更好的解决方法,欢迎大家在评论区下方留言支持,大家一起相互学习参考呀~

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/28328.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

『表面』在平面模型上提取凸(凹)多边形

原始点云 直通滤波,z轴0~1.1 分割模型为平面&#xff0c;分割结果进行投影 提取多边形 代码: #include <pcl/ModelCoefficients.h> // 模型系数的数据结构&#xff0c;如平面、圆的系数 #include <pcl/io/pcd_io.h>#include <pcl/point_types.h> // 点云数据…

TCP和UDP的区别

连接&#xff1a;TCP 是面向连接的传输层协议&#xff0c;传输数据前先要建立连接&#xff1b;UDP 是不需要连接&#xff0c;即刻传输数据。首部开销&#xff1a;TCP 首部长度较长&#xff0c;首部在没有使用「选项」字段时是 20 个字节&#xff0c;如果使用了「选项」字段则会…

k8s服务发现之第二弹Service详解

创建 Service Kubernetes Servies 是一个 RESTFul 接口对象&#xff0c;可通过 yaml 文件创建。 例如&#xff0c;假设您有一组 Pod&#xff1a; 每个 Pod 都监听 9376 TCP 端口每个 Pod 都有标签 appMyApp apiVersion: v1 kind: Service metadata:name: my-service spec:s…

Modbus TCP/BACnet IP/MQTT物联网网关IOT-810介绍及其典型应用

伴随着计算机技术以及互联网的发展&#xff0c;物联网这个概念已经逐渐进入我们的日常生活&#xff0c;例如智能泊车&#xff0c;智能家居&#xff0c;智能照明&#xff0c;智能楼宇等。智能楼宇是将传统的楼宇自控系统与物联网技术相融合&#xff0c;把系统中常见的传感器、设…

设计模式 ~ 观察者模式

概念 观察者模式是一种设计模式&#xff0c;也被称为发布-订阅模式或事件模式&#xff1b; 用于在对象之间建立一种一对多的依赖关系&#xff0c;当一个对象的状态发生改变时&#xff0c;所有依赖于它的对象都会得到通知并自动更新&#xff1b; ~ 如&#xff1a;DOM事件、vue …

AVLTree深度剖析(单旋)

前言 二叉树搜索树是存在一定的缺陷问题的&#xff0c;当我们要插入的数据是有序&#xff0c;或者说接近于有序&#xff0c;&#xff0c;二叉搜索树及有可能退化为单支树&#xff0c;查找元素相当于在顺序表当中搜索元素&#xff0c;效率低下 --------------------------------…

Python对Excel不同的行分别复制不同的次数

本文介绍基于Python语言&#xff0c;读取Excel表格文件数据&#xff0c;并将其中符合我们特定要求的那一行加以复制指定的次数&#xff0c;而不符合要求的那一行则不复制&#xff1b;并将所得结果保存为新的Excel表格文件的方法。 这里需要说明&#xff0c;在我们之前的文章Pyt…

【C++】list的使用及底层实现原理

本篇文章对list的使用进行了举例讲解。同时也对底层实现进行了讲解。底层的实现关键在于迭代器的实现。希望本篇文章会对你有所帮助。 文章目录 一、list的使用 1、1 list的介绍 1、2 list的使用 1、2、1 list的常规使用 1、2、2 list的sort讲解 二、list的底层实现 2、1 初构…

等保测评包过是真的吗?安全吗?

最近有小伙伴在问&#xff0c;等保测评包过是真的吗&#xff1f;安全吗&#xff1f;哪位大哥来解答一下&#xff1f; 等保测评包过是真的吗&#xff1f;安全吗&#xff1f; 【回答】&#xff1a;等级保护采用备案与测评机制&#xff0c;而非认证机制&#xff0c;因此不存在“包…

【C语言】杨氏矩阵中寻找元素

题目名称&#xff1a; 杨氏矩阵 题目内容&#xff1a; 有一个数字矩阵&#xff0c;矩阵的每行从左到右是递增的&#xff0c;矩阵从下到上递增的&#xff08;杨氏矩阵的定义&#xff09;&#xff0c;请编写程序在这样的矩阵中查找某个数字是否存在。 形如这样的矩阵就是杨氏…

Windows bat隐藏运行窗口的几种方案

文章目录 一、背景二、测试数据三、隐藏bat运行窗口方案1. 使用VBScript脚本2. 使用mshta调用js或vbs脚本3. 将bat编译为exe程序4. 使用任务计划程序 一、背景 有些程序在执行批处理脚本时&#xff0c;可能会看到dos窗口&#xff0c;或者看到窗口一闪而过。如果批处理脚本执行…

【AUTOSAR】:车载以太网

车载以太网 References参考文献车载以太网的物理连接MACPHYPHY的主从关系100BASE-T1回音消除车载以太网的应用层协议References参考文献 汽车软件通信中间件SOME/IP简述100BASE-T1以太网:汽车网络的发展车载以太网的物理连接 MAC MAC(Media Access Control介质访问)一般集成…