OnMap3DViewReadyCallback

public interface OnMap3DViewReadyCallback


Callback interface for when the Map3DView is ready.

Summary

Public methods

default void

Called when there is an error while creating or loading the Map3DView.

abstract void

Called when the Map3DView is ready.

Public methods

onError

default void onError(@NonNull Exception error)

Called when there is an error while creating or loading the Map3DView. The default implementation throws the Exception back to the caller.

Parameters
@NonNull Exception error

The Exception that occurred.

onMap3DViewReady

abstract void onMap3DViewReady(@NonNull GoogleMap3D googleMap3D)

Called when the Map3DView is ready.

Parameters
@NonNull GoogleMap3D googleMap3D

The GoogleMap3D instance associated with the Map3DView. Use this instance to access the APIs to interact with the map.