GlobeView.AuxiliaryGroundInput Property
Gets or sets an input operator used to read auxiliary ground meshes.
Syntax
public Operator AuxiliaryGroundInput { get; set; }
Property Value
Remarks
This input can be used to replace the ground normally loaded for the globe with your own ground meshes. A typical use case is to load detailed city models in a custom dataset or geopackage created using MapPackageModelWriter, and let those models replace the normal ground meshes.
Two types of features are allowed: meshes and polygons. If other types are read, an exception will be thrown.
Meshes will simply be added to the ground tiles and rendered together with each tile. The meshes will be reprojected to WGS84 longitude/latitude; the Z coordinate should be height above sea level, in meters. No automatic clipping will be done; use a RectangleClipOperator or call GeometryClipper.ClipMesh in your custom dataset to clip the meshes if necessary.
Polygons received will be interpreted as coverage polygons, and used to clip away the normal ground for the covered area. Otherwise low-resolution triangles from the normal ground may cut through and hide parts of the detailed meshes.
Auxiliary ground will be considered by methods like Elevation and GroundAt. Also, OrdinaryLayer with OrdinaryLayer.GroundRelative set will use auxiliary ground to elevate its features. Note though that performance may suffer if these functions are used too frequently.
Platforms
Windows, Linux, Android