小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我用微信的getLocation/腾讯地图SDK获取的坐标传进去都不行(有偏差,getLocation开启高精度也不行),我还以为手机定位的问题,但试了下其它人的小程序都可以前一张为腾讯SDK获取的当前坐标,后一张为getLocation高精度模式获取的坐标
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
把代码片段贴过来
或者试试这样
<map id="myMap" style="width: 100%; height: 100%;" latitude="{{latitude}}" longitude="{{longitude}}" show-location="{{true}}" />
Page({ data: { latitude: 0, // 初始纬度 longitude: 0, // 初始经度 }, onLoad: function () { // 获取当前位置 wx.getLocation({ type: 'wgs84', // 使用 GPS 坐标系统 success: (res) => { this.setData({ latitude: res.latitude, longitude: res.longitude, }); }, fail: (res) => { // 处理定位失败的情况 console.log('获取位置失败', res); } }); }, });
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
把代码片段贴过来
或者试试这样
<map id="myMap" style="width: 100%; height: 100%;" latitude="{{latitude}}" longitude="{{longitude}}" show-location="{{true}}" />
Page({ data: { latitude: 0, // 初始纬度 longitude: 0, // 初始经度 }, onLoad: function () { // 获取当前位置 wx.getLocation({ type: 'wgs84', // 使用 GPS 坐标系统 success: (res) => { this.setData({ latitude: res.latitude, longitude: res.longitude, }); }, fail: (res) => { // 处理定位失败的情况 console.log('获取位置失败', res); } }); }, });