如何使指南针根据我当前的位置指向我的特定纬度经度位置?
我正在开发一个 Android 应用程序,我希望指南针指向特定的纬度经度位置,而不是通常的北位置。任何人都可以建议如何实现这一点。我开发了一个指向北方向的应用程序。
预先感谢如何实施这一点。任何执行此操作的演示应用程序都会有很大帮助。
I'm developing an android application where I want the compass to point to a particular latitude longitude position instead of the usual north location. Can anyone suggest how to implement this. I've developed an application which points to north direction.
Thanks in advance in how to implement this. Any demo application which does this would be of great help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从此处实现简单的指南针。
它显然指向北方,但为了使指南针指向某个位置或坐标,你可以做这样的事情。
在您的活动中添加此方法,它会找到两个坐标之间的方位。
在 Compass 类的 onSensorChanged 方法中,执行
纬度、经度 ->您当前的纬度、经度
latWhereToPoint, lngWheretoPoint ->;您想要指向的位置。
最后你的 onSensorChanged 会是这样的。
You can implement simple compass from here.
It obviously pointing to north, but in order to make compass points to certain location or coordinates you can do some thing like this.
Add this method in your activity, it finds the bearing between two coordinates.
In onSensorChanged Method in Compass Class, do this
latitude, longitude -> your current latitude, longitude
latWhereToPoint, lngWheretoPoint -> location where you wants to point.
In the End your onSensorChanged would be like this.