调用这个方法的时候不要跳页,不要引入map,直接调用这个方法就可以了,就不会返回两次了。
wx.openLocation点击自带的返回键2次才能退出?wx.config({ debug: false, appId: xx, timestamp:res.data.timestamp , nonceStr: res.data.nonceStr, signature: res.data.signature, jsApiList: ["openLocation"] }); wx.ready(function () { wx.openLocation({ longitude: parseFloat(params.longitude), latitude:parseFloat(params.latitude), name: params.name, address: params.address }) }); wx.error(function(res){ console.log("err:"+res); });
2019-10-28openLocation的经纬度不是必须通过getLocation传的。
关于小程序触发地图定位 问题 wx.openLocation 希望给予解决最近需要做一个地图定位导航的功能,查阅都发现 可以使用 wx.openLocation来调取第三方的导航APP,但是会出现一个问题,那就是目的地的设定问题。wx.openLocation 其中的经纬度是必须通过getLocation 获得,这样当我打开地图导航时就会把目的地定位到当前所在的位置。这样就会导致无法使用导航功能 [图片]
2019-10-25