昨天正好遇到这个问题,获取map对象就可以了
wx.createMapContext(mapId)
创建并返回 map 上下文 mapContext
对象
mapContext
mapContext
通过 mapId 跟一个 <map/>
组件绑定,通过它可以操作对应的 <map/>
组件。
Page({
onReady: function (e) {
this.mapCtx = wx.createMapContext('myMap')
},
getCenterLocation: function () { this.mapCtx.getCenterLocation({
success: function(res){ console.log(res.longitude) console.log(res.latitude)
}
})
},
moveToLocation: function () { this.mapCtx.moveToLocation()
}
})