这篇文章给大家分享的是有关vue百度地图 + 定位的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
vue 百度地图 + 定位
前提需要自己有百度的密钥,如没有可以去百度地图申请
一、在主目录下的index.html引入js,例如:
二、在webpack.base.conf.js配置文件中配置BMap,在module.exports 中与entry平级,例如:
三、在项目中引入BMap:
四、代码:
<template> <div class="home"> <div id="allmap" class="allmap"></div> </div> </template> <script> import {getStore, setStore, removeStore} from '@/config/Utils' import BMap from 'BMap' export default { data () { return { type: 'tab', address_detail: null, center: {lng: 116.40387397, lat: 39.91488908} } }, mounted () { this.ready() }, methods: { ready () { let map = new BMap.Map('allmap') let point = new BMap.Point(this.center.lng, this.center.lat) map.centerAndZoom(point, 10) map.enableScrollWheelZoom(true) map.enableDoubleClickZoom(true) var geolocation = new BMap.Geolocation() geolocation.getCurrentPosition((r) => { if (r.point) { this.center.lng = r.longitude this.center.lat = r.latitude let markers = new BMap.Marker(r.point) map.addOverlay(markers) map.panTo(r.point) map.centerAndZoom(r.point, 16) } }, { enableHighAccuracy: true }) } } } </script> <style> #allmap{ width: 100%; height: 15rem; } </style>
五、效果:
感谢各位的阅读!关于“vue百度地图 + 定位的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。