scale="18" :show-location="true" :enable-zoom="true" @tap="clickMap"></map> </view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script setup>
const closeDialog = () => {
uni.closeDialogPage({
animationType:"slide-out-bottom"
})
}
const clickMap = () => {
}
</script>
<style>
.map-content{
height: 100%;
}
.coordinate-map{
height: 100%;
width: 100%;
}
.custom-navbar {
height: 44px;
display: flex;
align-items: center;
padding: 0 10px;
background-color: #ffffff;
border-bottom: 1px solid #eeeeee;
flex-direction: row;
justify-content: space-between;
}
.status-bar{
height: var(--status-bar-height);
}
</style>
0 个回复