customLocationIndicator property

LocationIndicator? customLocationIndicator

Custom location indicator LocationIndicator which VisualNavigator uses instead of the default. If set, the user is responsible for adding and removing the object to/from the mapview. It is important to stop sending location updates to the provided LocationIndicator, since VisualNavigator will control its position when rendering is active, i.e., between startRendering() and stopRendering() calls. By default this property is null, which means the default indicator is used, and VisualNavigator automatically adds and removes it to/from the mapview upon startRendering() and stopRendering() calls. Gets the currently set LocationIndicator.

Implementation

LocationIndicator? get customLocationIndicator;
void customLocationIndicator=(LocationIndicator? value)

Custom location indicator LocationIndicator which VisualNavigator uses instead of the default. If set, the user is responsible for adding and removing the object to/from the mapview. It is important to stop sending location updates to the provided LocationIndicator, since VisualNavigator will control its position when rendering is active, i.e., between startRendering() and stopRendering() calls. By default this property is null, which means the default indicator is used, and VisualNavigator automatically adds and removes it to/from the mapview upon startRendering() and stopRendering() calls. Sets a custom LocationIndicator, so that VisualNavigator uses the provided one instead of the default.

Implementation

set customLocationIndicator(LocationIndicator? value);