Hi all^^ I try to show a position on a map (in the position(100,100) of the map). This work fine with this code:
options = new BitmapFactory.Options(); options.inTempStorage = new byte[16*1024]; Bitmap bitmapImage = BitmapFactory.decodeResource(getResources(),R.drawable.dasa_map,options); Bitmap myMap=bitmapImage.copy(Bitmap.Config.ARGB_8888, true); Bitmap positionIcon=BitmapFactory.decodeResource(getResources(),R.drawable.ic_maps _indicator_current_position); Canvas c = new Canvas(myMap); Paint paint= new Paint(); c.drawBitmap(b, 100, 100, paint); Now i want to change the position of my "positionIcon" on the Map"myMap"( for example to (200,200)), how can i do this? Pls help me Thanks in advance -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

