OnMapsSdkInitializedCallback

  • OnMapsSdkInitializedCallback is an interface used to inform your application which Maps Renderer has been loaded.

  • This callback is specific to the Maps SDK and does not apply to the Navigation SDK.

  • Implementing the onMapsSdkInitialized method allows you to configure operations based on the loaded Renderer type.

  • The callback provides information about the MapsInitializer.Renderer being used by the Maps SDK.

public interface OnMapsSdkInitializedCallback

Callback interface used by the Maps SDK to inform you which maps MapsInitializer.Renderer type has been loaded for your application.

This class does not apply to the Navigation SDK. It exists for compile time compatibility with com.google.android.gms:play-services-maps only.

Public Method Summary

abstract void
onMapsSdkInitialized(MapsInitializer.Renderer renderer)
The Maps SDK calls this method to inform you which maps MapsInitializer.Renderer has been loaded for your application.

Public Methods

public abstract void onMapsSdkInitialized (MapsInitializer.Renderer renderer)

The Maps SDK calls this method to inform you which maps MapsInitializer.Renderer has been loaded for your application.

You can implement this method to define configurations or operations that are specific to each MapsInitializer.Renderer type.

This method does not apply to the Navigation SDK. It exists for compile time compatibility with com.google.android.gms:play-services-maps only.

Parameters
renderer The actual maps MapsInitializer.Renderer the maps SDK has loaded for your application.