收藏
回答

mapCtx.moveToLocation不能回到定位点

框架类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 moveToLocation 微信iOS客户端 6.6.3 1.9.91

onReady: function (e) {

// 使用 wx.createMapContext 获取 map 上下文

this.mapCtx = wx.createMapContext('#map');


},



controlTap: function (e) {

console.log(e.controlId);

if (e.controlId == 3) {

this.mapCtx.moveToLocation();

}

},



<map id="map" include-points="{{points}}"  show-location controls='{{controls}}' bindcontroltap="controlTap" bindmarkertap="markerTap" markers="{{markers}}">


回答关注问题邀请回答
收藏

1 个回答

  • 终究如愿
    终究如愿
    2018-03-24

    this.mapCtx = wx.createMapContext('#map');


    改成:

    this.mapCtx = wx.createMapContext('map');

    //没有#

    2018-03-24
    有用
    回复 2
    • Serendipity
      Serendipity
      2020-03-23
      改成这样貌似也不可以呀? 请问
      2020-03-23
      回复
    • Serendipity
      Serendipity
      2020-03-23
      2020-03-23
      回复
登录 后发表内容