⼩程序内打开⼿机的地图APP 不要想着⽤官⽅⽂档中的
<button open-type="launchApp" app-parameter="wechat" binderror="launchAppError">打开APP</button> test.wxml
<view bindtap="test">点击打开地图</view>
test.wxjs
test: function(){
type: 'gcj02', //返回可以⽤于wx.openLocation的经纬度
success (res) {
const latitude = res.latitude
const longitude = res.longitude
wx.openLocation({
latitude,
longitude,
scale: 18
})
手机上可以打html与css的app}
})
}
注:模拟器上打不开,真机调试可见

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。