PointVisualizer.LeadLine Property
Gets or sets a value indicating if a lead line should be drawn for offset objects.
Syntax
public System.Boolean LeadLine { get; set; }
Property Value
Default: false
True if lead lines should be drawn, false otherwise.
Remarks
If this property is True, and the rendering is offset from the original position using the OffsetX, OffsetY and/or OffsetZ properties, a line is drawn from the object's geographic position to the point where it is rendered. How the line is visualized and positioned can be controlled with the LeadLineSettings property. If LeadLineSettings is not specified, the line is drawn in the color of the visualizer, with a width of one pixel.
Lead lines are currently not supported for texts, raster symbols and SVG symbols rendered in 3D, if LengthUnit is set to Pixels.
Example
// Offset the symbol and create a LeadLine to it
public static void SetUpOffsetAndLeadLine(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 length unit pixels (Default is pixels).
pointVisualizer.LengthUnit = VisualizerLengthUnit.Pixels;
// Offset the Symbol 20 pixels to the right on the X axis
pointVisualizer.OffsetX = -20.0;
// Offset the Symbol 20 pixels to the top on the Y axis
pointVisualizer.OffsetY = 20.0;
// For 3D visualization offset the Symbol 20 pixels the Z axis
pointVisualizer.OffsetZ = 20.0;
// Visualize a LeadLine
pointVisualizer.LeadLine = true;
// Create LeadLineSettings
LeadLineSettings leadLineSettings = new LeadLineSettings();
// Attach the LeadLine to the nearest corner
leadLineSettings.AttachTo = LeadLineAttachment.NearestCorner;
// Set a start margin of 2 Pixels
leadLineSettings.StartMargin = 2.0;
// Set a end margin of 2 Pixels
leadLineSettings.EndMargin = 2.0;
// Set the LeadLineSettings into the PointVisualizer
pointVisualizer.LeadLineSettings = leadLineSettings;
}
}
Platforms
Windows, Linux, Android