com.supermap.mapping
Class LabelBackShape
- java.lang.Object
-
- com.supermap.data.Enum
-
- com.supermap.mapping.LabelBackShape
-
public final class LabelBackShape extends Enum
This class defines the constants representing the label back shapes of the label map.
-
-
Field Summary
Fields Modifier and Type Field and Description static LabelBackShape
DIAMOND
Diamond background.static LabelBackShape
ELLIPSE
Ellipse background.static LabelBackShape
MARKER
The symbol background.static LabelBackShape
NONE
None background.static LabelBackShape
RECT
Rectangle background.static LabelBackShape
ROUNDRECT
Rounded rectangle background.static LabelBackShape
TRIANGLE
Rectangle background.
-
-
-
Field Detail
-
NONE
public static final LabelBackShape NONE
None background. No background shape is used as the background of the labels in a label map. This is the default value.
-
RECT
public static final LabelBackShape RECT
Rectangle background. The background shape of the label is a rectangle, as shown in the following figure.
-
ROUNDRECT
public static final LabelBackShape ROUNDRECT
Rounded rectangle background. The background shape of the label is a rounded rectangle, as shown in the following figure.
-
ELLIPSE
public static final LabelBackShape ELLIPSE
Ellipse background. The background shape of the label is an ellipse, as shown in the following figure.
-
DIAMOND
public static final LabelBackShape DIAMOND
Diamond background. The background shape of the label is a diamond, as shown in the following figure.
-
TRIANGLE
public static final LabelBackShape TRIANGLE
Rectangle background. The background shape of the label is a triangle, as shown in the following figure.
-
MARKER
public static final LabelBackShape MARKER
The symbol background. The background shape of the label is a specified symbol, and this symbol can be returned and set through thegetBackStyle()
andsetBackStyle()
methods of theThemeLabel
class.
-
-