我是Android的新手并通过它学习.所以我想创建一个像指针一样的箭头来显示固定位置是固定的,当用户移动他们的设备时,箭头应该自动更新(如指南针).
我用谷歌搜索资源,但我无法找到它.这里有人知道怎么做吗?任何示例或教程将不胜感激.
例:
fixed location: 20 latitude, 50 longitudemy location: 5 latitude 25, longitudeSo how do i find the arrow pointed to fixed location?
解决方法:
如果curLat和curLon是当前位置的纬度和经度,并且如果refLat和refLon是参考位置纬度和经度,您可以获得从当前位置到参考位置的方位,如下所示:
final float[] results= new float[3];// The computed distance in meters is stored in results[0].// If results has length 2 or greater, the initial bearing is stored in results[1].// If results has length 3 or greater, the final bearing is stored in results[2].Location.distanceBetween(curLat, curLon, refLat, refLong, results);final float bearing = results[1];
如果距离增加,结果[2]与结果[1]的差异越来越大,除非从当前位置到参考位置的路线遵循一条直线(或者是loxodrome,见这里:http://en.wikipedia.org/wiki/Rhumb_line).
总结以上是内存溢出为你收集整理的Android在固定位置找到方位全部内容,希望文章能够帮你解决Android在固定位置找到方位所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)