安卓 GPS 读取
我想创建根据速度读取坐标的Android应用程序(如果应用程序持有者开车,步行等),
如果应用程序想要读取坐标,首先检查持有者的速度,如果他开车缓慢,那么应用程序读取每 10m 的坐标,如果他开得快,应用程序会读取每 1km 的坐标。 我怎样才能做到这一点?
i want to create android app that read the coordinates according to the speed (if the app holder driving ,walking etc.)
if the app want to read the coordinates first check the speed of the holder,if he driving slowly then the app read the coordinates in each 10m and if he driving fast the app read the coordinates in each 1km.
how can i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 getSpeed() 获取速度
根据速度,您可以选择每 x 米获取位置修复
You can get the speed using getSpeed()
Based on the speed you can choose to get location fixes every x meters