您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。