在vue中使用高德地图的上浮下钻—最简单明了的方法(无需后台接口渲染文字marker)

本文主要是介绍在vue中使用高德地图的上浮下钻—最简单明了的方法(无需后台接口渲染文字marker),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在vue中使用高德地图的上浮下钻—最简单明了的方法(无需后台接口渲染文字marker)

第一步:

安装vue-amap:

npm i vue-amap -S

第二步:

配置main.js

import VueAMap from 'vue-amap'
Vue.use(VueAMap);
VueAMap.initAMapApiLoader({key: '你的key',plugin: ['AMap.Autocomplete', 'AMap.PlaceSearch', 'AMap.Scale', 'AMap.OverView', 'AMap.ToolBar', 'AMap.MapType', 'AMap.PolyEditor', 'AMap.CircleEditor','AMap.ControlBar','AMap.MouseTool','AMap.GeometryUtil','AMap.DistrictSearch'],// 默认高德 sdk 版本为 1.4.4v: '1.4.4',uiVersion:'1.0.11'
});

第三步:

代码

<template ><el-container id="container"> </el-container>
</template>
<script>
export default {data() {return {marker: {}, //点标记markers: [], //点集合map: {} //地图对象};},methods: {//初始化地图initMap() {//创建地图this.map = new AMap.Map("container", {cursor: "default",resizeEnable: true, //是否监控地图容器尺寸变化,默认值为falseexpandZoomRange: true, //是否支持可以扩展最大缩放级别,和zooms属性配合使用设置为true的时候,zooms的最大级别在PC上可以扩大到20级,移动端还是高清19/非高清20// gestureHandling: "greedy",//谷歌里面的// hybrid包含卫星和地名zooms: [3, 20],zoom: 8,defaultCursor: "pointer", //变成小手 地图默认鼠标样式。参数defaultCursor应符合CSS的cursor属性规范showLabel: true, //显示地图文字标记layers: [new AMap.TileLayer.Satellite() //默认卫星// new AMap.TileLayer.RoadNet(), //地图路网// new AMap.Buildings({// 楼块图层//   zooms: [16, 18],//   zIndex: 10,//   heightFactor: 2 //2倍于默认高度,3D下有效// })] //Satellite卫星地图,RoadNet路网,地图图层数组,数组可以是图层 中的一个或多个,默认为普通二维地图。当叠加多个图层时,普通二维地图需通过实例化一个TileLayer类实现// viewMode: "3D", //是否3d视角// pitch: 40 //俯仰角度,默认0,[0,83],2D地图下无效 。(自V1.4.0开始支持)});//行政区域AMapUI.loadUI(["geo/DistrictExplorer"], DistrictExplorer => {//创建一个实例var districtExplorer = new DistrictExplorer({eventSupport: true,map: this.map});//feature被点击// districtExplorer.on("featureClick", (e, feature) => {});//外部区域被点击// districtExplorer.on("outsideClick", e => {});//内部区域feature被点击districtExplorer.on("featureClick", (e, feature) => {console.log("feature", feature);adcodes = []; //清空区码数组adcodes = [feature.properties.adcode]; //绘制地图区域// this.initCity(feature); //调用city城市地图districtExplorer.loadMultiAreaNodes(adcodes, (error, areaNodes) => {//设置定位节点,支持鼠标位置识别console.log("areaNodes", areaNodes);//注意节点的顺序,前面的高优先级districtExplorer.setAreaNodesForLocating(areaNodes);//清除已有的绘制内容districtExplorer.clearFeaturePolygons();for (var i = 0, len = areaNodes.length; i < len; i++) {renderAreaNode(areaNodes[i]);this.initTown(areaNodes[i]);}//更新地图视野this.map.setFitView(districtExplorer.getAllFeaturePolygons());});});//外部区域被点击districtExplorer.on("outsideClick", e => {this.removeArea(); //清除地图上的文字marker标记//setTimeout(() => {//this.map.setCenter([119.92, 28.45]); //设置地图中心//}, 1000);/***清空监听的项目名称id和adcode***/adcodes = [];adcodes = [330000 //浙江];// this.initCity(); //获取城市区域districtExplorer.loadMultiAreaNodes(adcodes, (error, areaNodes) => {//设置定位节点,支持鼠标位置识别//注意节点的顺序,前面的高优先级districtExplorer.setAreaNodesForLocating(areaNodes);//清除已有的绘制内容districtExplorer.clearFeaturePolygons();for (var i = 0, len = areaNodes.length; i < len; i++) {renderAreaNode(areaNodes[i]);this.initTown(areaNodes[i]);}//更新地图视野 下钻上浮效果this.map.setFitView(districtExplorer.getAllFeaturePolygons());});});//设置绘制的子区域和父区域的自身属性(包括线颜色,透明度等)function renderAreaNode(areaNode) {//绘制子级区划districtExplorer.renderSubFeatures(areaNode, function(feature, i) {return {cursor: "default",bubble: true,// strokeColor: "#00a4ce", //线颜色strokeColor: "#03d7a1",strokeOpacity: 1, //线透明度strokeWeight: 1.5, //线宽// fillColor: "#09152a", //填充色fillColor: "#072942",fillOpacity: 0.1 //填充透明度};});//绘制父区域districtExplorer.renderParentFeature(areaNode, {cursor: "default",bubble: true,// strokeColor: "#00a4ce", //线颜色strokeColor: "#03d7a1",strokeOpacity: 1, //线透明度strokeWeight: 1.5, //线宽// fillColor: "#09152a", //填充色fillColor: "#072942",fillOpacity: 0.5 //填充透明度});}var adcodes = [];//根据角色来绘制不同的区域adcodes = [330000 //浙江];// this.initCity();//绘制多区域districtExplorer.loadMultiAreaNodes(adcodes, (error, areaNodes) => {//设置定位节点,支持鼠标位置识别//注意节点的顺序,前面的高优先级districtExplorer.setAreaNodesForLocating(areaNodes);//清除已有的绘制内容districtExplorer.clearFeaturePolygons();for (var i = 0, len = areaNodes.length; i < len; i++) {renderAreaNode(areaNodes[i]);this.initTown(areaNodes[i]);}//更新地图视野 下钻效果this.map.setFitView(districtExplorer.getAllFeaturePolygons());});});//AMap.DistrictSearch 行政区查询服务,提供行政区相关信息    这里实际上就是挖一个只有浙江省的空白覆盖区域,外部不让点击// new AMap.DistrictSearch({//   extensions: "all",//   subdistrict: 0// }).search("浙江省", (status, result) => {//   // 外多边形坐标数组和内多边形坐标数组//   var outer = [//     new AMap.LngLat(-360, 90, true),//     new AMap.LngLat(-360, -90, true),//     new AMap.LngLat(360, -90, true),//     new AMap.LngLat(360, 90, true)//   ];//   var holes = result.districtList[0].boundaries;//   var pathArray = [outer];//   pathArray.push.apply(pathArray, holes);//   var polygon = new AMap.Polygon({//     pathL: pathArray,//     strokeColor: "#0d4f50",//     strokeWeight: 1,//     fillColor: "#0d4f50",//     fillOpacity: 0.5//   });//   polygon.setPath(pathArray);//   this.map.add(polygon); //添加多边形 外部区域不让点了// });},/**各市级地图***这里要想渲染点标记就需要后台接口给你全部数据来循环里面的详细内容或者自己点出来*****/initCity(feature) {if (feature.properties.adcode == undefined ||feature.properties.adcode == null ||feature.properties.adcode == "") {adcode = "";}this.removeArea(); //清空文字点标记this.marker = new AMap.Marker({content: `<h1 class ="markerCss">${feature.properties.name} </h1>`,position: [feature.properties.center[0], feature.properties.center[1]],offset: new AMap.Pixel(0, 0)});this.markers.push(this.marker);this.map.add(this.markers);},//多个县级名称initTown(AreaNode) {if (AreaNode.adcode == undefined ||AreaNode.adcode == null ||AreaNode.adcode == "") {adcode = "";}this.removeArea(); //清空文字点标记if (AreaNode._data.geoData.lngLatSubList) {AreaNode._data.geoData.lngLatSubList.forEach(item => {this.marker = new AMap.Marker({content: `<h1 class ="markerCss">${item.properties.name} </h1>`,position: [item.properties.center[0], item.properties.center[1]],offset: new AMap.Pixel(0, 0)});this.markers.push(this.marker);});}else{this.initCity(AreaNode._data.geoData.parent)}this.map.add(this.markers);},/******清空省市区域坐标**/removeArea() {this.map.remove(this.markers);this.markers = [];},},mounted() {setTimeout(() => {this.initMap();}, 2000);},beforeDestroy() {}
};
</script>
<style lang="less">
#container {height: calc(100% - 100px);width: 100%;background-color: pink;
}
.markerCss {font-size: 16px;font-weight: 700;color: #fff;
}
</style>

最后:

有啥看不明白的或者有更好得方法朋友,可以评论留言,欢迎交流

效果图

最外层
在这里插入图片描述
点击一层
在这里插入图片描述
再点击一层
在这里插入图片描述

这篇关于在vue中使用高德地图的上浮下钻—最简单明了的方法(无需后台接口渲染文字marker)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

高效录音转文字:2024年四大工具精选!

在快节奏的工作生活中,能够快速将录音转换成文字是一项非常实用的能力。特别是在需要记录会议纪要、讲座内容或者是采访素材的时候,一款优秀的在线录音转文字工具能派上大用场。以下推荐几个好用的录音转文字工具! 365在线转文字 直达链接:https://www.pdf365.cn/ 365在线转文字是一款提供在线录音转文字服务的工具,它以其高效、便捷的特点受到用户的青睐。用户无需下载安装任何软件,只