Module com.esri.arcgisruntime
Enum Class LayerSceneProperties.SurfacePlacement
java.lang.Object
java.lang.Enum<LayerSceneProperties.SurfacePlacement>
com.esri.arcgisruntime.mapping.view.LayerSceneProperties.SurfacePlacement
- All Implemented Interfaces:
Serializable
,Comparable<LayerSceneProperties.SurfacePlacement>
,Constable
- Enclosing class:
LayerSceneProperties
public static enum LayerSceneProperties.SurfacePlacement
extends Enum<LayerSceneProperties.SurfacePlacement>
Handles the altitude of objects from a layer or graphics overlay in 3D space.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPositions objects' altitude using their z value and doesn't take surface elevation into effect.Ignores z values and drapes symbols onto the surface, billboarded to always face the camera.Ignores z values and drapes symbols flat on the surface.Treats the z values as relative to the surface altitude values.Treats the z values as relative to the scene altitude values. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABSOLUTE
Positions objects' altitude using their z value and doesn't take surface elevation into effect. -
RELATIVE
Treats the z values as relative to the surface altitude values. -
DRAPED_BILLBOARDED
Ignores z values and drapes symbols onto the surface, billboarded to always face the camera. In the case of aModelSceneSymbol
, there is no difference in behavior betweenDRAPED_FLAT
and this enum value.- Since:
- 100.7.0
-
RELATIVE_TO_SCENE
Treats the z values as relative to the scene altitude values.- Since:
- 100.7.0
-
DRAPED_FLAT
Ignores z values and drapes symbols flat on the surface. In the case of aModelSceneSymbol
, there is no difference in behavior betweenDRAPED_BILLBOARDED
and this enum value.- Since:
- 100.7.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-