Namespace: Esri::GameEngine::View
Class: Esri/GameEngine/View/ArcGISView
Since: 1.0.0
Summary
A view for interaction with geographic content from an ArcGISMap.
Constructors
ArcGISView(ArcGISGameEngineType, ArcGISGlobeModel)
Create a new ArcGISView.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
game | No | Specifies the client game engine type. | |
globe | No | Specifies the model used to represent a 3D globe. |
Properties
Property | Type | Nullable | Readonly | Summary |
---|---|---|---|---|
No | No | The current ArcGISCamera. | ||
No | Yes | Manages the registration of positions that will get elevation updates. | ||
Yes | No | The current ArcGISMap. | ||
Yes | Yes | The current ArcGISSpatialReference that is defined by the layers of the ArcGISMap. | ||
No | No | The current view options for the ArcGISView. |
Camera
ArcGISCamera GetCamera() const
void SetCamera(const ArcGISCamera& camera)
The current ArcGISCamera.
ElevationProvider
ArcGISElevationProvider GetElevationProvider() const
Manages the registration of positions that will get elevation updates.
SpatialReference
ArcGISSpatialReference GetSpatialReference() const
The current ArcGISSpatialReference that is defined by the layers of the ArcGISMap.
ViewOptions
ArcGISViewOptions GetViewOptions() const
void SetViewOptions(const ArcGISViewOptions& viewOptions)
The current view options for the ArcGISView.
Methods
Signature | Return Type | Summary |
---|---|---|
GeographicToWorld(const ArcGISPoint&) | FVector3d | Transforms a geographic coordinate in a GCS or PCS to game engine world cartesian space. If the view has no spatial reference the returned coordinate will have NaN values. |
Retrieve the view's view state. | ||
GetViewState(const ArcGISElevationSource&) | Retrieve the elevation source's view state. | |
GetViewState(const ArcGISLayer&) | Retrieve the layer's view state. | |
Handle a platform low memory event. | ||
Sets the quotas for system and video memory that can be used by the ArcGISView. | ||
SetViewportProperties(uint32_t, uint32_t, float, float, float) | Sets the viewport size and field of view. Either field of view angle can be set to 0 to indicate "unset". For example, if verticalFieldOfViewDegrees is 0.0, but horizontalFieldOfViewDegrees is greater than zero, then the viewport vertical field of view will be set to the appropriate value given the horizontal FOV and distortion factor. And vice versa. | |
WorldToGeographic(FVector3d) | Transforms a world coordinate to a geographic coordinate in the spatial reference of the view. If the view has no spatial reference the returned coordinate will have NaN values. |
GeographicToWorld
FVector3d GeographicToWorld(const ArcGISPoint& geographicCoordinate) const
Transforms a geographic coordinate in a GCS or PCS to game engine world cartesian space. If the view has no spatial reference the returned coordinate will have NaN values.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
geographic | Yes | The geographic position in a GCS or PCS. |
Returns FVector3d
An FVector3d.
GetViewState
ArcGISViewState GetViewState() const
Retrieve the view's view state.
Since 1.0.0
Returns ArcGISViewState
An ArcGISViewState.
GetViewState
ArcGISElevationSourceViewState GetViewState(const ArcGISElevationSource& elevation) const
Retrieve the elevation source's view state.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
elevation | Yes | An elevation object to get the view state for. |
Returns ArcGISElevationSourceViewState
GetViewState
ArcGISLayerViewState GetViewState(const ArcGISLayer& layer) const
Retrieve the layer's view state.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
layer | Yes | A layer object to get the view state for. |
Returns ArcGISLayerViewState
HandleLowMemoryWarning
void HandleLowMemoryWarning()
Handle a platform low memory event.
Since 1.0.0
Returns void
SetMemoryQuotas
Sets the quotas for system and video memory that can be used by the ArcGISView.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
system | Yes | The system memory quota in MiB. | |
video | Yes | The video memory quota in MiB. |
Returns void
SetViewportProperties
void SetViewportProperties(uint32_t viewportWidthPixels, uint32_t viewportHeightPixels, float horizontalFieldOfViewDegrees, float verticalFieldOfViewDegrees, float verticalDistortionFactor)
Sets the viewport size and field of view. Either field of view angle can be set to 0 to indicate "unset". For example, if verticalFieldOfViewDegrees is 0.0, but horizontalFieldOfViewDegrees is greater than zero, then the viewport vertical field of view will be set to the appropriate value given the horizontal FOV and distortion factor. And vice versa.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
viewport | Yes | used in visible tile calculation, on the basis that DPI is 96. | |
viewport | Yes | used in visible tile calculation, on the basis that DPI is 96. | |
horizontal | Yes | A value in degrees. The valid range is 0 to 120. | |
vertical | Yes | A value in degrees. The valid range is 0 to 120. | |
vertical | Yes | Determines how much the vertical field of view is distorted. A distortion factor of 1.0 is default. A distortion factor less than 1.0 will cause the visuals to be stretched taller in comparison to their width. A distortion factor greater than 1.0 will cause the visuals to be shrunk shorter in comparison to their width. |
Returns void
WorldToGeographic
ArcGISPoint WorldToGeographic(FVector3d worldCoordinate) const
Transforms a world coordinate to a geographic coordinate in the spatial reference of the view. If the view has no spatial reference the returned coordinate will have NaN values.
Since 1.0.0
Arguments
Name | Type | Const | Summary |
---|---|---|---|
world | F | Yes | The game engine world coordinate. |
Returns ArcGISPoint
An ArcGISPoint.
Events
Name | Type | Summary |
---|---|---|
Elevation | Sets a callback to be invoked when the elevation source view state changes for the view. | |
Layer | Sets a callback to be invoked when the layer view state changes for the view. | |
Spatial | Sets a callback to be invoked when the View's spatial reference changes. | |
View | Sets a callback to be invoked when the view state changes for the view. |