我正在尝试实施一个使用方向传感器的箭头,以指向特定位置。 Google地方信息在ListView中为找到的每个地点实施此箭头。
我设法得到了方位角,但是给定了一个位置,我不知道如何继续计算我需要的角度。而且,我需要从真正的北方和磁北方进行转换。有没有人有这种实施的例子?
提前致谢。
答案 0 :(得分:22)
我解决了。
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)。我们传递一个否定的参数,因为画布旋转是逆时针的。