LineVisualizer.Color Property
Gets or sets the color of the line.
Syntax
public AttributeVariable< System.Drawing.Color > Color { get; set; }
Property Value
Default: Blue, R: 0 G: 0 B: 255
The color of the line.
Remarks
An indirect color attribute variable can be used to create a color from a string attribute.
Example
// Sets up the color table for different road classes
public static void SetUpRoadClassColorTable(LineVisualizer lineVisualizer)
{
// Create a keyed color attribute variable.
// Set the default value to gray.
// This means all roads which are missing the RoadClass attribute
// or not RoadClass 1, 2, 3 are visualized gray.
KeyedAttributeVariable<Color> keyedColorAttributeVariable =
new KeyedAttributeVariable<Color>("RoadClass", Color.Gray);
// Get the table from the keyed color attribute variable
KeyValueTable<Color> colorTable = keyedColorAttributeVariable.Table;
// Set the color red for RoadCalss 1 ( 1 = Highway)
colorTable.Add(1, Color.Red);
// Set the color yellow for RoadClass 2 (2 = Mainroads)
colorTable.Add(2, Color.Yellow);
// Set the color white for RoadClass 3 (3 = Secondaryroads)
colorTable.Add(3, Color.White);
// 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 color table in the line visualizer
lineVisualizer.Color = keyedColorAttributeVariable;
}
}
Platforms
Windows, Linux, Android