问题模块 框架类型 问题类型 操作系统 工具版本
开发者工具 微信小程序 Bug Windows 1.02.1806120
//location.js
//获取应用实例
var app = getApp()
Page({
data: {
latitude:'',
longitude:''
},
onLoad: function () {
console.log('地图定位!')
var that = this
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success: function (res) {
//console.log(res)
var latitude = res.latitude;
var longitude = res.longitude;
wx.openLocation({
latitude:latitude,
longitude:longitude,
scale:1
})
}
});
},
})
本地测试无法获取到定位,怎么回事啊
代码片段
wx081ed98de52b404d
微信小程序开发问题解答
微信小程序开发者回答:
代码片段地址错误
微信小程序开发者回答: serverAdssFn: function () {var that = this ;wx.getLocation({type : 'wgs84' ,success: function (res) {var latitude = res.latitude;var longitude = res.longitude;}})
},真机测试魅族s6返回fail,其它手机返回success,都允许授权了
本文网址:http://www.91bianli.com/weixinxiaochengxu/49971.html