国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

vue百度地圖 + 定位的詳解

2019-11-19 11:35:28
字體:
來源:轉載
供稿:網友

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百度地圖 + 定位詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 吉林市| 奎屯市| 斗六市| 南川市| 彭阳县| 绩溪县| 东乡| 师宗县| 库伦旗| 宿松县| 鹰潭市| 资阳市| 巴东县| 合山市| 崇仁县| 铜山县| 英吉沙县| 吉木萨尔县| 金昌市| 金溪县| 彭州市| 大港区| 鱼台县| 邳州市| 玉溪市| 化州市| 五莲县| 娄烦县| 涞水县| 巴彦淖尔市| 泌阳县| 枣庄市| 贺兰县| 南城县| 丽江市| 南雄市| 吉木乃县| 张家港市| 且末县| 固原市| 沅陵县|