wx.openLocation打开地图问题
地图中点击某个marker点,调用wx.openLocation调起微信内置地图,在该内置地图页面点击‘去这里’按钮,页面报错!!!代码如下:
wx.getLocation({
type:‘gcj02’,
success: function(res) {
var latitude = res.latitude;
var longitude = res.longitude;
wx.openLocation({
latitude: latitude,
longitude: longitude,
name:name,
scale:28,
success:function(res){
console.log(‘chenggong===’+JSON.stringify(res))
}
})
},
})
有哪位遇到过的,交流一下!!!