我想显示一个小箭头作为我的源标记指向目标点的覆盖。因此,随着源位置的变化,这个箭头应该指向所有方向。它就像一个在指向目的地的源点上显示的指南针。
有什么建议么?谢谢。
我想显示一个小箭头作为我的源标记指向目标点的覆盖。因此,随着源位置的变化,这个箭头应该指向所有方向。它就像一个在指向目的地的源点上显示的指南针。
有什么建议么?谢谢。
我为类似问题找到的解决方案是使用图像作为表示箭头的标记。然后我计算源和目标之间的角度,然后用这个角度旋转标记。(对不起我的英语不好)。
protected class yourOverlay extends Overlay{
public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when){
super.draw(canvas, mapView, shadow);
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.arrow);
Point sourceCoords = new Point();
mapView.getProjection().toPixels(sourcePosition, sourceCoords);
int x = sourceCoords.x - bmp.getWidth()/2;
int y = sourceCoords.y - bmp.getHeight();
Point destinationCoords = new Point();
mapView.getProjection().toPixels(destinationPosition, destinationCoords);
double angle = Math.toDegrees(Math.atan2(sourceCoords.x - destinationCoords.x, sourceCoords.y - destinationCoords.y));
Matrix matrix = new Matrix();
matrix.postRotate(-(float)angle, bmp.getWidth()/2,bmp.getHeight());
matrix.postTranslate(x,y);
canvas.drawBitmap(bmp, matrix, new Paint());
return true;
}
}