Map key not configured.
manifest.json已经配置了谷歌地图的key
<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
<view style="width: 100%;height: 500px;">
<map style="width: 100%; height: 500px;" :latitude="center.lat" :longitude="center.lng"></map>
</view>
</view>
</template>
<script>
export default {
data() {
return {
center: { lat: 37.7749, lng: -122.4194 },
zoom: 10,
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>
云风0214 (作者)
好的 我试试
2023-04-14 10:57
云风0214 (作者)
明明勾选了Google地图 但是打包后还提示未添加map模块
2023-04-14 11:08