How to get Bitmap of MapView from Android Google Maps API V2
Asked Answered
W

1

11

I'm updating my app to the new Android Maps API V2 and ran into a problem when trying to get a bitmap image of the currently shown map. In API V1 I did this like so:

Bitmap mBitmap;
MapViwe mMapView;
// ...
mBitmap = Bitmap.createBitmap(MAP_WIDTH, MAP_HEIGHT, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(mBitmap);
mMapView.draw(canvas);

Whilest in API V1, this got me a bitmap of the map, in API V2, all I get is a black rectangle.

Also with API V2 I'm using the MapView, not the MapFragment so this isn't the problem.

Weeks answered 18/1, 2013 at 10:9 Comment(0)
H
12

GoogleMap.snapshot() method does the job.

Hypnoanalysis answered 24/4, 2014 at 10:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.