MapContext.moveToLocation()无法回到定位点,求大神
将MapContext.moveToLocation()写在 onReady中,页面初始化完成之后,在开发工具中可以移动到当前定位点,在手机上不能移动,代码如下:
<map id=‘Mymap’
style=“width: {{imageWidth}}px;height:{{imageHeight}}px”
markers="{{markers}}"
scale=“18”
show-compass=“true”
show-location=“true”
bindtap=‘mapTap’></map>
onReady: function () {
this.mapCtx = wx.createMapContext(“Mymap”);
this.mapCtx.moveToLocation();
},
如果我写一个按钮返回当前位置,点击之后可以实现,是不是因为在onReady的时候实际上跳过去,但是之后wx又执行了一个什么东西,视野又移动了别的位置,求大神。。。。。。。。。。。。。。。。