我在Android应用中使用了Google地图组件MapView
。我可以使用GPS位置用点显示我的位置。但是我想显示一个箭头,指出行驶方向(方位)。我认为我可以使用bearing
值来获得箭头的角度。
我该怎么做?
答案 0 :(得分:19)
假设您已获得位置,则通过执行以下操作获取方位:
float myBearing = location.getBearing();
要实施叠加层,您将使用ItemizedOverlay和OverlayItem。您需要子类OverlayItem来添加旋转Drawable的功能。类似的东西:
public BitmapDrawable rotateDrawable(float angle)
{
Bitmap arrowBitmap = BitmapFactory.decodeResource(context.getResources(),
R.drawable.map_pin);
// Create blank bitmap of equal size
Bitmap canvasBitmap = arrowBitmap.copy(Bitmap.Config.ARGB_8888, true);
canvasBitmap.eraseColor(0x00000000);
// Create canvas
Canvas canvas = new Canvas(canvasBitmap);
// Create rotation matrix
Matrix rotateMatrix = new Matrix();
rotateMatrix.setRotate(angle, canvas.getWidth()/2, canvas.getHeight()/2);
// Draw bitmap onto canvas using matrix
canvas.drawBitmap(arrowBitmap, rotateMatrix, null);
return new BitmapDrawable(canvasBitmap);
}
然后,剩下要做的就是将这个新的Drawable应用于OverlayItem。这是使用setMarker()方法完成的。