ruoyi-plus-soybean/src/views/plugin/map/components/TencentMap.vue
2022-05-29 22:39:07 +08:00

31 lines
655 B
Vue

<template>
<div ref="domRef" class="w-full h-full"></div>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue';
import { useScriptTag } from '@vueuse/core';
import { TENCENT_MAP_SDK_URL } from '@/config';
const { load } = useScriptTag(TENCENT_MAP_SDK_URL);
const domRef = ref<HTMLDivElement | null>(null);
async function renderBaiduMap() {
if (!domRef.value) return;
await load(true);
const map = new TMap.Map(domRef.value, {
center: new TMap.LatLng(39.98412, 116.307484),
zoom: 11,
viewMode: '3D'
});
window.console.log(map);
}
onMounted(() => {
renderBaiduMap();
});
</script>
<style scoped></style>