https://dafrok.github.io/vue-baidu-map/#/zh/index? ? 官網(wǎng)
mian.js
// 引入百度地圖
import BaiduMapfrom 'vue-baidu-map'
Vue.use(BaiduMap,{
ak:"45NPTn4Vm8R2LxkDyOIcvbqK4AEvAhr9"
})
組件使用
? <bm-view class="map">
? <bm-local-search :keyword="keyword" :auto-viewport="true" :location="location">
? <bm-label? @click="infoWindowOpen" v-for="item inmaparr" :content="'電梯:'+item.tex" :position="{lng: item.lng,lat: item.lat}" :labelStyle="{color: 'white',fontSize: '16px',background: 'red',opacity: '0.5'}" title="Hover me"/>
</baidu-map>
獲取點擊每一個點的經(jīng)緯度
let lng =e.point.lng
let lat =e.point.lat