模拟GPS位置问题

模拟GPS位置问题,第1张

模拟GPS位置问题

解决了问题:我添加了以下代码来设置我的当前位置,它可以成功显示在google map应用程序中。

location.setLatitude(latitude);location.setLongitude(longitude);location.setBearing(bearing);location.setSpeed(speed);location.setAltitude(altitude);location.setTime(new Date().getTime());location.setProvider(LocationManager.GPS_PROVIDER);location.setAccuracy(1);

结论:如果要在新版本的android中使用模拟位置服务,则必须自己设置每个属性。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5498616.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存