//pages.json
{
"path": "pages/account/index",
"style": {
"navigationBarTitleText": "个人中心",
"app-plus": {
"titleNView":{
"autoBackButton":false
},
"subNVues": [
{
"id": "map",
"path": "pages/account/map",
"style": {
"bottom": "0px",
"width": "100%",//宽度为屏幕宽度
"height": "500upx"//高度可调整
}
}
]
}
}
}
<map id="map" ref="map" :scale="map.scale" @regionchange="regionchange"
@updated="updated" :latitude="map.latitude" :longitude="map.longitude" :markers="covers" @callouttap="de" @markertap="de">
</map>
onReady() {
console.log('---reday')
//这里走了
// 创建地图上下文
map = uni.createMapContext('map', this);
map.getRegion({
success: res => {
//这里进不来
console.log(22132321);
console.log(22132321);
}
})
},
1 个回复
hzpb2013
我也遇到同样的问题了,您解决好了吗?