在静态图像上叠加位置标记图像(ImageView)

时间:2011-09-23 06:48:40

标签: android imageview

我有一个包含静态图像(地图)的ImageView,我想在用户点击的地图上放置一个标记。

我注册了一个OnTouchListener,它提供了点击的坐标,但我不知道如何在这个位置绘图。欣赏任何想法。

谢谢,m


这是解决问题的简单方法。它工作,在用户在屏幕上按下的背景图像上放置一个红点。如果有人能看到问题,请告诉我。谢谢,m

   import android.content.Context;
   import android.graphics.Canvas;
   import android.graphics.Color;
   import android.graphics.Paint;
   import android.util.AttributeSet;
   import android.util.Log;
   import android.view.ViewTreeObserver;
   import android.widget.ImageView;

public class MapPin extends ImageView {
private static final String TAG = "MapPin";

private Paint mPaint; 

private int mBackgroundHeight;
private int mBackgroundWidth; 

private float mPinX;
private float mPinY; 
//private Context mContext; 

private void initMapPinView(){

    mPaint = new Paint();
    mPaint.setColor(Color.RED);
}

public MapPin (Context c){
    super(c);
    initMapPinView();
}

public MapPin (Context c, AttributeSet attrs){
    super(c, attrs);
    initMapPinView();
}

public void setPin (float x, float y){
    mPinX = x; 
    mPinY = y; 
}


@Override
public void onDraw(Canvas canvas){
    super.onDraw(canvas);
    if (mPinX > 0 & mPinY > 0){
        canvas.drawCircle(mPinX, mPinY, 5, mPaint);
    }
}

}

1 个答案:

答案 0 :(得分:2)

你需要使用mapview.getProjection.toPixel()方法将lat / lng值转换为屏幕像素

这是代码

Point screenPts = new Point();

mapView.getProjection().toPixels(defaultPoint, screenPts);

// ---add the marker---
Bitmap bmp = BitmapFactory.decodeResource(getResources(),R.drawable.cur_loc);
canvas.drawBitmap(bmp, screenPts.x,screenPts.y, null);

更多查看我的帖子

how to display map in android with marker