我正在尝试实现一个使用方向传感器的箭头,以指向特定的位置。 Google地方信息会在找到的每个位置的ListView中实现此箭头。

我已经设法获得了方位角,但是在给定位置的情况下,我不知道如何继续计算所需的角度。此外,我需要从实北和磁北进行转换。有人有这样的例子吗?

提前致谢。

最佳答案

我解决了

float azimuth = // get azimuth from the orientation sensor (it's quite simple)
Location currentLoc = // get location from GPS or network
// convert radians to degrees
azimuth = Math.toDegrees(azimuth);
GeomagneticField geoField = new GeomagneticField(
             (float) currentLoc.getLatitude(),
             (float) currentLoc.getLongitude(),
             (float) currentLoc.getAltitude(),
             System.currentTimeMillis());
azimuth += geoField.getDeclination(); // converts magnetic north to true north
float bearing = currentLoc.bearingTo(target); // (it's already in degrees)
float direction = azimuth - bearing;

如果要绘制箭头或其他指向该方向的箭头,请使用canvas.rotate(-direction)。我们传递一个否定的参数,因为 Canvas 旋转是逆时针方向。

关于android - 使用方向传感器指向特定位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5479753/

10-10 02:36