1

Androidでオーバーレイを使用してGoogleマップにマーカーを追加したい...私のコードは以下です

@Override
    public boolean draw(Canvas canvas, MapView mapView, boolean shadow,
            long when) {
          Point screenPts = new Point(); mapView.getProjection().toPixels(p1,
          screenPts);
          //---add the marker--- 
          Bitmap bmp = BitmapFactory.decodeResource(getResources()
          , R.drawable.googlepin); ``
          canvas.drawBitmap(bmp, screenPts.x,
          screenPts.y-50, null);
                  }
        return super.draw(canvas, mapView, shadow, when);
    }

getResources() の下に RedLine を与えてください ....提案を与えてください.....感謝します 事前に..

4

0 に答える 0