PointVisualizer.AtCenter Property
Gets or sets a value indicating if the PointVisualizer is applied to the center of a polygon feature, or along the edge.
Syntax
public AttributeVariable< System.Boolean > AtCenter { get; set; }
Property Value
Default: false
True if the visualizer should be applied at the center, False otherwise.
Remarks
The property only affects the visualization of polygon features.
Example
// Set AtCenter based on the attribute "VisualizeAtCenter"
public static void SetAtCenterBasedOnAttribute(PointVisualizer pointVisualizer)
{
// 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 AtCenter based on the attribute "VisualizeAtCenter" with the default false
pointVisualizer.AtCenter =
new IndirectAttributeVariable<bool>("VisualizeAtCenter", false);
}
}
Platforms
Windows, Linux, Android