收藏
回答

腾讯地图的路线规划

骑行,使用我的位置作为起点,getSuggestion中的地址作为重点,不能规划出路线,起终点都使用getSuggestion中的地址可以,是必须要使用getSuggestion中的地址作为起终点吗

wx.getLocation({
      type:"gcj02",
      success: function(res) {
        qqmapsdk.direction({
          mode: "bicycling",
          from: {
            latitude:res.latitude,
            longitude:res.longitude
          },
          to: {
            latitude:e.target.dataset.location.lat,
            longitude: e.target.dataset.location.lng
          },
          success:function(res){
            console.log(res)
          },
          fail:function(res){
            console.log(res)
          }
        })
      },
    })


最后一次编辑于  2019-03-25
回答关注问题邀请回答
收藏

1 个回答

  • 爱钓鱼的游戏宅
    爱钓鱼的游戏宅
    2019-03-25

    。。。模拟器上不行,步行驾车公交都可以,就骑行不行,手机上可以

    2019-03-25
    有用
    回复
登录 后发表内容