<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<script src="https://unpkg.com/vue"></script>
<!-- Would use latest version, you'd better specify a version -->
<script src="https://unpkg.com/vue3-baidu-map-gl"></script>
<title>Vue3 BaiduMap GL</title>
<style>
body{
margin: 0;
}
</style>
</head>
<body>
<div id="app">
<b-map height="100vh" :enable-scroll-wheel-zoom="true">
<b-zoom></b-zoom>
<b-scale></b-scale>
<b-location anchor="BMAP_ANCHOR_TOP_RIGHT"></b-location>
</b-map>
</div>
<script>
const App = {
setup() {
return {}
}
}
const app = Vue.createApp(App)
app.use(Vue3baiduMapGl, { ak: 'cwHsf5i2fAQAlijOyELx5COtkFhItaSm' })
app.mount('#app')
</script>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.