Вам нужно будет сделать OverhairOverlay.Не проверял это.
public class CrosshairOverlay extends Overlay {
public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when) {
Projection projection = mapView.getProjection();
Point center = projection.toPixels(mapView.getMapCenter(), null);
// Customize appearance, should be a fields.
Paint p = new Paint(Paint.ANTI_ALIAS_FLAG);
p.setColor(0xFF000000);
p.setStyle(Style.STROKE);
p.setStrokeWidth(2.0f);
int innerRadius = 10;
int outerRadius = 20;
canvas.drawCircle(center.x, center.y, innerRadius, p);
canvas.drawCircle(center.x, center.y, outerRadius, p);
return true;
}
}