微信小程序地图不能导航
发布于 6 年前 作者 jie71 15700 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)

点击marker标记,不显示  “去这里” 按钮!

  • 预期表现
  • 复现路径
  • 提供一个最简复现 Demo

onLoad: function () {

console.log(‘地图定位!’)

let that = this

wx.getLocation({

type: ‘gcj02’, //返回可以用于wx.openLocation的经纬度

success:(res)=>{

console.log(res)

let latitude = res.latitude;

let longitude = res.longitude;

let marker=this.createMarker(res);

this.moveToLocation();

this.setData({

longitude:longitude,

latitude:latitude,

markers: [{

iconPath: “/image/mark.png”,

latitude: ‘29.71798’,

longitude: ‘106.63043’,

title: ‘重庆政法大学’

}],

hasMarkers:true

});

}

});

}

2 回复

小程序可以通过    webview     控件调用H5网页可以实现.

大家可以尝试下易景空间地图导航   https://www.esmap.cn

回到顶部