1***@163.com
1***@163.com
  • 发布:2019-08-30 13:47
  • 更新:2019-08-30 13:47
  • 阅读:722

map无法使用

分类:uni-app
map

(1)在示例中的:
<template>
<view>
<view class="page-body">
<view class="page-section page-section-gap">
<map style="width: 100%; height: 300px;" :latitude="latitude" :longitude="longitude" :markers="covers">
</map>
</view>
</view>
</view>
</template>

export default {
data() {
return {
title: 'map',
latitude: 39.909,
longitude: 116.39742,
covers: [{
latitude: 39.909,
longitude: 116.39742,
iconPath: '../../../static/location.png'
}, {
latitude: 39.90,
longitude: 116.39,
iconPath: '../../../static/location.png'
}]
}
},
methods: {

}  

}
复制到页面后,在ide的预览和真机中,都没有显示地图,是不是哪还需要设置什么?
(2)

2019-08-30 13:47 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复