如何根据GPS卫星数量开始位置跟踪?
在开始位置跟踪之前,如何获取并使用卫星数量?
例如,我只想在使用至少 X 颗卫星时才开始位置跟踪。
How could I get and use the number of satellites before starting location tracking?
For example I want to start location tracking only when there are min X satellites in use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅我给您的其他问题的答案 - 如何在 Android 上测量 GPS 信号强度?。
基本上,
LocationManager.getGpsStatus().getSatellites()
。再说一遍,我个人认为对于基于位置的应用程序来说,达到这个级别并不是一个好主意,除非您特别需要对卫星数据执行某些操作。
See the answer I gave you to your other question - How to measure GPS signal strength on Android?.
Basically,
LocationManager.getGpsStatus().getSatellites()
.And again, personally I don't think that going on this level is a good idea for a location-based app, unless you specifically need to do something with the satellite data.