Class LayerSceneProperties
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.view.LayerSceneProperties
-
public final class LayerSceneProperties extends Object
A set of properties for displaying a layer or a graphics overlay in 3D space.If layer or graphics overlay is set to a MapView, then all settings will be ignored.
Example of setting a graphics overlay's
LayerSceneProperties.SurfacePlacement
mode. This property handles the altitude of graphics in 3D space. Absolute mode will set a graphics altitude using its z value only.// only applies to a graphics overlay that is set to a scene view graphicsOverlay.getSceneProperties().setSurfacePlacement(SurfacePlacement.ABSOLUTE);
- Since:
- 100.0.0
- See Also:
GraphicsOverlay.getSceneProperties()
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LayerSceneProperties.SurfacePlacement
Handles the altitude of objects from a layer or graphics overlay in 3D space.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getAltitudeOffset()
Gets the altitude offset.LayerSceneProperties.SurfacePlacement
getSurfacePlacement()
Gets the surface placement mode from a layer or graphics overlay.void
setAltitudeOffset(double altitudeOffset)
Sets the altitude offset.void
setSurfacePlacement(LayerSceneProperties.SurfacePlacement surfacePlacement)
Sets the surface placement mode to a layer or graphics overlay.
-
-
-
Method Detail
-
getSurfacePlacement
public LayerSceneProperties.SurfacePlacement getSurfacePlacement()
Gets the surface placement mode from a layer or graphics overlay. This mode will control the altitude at which objects are positioned.- Returns:
- the surface placement mode
- Since:
- 100.0.0
-
setSurfacePlacement
public void setSurfacePlacement(LayerSceneProperties.SurfacePlacement surfacePlacement)
Sets the surface placement mode to a layer or graphics overlay. This mode will control the altitude at which objects are positioned.- Parameters:
surfacePlacement
- the surface placement mode to be set- Throws:
IllegalArgumentException
- if surfacePlacement is null- Since:
- 100.0.0
-
getAltitudeOffset
public double getAltitudeOffset()
Gets the altitude offset.- Returns:
- the altitude offset associated with the scene properties
- Since:
- 100.6.0
-
setAltitudeOffset
public void setAltitudeOffset(double altitudeOffset)
Sets the altitude offset.- Parameters:
altitudeOffset
- the altitude offset to apply- Since:
- 100.6.0
-
-