PointVisualizer.LabelOrganizingSettings Property
Gets or sets the settings that control how the rendering will be affected by a LabelOrganizingLayer.
Syntax
public LabelOrganizingSettings LabelOrganizingSettings { get; set; }
Property Value
Default: null
Settings that determine how rendered items are affected by a label organizing layer.
Remarks
If this property is null, features drawn by this visualizer will not be affected by label organizing.
Example
// Set LabelOrganizingSettings into PointVisualizer
public static void SetLabelOrganizingSettings(PointVisualizer pointVisualizer)
{
// Create LabelOrganizingSettings
LabelOrganizingSettings labelOrganizingSettings = new LabelOrganizingSettings();
// Set 8 candidate positions to test for a label
labelOrganizingSettings.Count = 8;
// Don't remove duplicates
labelOrganizingSettings.RemoveDuplicates = false;
// This property is a member of a type that might be referred to by a View
// or a GlobeView, either directly or indirectly through other objects, which means
// that you must use the Guard class to take the global configuration lock when it
// is modified to synchronize access with any running Carmenta Engine threads.
using (Guard guard = new Guard())
{
// Set the LabelOrganizingSettings into the SymbolVisualizer
pointVisualizer.LabelOrganizingSettings = labelOrganizingSettings;
}
}
Platforms
Windows, Linux, Android