GlobeView Class
A controller class for a 3D map presentation on a round earth.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class GlobeView : View
Remarks
A GlobeView is used to present a 3D map. It uses a spherical model model of the earth, and if you zoom out far enough, the entire globe will become visible.
![]() |
The ground is loaded asynchronously, and cached in tiles of various sizes and scales. The number of background threads used to load the elevation data is determined by the selected TileLoadingPolicy. Each tile consists of an elevation mesh constructed from elevation rasters read from ElevationInput, and a surface texture created by rasterizing a 2D map, with features read from SurfaceLayers. The tiling mechanism is automatic, there is no need to add extra tile layers.
To make GlobeView operate properly and with good performance it is essential that the ElevationInput and SurfaceLayers can handle requests for data at all resolutions. The first tile loaded will typically be very large, but with very low resolution; if the data sources can't handle such a low resolution, the first tiles may take a very long time to load.
For the elevation data it is recommended to use Overviews on the data set to let it generate low-resolution overviews. The JPEG 2000 and ECW datasets will also work well since they can provide low-resolution data directly from the source files. If you have several different datasets for different resolutions, for instance DTED level 0, 1 and 2, it is recommended that you use a LevelOfDetailOperator, possibly in combination with raster caches for the individual datasets.
The surface layers can be configured just like in 2D; using a combination of min and max scales on the layers, and LevelOfDetailOperator. Just make sure that the layers are turned off when zoomed out far, or the first large tile may take a very long time to load. Note that the scale that is used when requesting data from the surface layers is not an absolute scale value (since there is no such thing in a 3D view). However, the layer tries to calculate a scale value that should match a tile of about the same screen area in a 2D view.
If ElevationInput or SurfaceLayers contains a CustomOperatorProxy with a custom operator implementation then the elevation and/or surface layers will be loaded on a single background thread and not use the task based scheduler to load multiple tiles in parallel.
The Layers property is used only for displaying application data. Static application layers are best put under a GlobeTileLayer which will provide the best caching and performance. Dynamic objects can also be cached, by setting OrdinaryLayer.CacheMode to Dynamic.
The coordinate reference system used is always Crs.Wgs84LongLat; elevations are specified in meters above sea level. You may use application data in different reference systems, but for performance reason you should use Crs.Wgs84LongLat for your datasets whenever possible.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
View
GlobeView
Platforms
Windows, Linux, Android
GlobeView Members
The GlobeView type has the following members.
Constructors
Name | Description |
---|---|
GlobeView | Initializes a new instance of the GlobeView class with the given drawable. |
Properties
Name | Description |
---|---|
AnimationsEnabled | Gets or sets a value that determines whether the GlobeView will render animated visualizations. Inherited from View |
Atmosphere | Gets or sets a value specifying how the atmosphere should be rendered. |
AuxiliaryGroundInput | Gets or sets an input operator used to read auxiliary ground meshes. |
CachePath | Gets or sets the path to a directory on disk where tile elevation and surface textures are cached. |
CacheSize | Gets or sets the maximum amount of disk space used by the disk cache. |
CameraAngle | Gets or sets the angle of the view. |
CameraBearing | Gets or sets the horizontal direction of the camera. |
CameraPitch | Gets or sets the vertical direction of the camera. |
CameraPoint | Gets or sets the camera position. |
CameraProjectOverlay | Gets or sets parameters that control a camera projection in the view. |
CameraRoll | Gets or sets the roll angle of the camera. |
Constraints | Gets or sets the constraints that are used by the GlobeView. Inherited from View |
Description | Gets or sets a short description of the view. Inherited from View |
DisplayName | Gets or sets a display name for the view. Inherited from View |
DisplayStatistics | Enables or disables statistics. Inherited from View |
Drawable | Gets or sets the drawing area that the map will be presented at. Inherited from View |
Effects | List of effects Inherited from View |
EffectsEnabled | Gets or sets a flag that enables or disables effects for the whole configuration. Inherited from View |
ElevationInput | Gets or sets the input operator used to read elevation rasters. |
ElevationResolution | Gets or sets a value adjusting the resolution of the ground mesh. |
ExtraTileLevels | Gets or sets a value specifying how detailed tiles the GlobeView should load. |
GeocentricCameraAheadVector | Gets the current camera vector in the internal geocentric coordinate system. |
GeocentricCameraPoint | Gets the current camera position in the internal geocentric coordinate system. |
GeocentricCameraUpVector | Gets the current camera vector in the internal geocentric coordinate system. |
GroundEffects | List of effects that will be applied to the ground meshes. |
Hover | Gets or sets the identity of the currently hovered feature. Inherited from View |
HoverPlot | Gets or sets the identity of the currently hovered plot. Inherited from View |
IsDisposed | Gets a value that tells whether the current GlobeView has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the view. Inherited from View |
Layers | Gets the list of layers to be drawn in the view. Inherited from View |
Legend | Gets or sets a map legend associated with this view. Inherited from View |
LineOfSightOverlay | Gets or sets parameters that control a line of sight analysis overlay in the view. |
Name | Gets or sets the name of the GlobeView. Inherited from ResourceObject |
NamedStyles | Gets the list of named styles that can be enabled for the view. Inherited from View |
NativeHandle | Gets the native Carmenta Engine kernel object the current GlobeView represents. Inherited from EngineObject |
RenderingHint | Gets or sets hints to improve rendering in some situations. Inherited from View |
SunPosition | Gets or sets the position of the sun, used in 3D and by some operators. Inherited from View |
SurfaceBackground | Gets or sets the background color of the surface textures. |
SurfaceLayers | Gets the collection of surface layers that are rasterized into ground textures. |
SurfaceMaterial | Gets or sets the material controlling how sunlight affects the visualization of the ground meshes. |
SurfaceOverlay | Gets or sets parameters for dynamic layers used as overlays on the ground mesh. |
SurfacePixelSizeAdjustments | Gets or sets a factor to scale the size of objects rendered on SurfaceLayers. |
SurfaceResolution | Gets or sets a value adjusting the resolution of the surface textures. |
TerrainWarningOverlay | Gets or sets parameters that control a terrain warning overlay in the view. Inherited from View |
TileLoadingPolicy | Gets or sets a value that determines whether tiles are loaded in parallel or one by one. |
UpdateAttributes | Gets an AttributeSet defining application-specific update attributes. Inherited from View |
UpdateEnabled | Gets or sets a flag that enables or disables view updates. Inherited from View |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Methods
Name | Description |
---|---|
AreaForFeature | Computes a view area that is suitable for displaying the given feature. Inherited from View |
AreaForFeatures | Overloaded. Computes a view area that is suitable for displaying the given features. Inherited from View |
Clone | Creates a copy of an object. Inherited from EngineObject |
CrsToPixel | Overloaded. Transforms a position in the coordinate reference system of the View to a drawable position. Inherited from View |
Deselect | Overloaded. Deselects one or more features or plots in this view and updates affected areas. Inherited from View |
DeselectAll | Clears all features and plots from the current selection and updates the view. Inherited from View |
DisableThreadAccessVerification | Disables the thread access verifier for the view. Inherited from View |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Elevation | Returns the ground elevation (z-value) at the specified geographic 2D position. |
EnableStyle | Enables or disables a named style for the view. Inherited from View |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
FindChildObject | Overloaded. Finds the child object with the specified name. Inherited from View |
FlushCache | Flushes caches in the view. Inherited from View |
FlushDiskCache | Removes all cached tiles from the disk cache. |
FlushLayersContainingObject | Calls Layer.FlushCache on all child layers that contains the object. Inherited from View |
Overloaded. Converts a point expressed in the geocentric Cartesian coordinate system to longitude, latitude and elevation. | |
GetChildObjects | Overloaded. Gets the child objects of the current object. Inherited from View |
GetDataBounds | Calculates the bounds of all dataset coverages in the view. Inherited from View |
GetLocalizedDescription | Gets a localized version of the view description in a specific language. Inherited from View |
GetLocalizedDisplayName | Gets a localized version of the view display name in a specific language. Inherited from View |
GetLocalizedIsoMetadataDocument | Gets the path to an ISO 19139 metadata document for a specific language. Inherited from View |
GetSelectedIds | Returns a collection that contains the identities of all selected features. Inherited from View |
GetSelectedPlotIds | Returns a collection that contains the identities of all selected plots. Inherited from View |
GroundAt | Overloaded. Returns the coordinates of the ground position that is presented at the specified drawable position. |
HasLocalizedDescription | Checks if a localized version of the view description is available in a specific language. Inherited from View |
HasLocalizedDisplayName | Checks if a localized version of the view display name is available in a specific language. Inherited from View |
HasLocalizedIsoMetadataDocument | Checks if an ISO 19139 metadata document is available for a specific language. Inherited from View |
IntersectGround | Finds the intersection between a ray and the world geometry. |
IsStyleEnabled | Checks if a certain style is enabled for the view or not. Inherited from View |
PixelToCrs | Overloaded. Transforms a drawable position to the corresponding position in the coordinate reference system of the View. Inherited from View |
PointAtGroundHeight | Overloaded. Gets the coordinates for a specified point and height. |
PointAtHeight | Overloaded. Gets the coordinates for a specified point and height. |
Select | Overloaded. Selects one or more features or plots in this View and updates affected areas. Inherited from View |
SetLocalizedDescription | Sets a view description in a specific language. Inherited from View |
SetLocalizedDisplayName | Sets a view display name in a specific language. Inherited from View |
SetLocalizedIsoMetadataDocument | Sets the path to an ISO 19139 metadata document for the view, for a specific language. Inherited from View |
SetToolTimerSettings | Required when making a MapControl. implementing IToolTimerSink. Inherited from View |
SetViewUpdateSettings | Required when making a MapControl. Inherited from View |
Overloaded. Converts a camera position in geographic coordinates geocentric Cartesian coordinates. | |
Update | Overloaded. Updates the map presentation. Inherited from View |
UpdateByMapControl | A MapControl calls this when it has received a UpdateRequired event and wants to repaint the map window. Inherited from View |
WhatsAt | Overloaded. Finds features presented at the specified window position. Inherited from View |
WhatsIn | Overloaded. Finds features presented in the specified window rectangle. Inherited from View |
Events
Name | Description |
---|---|
AreaChanged | Occurs when the view area has been changed. Inherited from View |
Busy | Occurs when the view is busy drawing or loading data. Inherited from View |
CustomDraw | Occurs at the end of each update cycle, but before the drawable swaps its front and back buffers. Inherited from View |
CustomDrawBackground | Occurs at the beginning of each update cycle, right after the drawable is cleared. Inherited from View |
HoverChanged | Occurs when the Hover property has been modified. Inherited from View |
Idle | Occurs after an update when all data has been loaded. Inherited from View |
SelectionChanged | Occurs when the list of selected features has been modified. Inherited from View |
ToolTimerElapsed | Sent to the MapControl that the view belongs to when a tool should be notified. Inherited from View |
Updated | Occurs at the end of each update cycle. Inherited from View |
UpdateRequired | Sent to the MapControl that the view belongs to when an update of the view is required. Inherited from View |
Updating | Occurs at the beginning of each update cycle. Inherited from View |