增加高德地图页面

This commit is contained in:
fengerli
2025-07-14 10:24:02 +08:00
parent cabd3c0987
commit 2772db349a
8 changed files with 454 additions and 328 deletions

View File

@ -0,0 +1,38 @@
<template>
<view class="page-section page-section-gap">
<map class="map" :latitude="latitude" :longitude="longitude" :customMapStyle="amapStyle" :show-location="true"
:markers="covers">
</map>
</view>
</template>
<script>
export default {
data() {
return {
id: 0, // 使用 marker点击事件 需要填写id
title: 'map',
latitude: 39.909,
longitude: 116.39742,
covers: [{
latitude: 39.909,
longitude: 116.39742,
}],
amapStyle: {
}
}
},
methods: {
}
}
</script>
<style>
.map {
width: 100%;
height: 100vh;
}
</style>