Namespace: GameEngine.View
Class: 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 | Summary |
---|---|---|
game | Specifies the client game engine type. | |
globe | Specifies the model used to represent a 3D globe. |
Properties
Property | Type | Nullable | Readonly | Summary |
---|---|---|---|---|
No | Yes | The attribution text for the data that is currently displayed in the ArcGISView. | ||
No | No | The current ArcGISCamera. | ||
No | Yes | The current draw status for the ArcGISView. | ||
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. |
AttributionText
string AttributionText
The attribution text for the data that is currently displayed in the ArcGISView.
Attribution text includes data providers or sources for layers and copyright text. The full attribution text is concatenated into a single string that is displayed in a banner along the bottom edge of the view.
ElevationProvider
ArcGISElevationProvider ElevationProvider
Manages the registration of positions that will get elevation updates.
SpatialReference
ArcGISSpatialReference SpatialReference
The current ArcGISSpatialReference that is defined by the layers of the ArcGISMap.
Methods
Signature | Return Type | Summary |
---|---|---|
double3 | 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. | ||
Retrieve the elevation source's view state. | ||
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. | ||
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(double3) | 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
double3 GeographicToWorld(ArcGISPoint geographicCoordinate)
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 | Summary |
---|---|---|
geographic | The geographic position in a GCS or PCS. |
Returns double3
An double3.
GetViewState
ArcGISViewState GetViewState()
Retrieve the view's view state.
Since 1.0.0
Returns ArcGISViewState
An ArcGISViewState.
GetViewState
ArcGISElevationSourceViewState GetViewState(ArcGISElevationSource elevation)
Retrieve the elevation source's view state.
Since 1.0.0
Arguments
Name | Type | Summary |
---|---|---|
elevation | An elevation object to get the view state for. |
Returns ArcGISElevationSourceViewState
GetViewState
ArcGISLayerViewState GetViewState(ArcGISLayer layer)
Retrieve the layer's view state.
Since 1.0.0
Arguments
Name | Type | Summary |
---|---|---|
layer | 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 | Summary |
---|---|---|
system | The system memory quota in MiB. The minimum allowed value is 500. If the value provided is < 0, an internally calculated quota will be used. | |
video | The video memory quota in MiB. The minimum allowed value is 500. If the value provided is < 0, an internally calculated quota will be used. |
Returns void
SetViewportProperties
void SetViewportProperties(uint viewportWidthPixels, uint 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 | Summary |
---|---|---|
viewport | used in visible tile calculation, on the basis that DPI is 96. | |
viewport | used in visible tile calculation, on the basis that DPI is 96. | |
horizontal | A value in degrees. The valid range is 0 to 120. | |
vertical | A value in degrees. The valid range is 0 to 120. | |
vertical | 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(double3 worldCoordinate)
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 | Summary |
---|---|---|
world | double3 | The game engine world coordinate. |
Returns ArcGISPoint
An ArcGISPoint.
Events
Name | Type | Summary |
---|---|---|
Attribution | Invokes the callback when the attribution text of the ArcGISView changes. | |
Draw | Sets a callback to be invoked when the draw status changes for the view. | |
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. |