2012-12-27 1 views
1

Google Maps Android API V2에있는 GroundOverlay 기능을 사용하고 싶습니다. 오버레이로 표시하려는 이미지는 온라인에서만 사용할 수 있습니다 (정기적으로 업데이트되므로). 로컬 리소스를 사용할 수 없습니다.Google지도 Android V2 - GroundOverlay에서 온라인 이미지를 사용하는 방법?

mGroundOverlay = mMap.addGroundOverlay(new GroundOverlayOptions() 
      .image(BitmapDescriptorFactory.fromResource(R.drawable.newark_nj_1922)).anchor(0, 1) 
      .position(NEWARK, 8600f, 6500f)); 

가 어떻게 URL을 이용하여 온라인 이미지를 사용하기 : Google이 제공하는 예는 단지 로컬 리소스를 사용하는 방법을 보여줍니다? 가장 좋은 방법은 무엇입니까?

+0

관련 버그로지면 오버레이를 추가 AsyncTask를 사용했습니다 (?) : HTTP : // 코드 .google.com/p/gmaps-api-issues/issues/detail? id = 4637 – alexx

답변

0

내가 doInBackground() 메서드에서 내가 이미지를 다운로드 및 onPostExecute()에서 나는 다운로드 비트 맵

 URL url = new URL(strUrl); 
     InputStream is = (InputStream) url.getContent(); 
     byte[] buffer = new byte[8192]; 
     int bytesRead; 
     ByteArrayOutputStream output = new ByteArrayOutputStream(); 
     while ((bytesRead = is.read(buffer)) != -1) { 
      output.write(buffer, 0, bytesRead); 
     } 

     downloadedBmp = BitmapFactory.decodeByteArray(output.toByteArray(), 0, output.toByteArray().length);