← Back to carmenta.com
Carmenta Engine SDK Documentation
×

PointVisualizerSet Class

A visualizer that combines several other point visualizer into a single unit.

Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Thread safety: Members defined in this class are, in general, not thread-safe. Show

Syntax

C#
public class PointVisualizerSet : PointVisualizer

Remarks

A PointVisualizerSet is a collection of point visualizers, similar to a VisualizerSet. The relative positions of these point visualizers are computed with reference to an auxiliary insertion point. Once their relative positions are fixed, the entire group will act as a single point visualizer, and can be offset, rotated, scaled etc, the same way as an ordinary symbol or text visualizer. It can also be moved around as a single object by a LabelOrganizingLayer. See below for an example.

A PointVisualizerSet can be applied to point, line and polygon features; all other feature types are ignored.

Like a text visualizer, the PointVisualizerSet supports a background box: a filled and/or outlined rectangle drawn behind the contained visualizers. The size and position of the box is calculated to fit the presentation of the contained visualizers, with an optional padding. Also like a text visualizer, the presentation may be aligned horizontally and vertically to either side or the center of the group.

The Visualizers property holds the list of visualizers in the PointVisualizerSet. The list may contain text and symbol visualizers, and also other PointVisualizerSet instances. The PointVisualizerSet changes the behavior of these visualizers in several ways:

  • Properties that only make sense for the whole group and not the individual visualizers are ignored. These include At, AtCenter, LabelOrganizingSettings, LeadLine, LeadLineSettings, Repeat and ClipToViewArea.

  • The scale factor of the PointVisualizerSet is propagated down and multiplied to the scale factors of the individual visualizers. This means that the entire PointVisualizerSet can be scaled up or down by specifying a scale factor for the PointVisualizerSet.

  • The horizontal (or vertical) position of the combined presentation will normally depend on the alignment and offset properties of the individual text and symbol visualizers, and on the offset properties of the PointVisualizerSet. However, it is possible to align the combined presentation as a whole, by setting the AlignX and AlignY properties of the PointVisualizerSet to appropriate values.

  • The LengthUnit properties of the individual visualizers are ignored; the value from the PointVisualizerSet is used for all the visualizers.

  • The properties that control rotation still work for the individual visualizers. However, some rotation modes would normally say that the up direction is a segment direction of a line feature or polygon feature; when these modes are used for the parts of a PointVisualizerSet, the direction of the PointVisualizerSet will be used instead of a segment direction. (See Rotation for more details). The best design is usually to set RotationMode = Rotated and Rotation = 0.0 on all parts and subparts, and use a different rotation mode and rotation (if needed) only on the root PointVisualizerSet. With this design, the entire visualization can be rotated as a rigid chunk.

Example: Two-column table

Here is an example, where we want a label to contain a table with two columns.

We wanted the left hand column to be left-aligned, but the right hand column to be right-aligned since it contains numbers. The table above was achieved via a main PointVisualizerSet, consisting of two parts, one for the left column and one for the right, each part also being a PointVisualizerSet. Each part consists of four text visualizers.

We have used the ability to realign a PointVisualizerSet independently from the alignment of its parts. With this approach, the auxiliary insertion point for the parts will only control their relative placements, and can be forgotten when the entire chunk of text is realigned to a higher-level insertion point.

So, the left column above was created by a PointVisualizerSet that used the upper left corner as its auxiliary insertion point. Its four text visualizers have alignX = Left and alignY = Top; their vertical placements come from their having offsetY of 0, 16, 32 and 48 pixels, which works fine since the font size is fixed at 14 pixels.

In a similar way, the right column above was created by a PointVisualizerSet that used the upper right corner as its auxiliary insertion point. Its four text visualizers have alignX = Right and alignY = Top, with their vertical placement implemented in the same way as the left column.

Then, the two columns must be placed relative to each other. So the two PointVisualizerSet instances for the columns are used as components in a top-level PointVisualizerSet. The entire left hand column is now right-aligned and the entire right hand column is left-aligned, relative to a new auxiliary insertion point between the columns.

Finally, the entire table, created by the top-level PointVisualizerSet, can be left-aligned and bottom-aligned relative to the airplane position.

The configuration looks like this:

A similar example can be found in the configuration sample point_visualizer_set.px.

Inheritance Hierarchy

System.Object (not available in C#)
  EngineObject
    ResourceObject
      Visualizer
        PointVisualizer
          PointVisualizerSet

Platforms

Windows, Linux, Android

PointVisualizerSet Members

The PointVisualizerSet type has the following members.

Constructors

NameDescription
PointVisualizerSetInitializes a new instance of the PointVisualizerSet class.

Properties

NameDescription
AlignXGets or sets a value specifying how the combined presentation is aligned horizontally.
AlignYGets or sets a value specifying how the combined presentation is aligned vertically.
AntiAliasGets or sets a flag indicating if antialiasing should be used to remove aliasing artifacts by smoothing the pixels. Inherited from PointVisualizer
AtGets or sets a value that determines the placement of an object along lines. Inherited from PointVisualizer
AtCenterGets or sets a value indicating if the PointVisualizerSet is applied to the center of a polygon feature, or along the edge. Inherited from PointVisualizer
AzimuthRotationGets or sets a value indicating whether the Rotation angle starts from true north. Inherited from PointVisualizer
BackgroundColorGets or sets the color to use for the background box.
BackgroundOutlineColorGets or sets the color to use for the outline of the background box.
BackgroundOutlineWidthGets or sets the width of the background box outline.
BackgroundPaddingGets or sets a value specifying how much extra space should be added between the presentation and the edges of the background box.
CacheAsBitmapGets or sets a value that determines whether the symbol is cached as a bitmap.
ClipToViewAreaGets or sets a value indicating if the feature should be clipped to the visible view area before the visualizer is applied. Inherited from PointVisualizer
ColorGets or sets the color used to draw the features. Inherited from PointVisualizer
ConditionGets or sets a condition that must evaluate to true if the visualizer shall be applied to a feature. Inherited from Visualizer
IsDisposedGets a value that tells whether the current PointVisualizerSet has been disposed. Inherited from EngineObject
LabelOrganizingSettingsGets or sets the settings that control how the rendering will be affected by a LabelOrganizingLayer. Inherited from PointVisualizer
LeadLineGets or sets a value indicating if a lead line should be drawn for offset objects. Inherited from PointVisualizer
LeadLineSettingsGets or sets properties controlling how lead lines are drawn. Inherited from PointVisualizer
LengthUnitGets or sets a value defining the length unit of some other properties. Inherited from PointVisualizer
NameGets or sets the name of the PointVisualizerSet. Inherited from ResourceObject
NativeHandleGets the native Carmenta Engine kernel object the current PointVisualizerSet represents. Inherited from EngineObject
OffsetXGets or sets a value offsetting the visualization of an object from its geographic position. Inherited from PointVisualizer
OffsetYGets or sets a value offsetting the visualization of an object from its geographic position. Inherited from PointVisualizer
OffsetZGets or sets a value offsetting the visualization of an object from its geographic position. Inherited from PointVisualizer
OpacityGets or sets a value that specifies the opacity of the features. Inherited from PointVisualizer
PickingSupportGets or sets a value specifying how much information is maintained when the visualizer creates a PresentationObject for a feature. Inherited from Visualizer
RenderingPriorityGet or sets how the visualization is prioritized. Inherited from PointVisualizer
RepeatGets or sets a value determining the placement of an object along lines and polygon edges. Inherited from PointVisualizer
RingOrientationGets or sets the desired orientation of polygon rings and closed line features. Inherited from PointVisualizer
RotationGets or sets a value specifying the direction of the object. Inherited from PointVisualizer
RotationModeGets or sets a value that indicates how a label or symbol is rotated. Inherited from PointVisualizer
ScaleGets or sets a value controlling the size of the visualization. Inherited from PointVisualizer
IUserProperties.UserPropertiesGets the AttributeSet that contains the user properties. Inherited from IUserProperties
VisualizersGets the list of point visualizers combined by the PointVisualizerSet.

Methods

NameDescription
CloneCreates a copy of an object. Inherited from EngineObject
DisposeReleases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject
DrawDraws a feature on a drawable. Inherited from Visualizer
EqualsDetermines whether this instance is equal to another. Inherited from EngineObject
FindChildObjectOverloaded. Finds the child object with the specified name. Inherited from Visualizer
GetChildObjectsOverloaded. Gets the child objects of the current object. Inherited from Visualizer
GetImageRenders a feature onto a bitmap and returns it. Inherited from PointVisualizer

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept