View.DisplayStatistics Property
Enables or disables statistics.
Syntax
public System.Boolean DisplayStatistics { get; set; }
Property Value
Default: false
True if statistics is enabled; otherwise, False.
Remarks
If enabled, the frames per second (FPS), the number of triangles and the amount of used texture memory will be displayed. This can be useful during construction/optimization of map configurations.
Example
// Toggle DisplayStatistic:
// If enabled, the frames per second (FPS), the number of triangles
// and the amount of used texture memory will be displayed.
public static void ToggleDisplayStatistics(GlobeView globeView)
{
// Toggle DisplayStatistics
globeView.DisplayStatistics = !globeView.DisplayStatistics;
}
Platforms
Windows, Linux, Android