IMap.IsIndicatorsEnabled

Syntax

IsIndicatorsEnabled: Boolean;

Description

The IsIndicatorEnabled property determines whether metrics are displayed on a map.

Comments

Available values:

Example

Executing the example requires that the repository contains a form containing the following components:

It is also required to have a map that is a data source for UiMap1.

Sub UserProc;
Var
    Map: IMap;
    TerritoryInfo: IMapTerritoryInfo;
    MapView: IMapView;
Begin
    // Get map
    Map := UiMap1.Map;
    // Disable displaying of metrics on map
    Map.IsIndicatorsEnabled := False;
    map.Refresh;
End Sub UserProc;

After executing the example metrics are displayed on a map.

See also:

IMap