/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: [email protected]
* @First published in xiaozhuanlan.com
* @Second published in CSDN
* @First published time: 2022-09-08
*/
<template>
<div class="container">
<h3>vue+leaflet: 加载高德地图(多种形式)</h3>
<p>大剑师兰特, 还是大剑师兰特</p>
<h4>
<el-button type="primary" size="mini" @click='gaode("https://wprd01.is.autonavi.com/appmaptile?x={x}&y={y}&z={z}&lang=zh_cn&size=1&scl=2&style=8<ype=11")'>高德路网图 </el-button>
<el-button type="primary" size="mini" @click='gaode("https://webst01.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}")'>高德影像图 </el-button>
<el-button type="primary" size="mini" @click='gaode("http://wprd04.is.autonavi.com/appmaptile?lang=zh_cn&size=1&style=7&x={x}&y={y}&z={z}")'>高德矢量图</el-button>
<el-button type="danger" size="mini" @click='clearAlllayers()'>清除图层</el-button>
</h4>
<div id="vue-leaflet"></div>
</div>
</template>
<script>
export default {
name: 'LeafletMap',
data() {
return {
map: null
}
},
mounted() {
this.initMap()
},
methods: {
clearAlllayers(){
this.map.eachLayer((layer)=>{
this.map.removeLayer(layer);
});
},
gaode(url){
L.tileLayer(
url, {
maxZoom: 19,
}
).addTo(this.map)
},
initMap() {
this.map = L.map("vue-leaflet", {
center: [39.90562, 116.38840], // 中心位置 先纬度后经度
zoom: 8, // 缩放等级
attributionControl: true, // 版权控件
zoomControl: true //缩放控件
});
}
}
}
</script>
<style scoped>
.container {
width: 840px;
height: 600px;
margin: 50px auto;
border: 1px solid #42B983;
}
#vue-leaflet {
width: 800px;
height: 430px;
margin: 0 auto;
border: 1px solid #42B983;
position: relative;
}
</style>


还是大剑师兰特
- 粉丝: 8w+
最新资源
- 提货申请单(Excel表格通用模板).xls
- 网络游戏营销模式分析及对策.doc
- 基于蓝墨云班课的职业教育信息化教学改革研究.docx
- 专业技术人员继续教育。物联网技术与应运习题.doc
- 单片机技术报告(篮球计时计分器).doc
- 计算机音乐技术在音乐教学中的应用.docx
- Apache Doris中文手册
- (分)软件技术基础(包含数据结构、软件工程、数据库基础知识和基本内容).doc
- 以项目导向为主的电子商务专业教学改革实践研究.doc
- 基于区块链的供应链金融应用研究.docx
- 2010年软件水平考试网络工程考前冲刺练习题(6).doc
- 深度学习面试宝典(含数学、机器学习、深度学习、计算机视觉、自然语言处理和SLAM等方向)Deep Learning Interview Guide (including mathematics, ma
- 嵌入式操作系统WindowsCE研究分析报告.doc
- 文档聚类与主题发现的新算法探索
- 【SpringBoot开发】Cursor配置指南:环境搭建、插件安装与项目调试全流程详解
- python的sqlserver连接组件,适合3.8版本
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


