Vue的百度地图插件尝试使用

本篇文章主要介绍了Vue的百度地图插件尝试使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

百度地图插件

安装

CDN全局安装

<script src="https://unpkg.com/vue-baidu-map"></script>

插件的引入

Vue.use(VueBaiduMap.default, { ak: 'YOUR_APP_KEY', })

ak 是在百度地图开发者平台申请的密钥 详见

地图视图

BmView 是用于渲染百度地图实例可视化区域的容器

使用 Bmview 渲染一个地图实例:

<template> <baidu-map> <bm-view></bm-view> </baidu-map> </template>

给地图添加一个缩放控件

<bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation>

把控件放到我们渲染的地图实例里就可以了

效果如下:

Vue的百度地图插件尝试使用

完整代码如下:

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>baidumap</title> <script src="https://unpkg.com/vue"></script> <script src="https://unpkg.com/vue-baidu-map"></script> <style> #map{ width: 1000px; height: 500px; } </style> </head> <body> <div> <baidu></baidu> </div> <template> <baidu-map> <bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation> <bm-view></bm-view> </baidu-map> </template> <script> Vue.use(VueBaiduMap.default, { ak: 'YOUR_APP_KEY', }) Vue.component("baidu",{ template:'#baidu' }) new Vue({ el:'#map' }) </script> </body> </html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wygdgy.html