I have mapview that shows the current location and a marker. When I used marker from drawable folder (example: R.drawable.marker), the marker load perfectly but, in my case, I want to put my certain image as marker. Let's say the path of my image is "/mnt/sdcard/ppbfolder/...jpg"

I use this code

String imgpath="/mnt/sdcard/ppbfolder/...jpg";
BitmapDrawable drawable = new BitmapDrawable(this.getResources(), imgpath);
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
overlayitem.setMarker(drawable);

The code didn't display the picture, please enlighten me.

link|improve this question

25% accept rate
feedback

1 Answer

Call populate() on your ItemizedOverlay?

link|improve this answer
i already call populate(); in itemizedOverlay class – mdedewa65 Nov 29 '11 at 4:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.