试玩到使用天地图 。。真真文档后续补上
试玩阶段。。文档后续接上
安装
npm install vue-baidu-map --save
注册
全局注册import Vue from 'vue'import BaiduMap from 'vue-baidu-map'Vue.use(BaiduMap, {// ak 是在百度地图开发者平台申请的密钥 详见 http://lbsyun.baidu.com/apiconsole/key */ak: 'YOUR_APP_KEY'})<template><div class="home"><!-- 使用 --><div class="home_map"><baidu-map class="map" center="北京" scroll-wheel-zoom="true"><!-- 增加缩放控件 --><bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation><!-- 增加缩略视图 --><bm-overview-mapanchor="BMAP_ANCHOR_BOTTOM_RIGHT":isOpen="true"></bm-overview-map></baidu-map></div></div></template><script>export default {name: "Home",components: {}};</script><style scoped>.map {width: 100%;height: 700px;}</style><style>.BMap_cpyCtrl {display: none;}.anchorBL {display: none;}</style>局部注册在项目页面内引用即可
