first commit

This commit is contained in:
zjc
2024-12-12 10:30:11 +08:00
commit 81d7983cb6
37 changed files with 5240 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div id="container" class="map" />
</template>
<script setup>
import { onMounted } from 'vue'
onMounted(() => {
var map = new BMapGL.Map('container')
map.centerAndZoom(new BMapGL.Point(106.506299, 29.613929), 18)
map.enableScrollWheelZoom(true)
})
</script>
<style scoped lang="scss">
.map {
width: vw(3040);
height: vh(1080);
}
</style>