在开发者工具中显示正常,在android手机上调用异常:
在android手机上,地图控件隐藏后在显示,wx.createMapContext(mapId).getCenterLocation方法没有任何回调
代码如下:
<view class=“map-container” wx:if="{{stopPlaceIsShowMap}}">
<map id=“mymap” bindregionchange=“stopPlaceRegionchange” longitude="{{stopPlaceLongitude}}" latitude="{{stopPlaceLatitude}}" scale=“16” show-location=“true” controls="{{stopPlaceControls}}" style=“width: 100%; height:100%;”></map>
</view>
Page({
onReady: function (e) { // 使用 wx.createMapContext 获取 map 上下文
this.mapCtx = wx.createMapContext('myMap')
},
getCenterLocation: function () {
this.mapCtx.getCenterLocation({
success: function(res){
console.log(res)
},
fail: function(res){
console.log(res)
}
})
}
})
如果stopPlaceIsShowMap的值为false之后,在置为true,调用getCenterLocation方法,没有任何回调,在开发工具中正常,不知道算不算是个bug