plus.geolocation.getCurrentPosition(function(p) {
console.log('Geolocation\n纬度:' + p.coords.latitude + '\n经度:' + p.coords.longitude);
}, function(e) {
console.log('Geolocation error: ' + e.message);
}, {
provider: 'baidu'
});
取得的值如下:
Geolocation
纬度:5e-324
经度:5e-324
为什么会是5e-324呢?
z***@126.com (作者)
是使用真机运行测试时出现的,还没打包呢
2018-05-07 10:29