AI-generated Key Takeaways
-
GoogleMap.SnapshotReadyCallbackis an interface used to receive a notification when a map snapshot is ready. -
The
onSnapshotReadymethod is called with a Bitmap of the map or null if the snapshot fails, and this happens on the Android UI thread.
public static interface
GoogleMap.SnapshotReadyCallback
Callback interface to notify when the snapshot has been taken.
Public Method Summary
| abstract void |
onSnapshotReady(Bitmap snapshot)
Invoked when the snapshot has been taken.
|
Public Methods
public abstract void onSnapshotReady (Bitmap snapshot)
Invoked when the snapshot has been taken.
This is called on the Android UI thread.
Parameters
| snapshot | A bitmap containing the map as it is currently rendered, or null
if the snapshot could not be taken.
|
|---|