Files
APP/pages/common/map/index.vue

36 lines
524 B
Vue
Raw Normal View History

2025-07-14 10:24:02 +08:00
<template>
<view class="page-section page-section-gap">
2025-07-19 10:22:48 +08:00
<map class="map" :latitude="latitude" :longitude="longitude":show-location="true">
2025-07-14 10:24:02 +08:00
</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,
}],
2025-07-14 10:47:22 +08:00
2025-07-14 10:24:02 +08:00
}
},
methods: {
}
}
</script>
<style>
.map {
width: 100%;
height: 100vh;
}
</style>