You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
534 B
19 lines
534 B
<!--
|
|
@ 作者: 秦东
|
|
@ 时间: 2023-12-07 16:49:57
|
|
@ 备注:
|
|
-->
|
|
<template>
|
|
<baidu-map class="map" ak="ljiKlTAsS7SNVqDM16IUwRVFFhrvbxiF" v="3.0" :center="{lng: 116.404, lat: 39.915}" :zoom="15" :scroll-wheel-zoom="true">
|
|
<bm-map-type :map-types="['BMAP_NORMAL_MAP', 'BMAP_HYBRID_MAP']" anchor="BMAP_ANCHOR_TOP_LEFT"></bm-map-type>
|
|
</baidu-map>
|
|
</template>
|
|
<script lang='ts' setup>
|
|
import { BaiduMap } from 'vue-baidu-map-3x'
|
|
</script>
|
|
<style lang='scss' scoped>
|
|
.map {
|
|
width: 100%;
|
|
height: calc(100vh - 90px);
|
|
}
|
|
</style>
|