6 回复
<map id=“myMap” style=“width: 100%; height: 700rpx;” show-location />
<button type=“primary” bindtap=“moveToLocation”>移动位置</button>
onLoad: function (e) {
// 使用 wx.createMapContext 获取 map 上下文
var that = this;
that.mapCtx = wx.createMapContext(‘myMap’),
that.moveToLocation()
},
moveToLocation: function () {
var that = this;
that.mapCtx.moveToLocation();
console.log(‘定位’)
}
}
mapCtx.moveToLocation这个方法在安卓无法在生命周期内调用没用bindtap内可以调用 。ios和模拟机上可以的