1.在百度地图申请密钥:

http://lbsyun.baidu.com/  将

<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=密钥" ></script>

中的 密钥替换成你申请的,在 vue项目的index.html引用。

2. 在build 文件下下的 webpack.base.conf.js贴入代码

externals: {
"BMap": "BMap"
},

3. map.vue代码(demo可以直接使用,demo使用了vue-clipboard2插件,请自行安装)

<template>
<div>
<el-row >
<el-col :offset="" :span="">
<el-input :id="suggestId" v-model="address_detail" :clearable='clearable' placeholder="请输入店铺地址,获取店铺坐标" >
</el-input>
</el-col>
<el-col :span="">
<el-button id="position" @click="search" type="primary">定位</el-button>
</el-col>
<el-col :span="" >
<el-tag type="success" v-clipboard:copy="userlocation.lng" v-clipboard:success="onCopy" v-clipboard:error="onError" >经度 {{userlocation.lng}}</el-tag>
<el-tag type="success" v-clipboard:copy="userlocation.lat" v-clipboard:success="onCopy" v-clipboard:error="onError">纬度 {{userlocation.lat}}</el-tag>
<el-tag type="success" ><<<<点击左侧按钮复制经纬度信息</el-tag>
</el-col>
</el-row>
<el-row>
<el-col :offset="" :span="">
<div id="map_canvas" class="allmap"></div>
</el-col>
</el-row>
</div>
</template>
<script>
export default {
data() {
return {
address_detail: "", //详细地址
userlocation: { lng: "", lat: "" },
clearable: true,
suggestId: "suggestId",
map : {},
mk: {}
};
},
created () { },
methods: {
drawMap() {
this.map = new BMap.Map("map_canvas"); // 创建地图实例
this.map.addControl(new BMap.NavigationControl()); // 启用放大缩小 尺
this.map.enableScrollWheelZoom();
this.getlocation();//获取当前坐标, 测试时获取定位不准。 var point = new BMap.Point(this.userlocation.lng, this.userlocation.lat); // 创建点坐标
this.map.centerAndZoom(point, ); // 初始化地图,设置中心点坐标和地图级别
var marker = new BMap.Marker(point); // 创建标注
this.map.addOverlay(marker); // 将标注添加到地图中 var ac = new BMap.Autocomplete({
//建立一个自动完成的对象
input: "suggestId",
location: this.map
});
var myValue;
ac.addEventListener("onconfirm", (e)=> {
//鼠标点击下拉列表后的事件
var _value = e.item.value;
myValue =_value.province +_value.city +_value.district +_value.street +_value.business;
this.address_detail = myValue;
this.setPlace();
});
},
getMarker (point) {
this.mk = new BMap.Marker(point);
this.mk.addEventListener("dragend", this.showInfo);
this.mk.enableDragging(); //可拖拽
this.getAddress(point);
this.map.addOverlay(this.mk);//把点添加到地图上
this.map.panTo(point);
},
getlocation () {
//获取当前位置
var geolocation = new BMap.Geolocation();
geolocation.getCurrentPosition((r) =>{
if(geolocation.getStatus() == BMAP_STATUS_SUCCESS){
this.getMarker(r.point);
this.userlocation = r.point;
}else {
alert('failed'+this.getStatus());
}
});
},
//绑定Marker的拖拽事件
showInfo(e){
var gc = new BMap.Geocoder();
gc.getLocation(e.point, (rs)=>{
var addComp = rs.addressComponents;
var address = addComp.province + addComp.city + addComp.district + addComp.street + addComp.streetNumber;//获取地址 //画图 ---》显示地址信息
var label = new BMap.Label(address,{offset:new BMap.Size(,-)});
this.map.removeOverlay(this.mk.getLabel());//删除之前的label this.mk.setLabel(label);
this.address_detail = address;
this.userlocation = e.point; });
},
//获取地址信息,设置地址label
getAddress(point){
var gc = new BMap.Geocoder(); gc.getLocation(point, (rs)=>{
var addComp = rs.addressComponents;
var address = addComp.province + addComp.city + addComp.district + addComp.street + addComp.streetNumber;//获取地址 //画图 ---》显示地址信息
var label = new BMap.Label(address,{offset:new BMap.Size(,-)});
this.map.removeOverlay(this.mk.getLabel());//删除之前的label
this.address_detail = address;
this.mk.setLabel(label); }); },
setPlace() {
this.map.clearOverlays(); //清除地图上所有覆盖物
var th = this
function myFun() {
th.userlocation = local.getResults().getPoi().point; //获取第一个智能搜索的结果
th.map.centerAndZoom(th.userlocation, );
th.getMarker(th.userlocation);
} var local = new BMap.LocalSearch(this.map, {
onSearchComplete: myFun //智能搜索
});
local.search(this.address_detail);
},
search () {
var localSearch = new BMap.LocalSearch(this.map);
localSearch.enableAutoViewport(); //允许自动调节窗体大小
this.searchByInputName(localSearch);
},
searchByInputName(localSearch) {
this.map.clearOverlays(); //清空原来的标注
var th = this;
var keyword = this.address_detail;
localSearch.setSearchCompleteCallback(function(searchResult) {
var poi = searchResult.getPoi();
th.userlocation = poi.point;
th.map.centerAndZoom(poi.point, );
th.getMarker(th.userlocation);
});
localSearch.search(keyword);
},
onCopy () {
this.$message('内容已复制到剪贴板!');
},
onError () {
this.$message('内容复制失败,请重试!'); } },
mounted() {
this.$nextTick(function() {
this.drawMap();
}); }
};
</script>
<style scoped>
.allmap {
width: %;
height: 400px;
font-family: "微软雅黑";
border: 1px solid green;
}
.el-tag {
cursor: pointer;
}
</style>

最新文章

  1. JavaScript多线程之HTML5 Web Worker
  2. iOS - Localizable 国际化
  3. java堆栈区别
  4. Android--再探MVP模式
  5. jquery自定义类似$.ajax()的方法
  6. linux 命令 之chomd
  7. Innodb加载数据字典 &amp;&amp; flush tables
  8. 关于asp.net的&lt;%#%&gt;的一些总结
  9. Lake Counting--poj2386
  10. SSMS2008插件开发(3)--部署调试SSMS2008插件
  11. Vi编辑器入门
  12. [原创]手把手教你写网络爬虫(4):Scrapy入门
  13. 安装eclipse scala插件
  14. SpringBoot放置在static下面的静态页面无法访问
  15. Mysql my.cnf配置文件记录
  16. haproxy配置详解
  17. Mybatis使用generator自动生成的Example类使用OR条件查询
  18. Mysql Case when 语句
  19. python ipython spyder
  20. 使用VLC推送TS流(纯图版)

热门文章

  1. 【CV论文阅读】action recognition by dense trajectories
  2. 开源软件Review Board
  3. [JavaEE] Create API documents with Swagger
  4. [Vue @Component] Place Content in Components with Vue Slots
  5. The return type is incompatible with JspSourceDependent.getDependants():JasperException问题分析与解决方法
  6. 一个人开发的.Net版轻量级博客,欢迎吐槽,互相学习!
  7. struts2国际化---配置国际化全局资源文件并输出国际化资源信息
  8. Oracle Study之--Oracle 11gR2通过RMAN克隆数据库
  9. Linux安装MATLAB
  10. WebView与JavaScript交互--Android