public Bitmap getImage() {
Bitmap bitmap = null;
try {
URL url = new URL("인터넷 그림 주소);
URLConnection conn = url.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bitmap = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
} catch (Exception e) {
Log.d("bitmap", "Errorgetting bitmap");
e.getStackTrace();
}
System.out.println("bitmap" + bitmap);
return bitmap;
}

drawable2 = this.getResources().getDrawable(getImage());
itemziedOverlay2 = new Reservation_Activityarea(drawable2, this);

이런식으로 MapActivity를 extends 시킨 클래스에서 에 마커를 찍으려고 합니다.
그런데 마커의 그림이 모두 다르게 하려고, copy한 이미지 대신 서버에서 매번 받으려고 하는데, 밑줄친 부분에서 에러가 뜹니다. 
에러 메시지는 The method getDrawable(int) in the type Resources is not applicable for the arguments (Bitmap) 으로 bitmap이 아닌 int형 id 값을 넘기라고 나옵니다. 구글에 직접 받은 이미지 마커들을 찍으려는데 고수 분들 답변 부탁드립니다.