OnMapsSdkInitializedCallback

  • OnMapsSdkInitializedCallback is an interface used by the Maps SDK to indicate which MapsInitializer.Renderer type has been loaded.

  • The interface has one abstract method, onMapsSdkInitialized, which is called by the Maps SDK.

  • The onMapsSdkInitialized method provides the loaded MapsInitializer.Renderer as a parameter.

  • This method can be implemented to define configurations or operations specific to each renderer type.

public interface OnMapsSdkInitializedCallback

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

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.

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