NavigationCalloutDisplayMode

  • NavigationCalloutDisplayMode is an enum used to control the display strategy for route callouts in navigation.

  • It offers three options: SHOW_ALL, SHOW_ALTERNATES_ONLY, and SHOW_NONE to manage callout visibility for different routes.

  • The enum inherits methods from Enum, Object, and Comparable for standard operations like comparison, equality checks, and getting enum values.

public final enum NavigationCalloutDisplayMode extends Enum<NavigationCalloutDisplayMode>

Desired display strategy for showing route callouts.

Inherited Method Summary

Enum Values

public static final NavigationCalloutDisplayMode SHOW_ALL

Show callouts for all routes. The information displayed by the callouts may not match the information provided by other UIs.

public static final NavigationCalloutDisplayMode SHOW_ALTERNATES_ONLY

Show callouts for alternate routes only.

public static final NavigationCalloutDisplayMode SHOW_NONE

Don't show callouts.