在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

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面