GlobeView.GlobeView Constructor
Initializes a new instance of the GlobeView class with the given drawable.
GlobeView(Drawable drawable)
Initializes a new instance of the GlobeView class with the given drawable.Syntax
public GlobeView (
Drawable drawable
)
Parameters
drawable
Type: Drawable
The drawable that the view is to be presented at.
The drawable that the view is to be presented at.
Example
// Create a new GlobeView and set the given ElevationInput, SurfaceLayers and layers
public static GlobeView CreateGlobeView(
DataSet elevationInput, LayerCollection surfaceLayers, LayerCollection layers)
{
// Create a new GlobeView with a BitmapDrawable
GlobeView newGlobeView = new GlobeView(new BitmapDrawable(400, 400));
// Set the ElevationInput into the new GlobeView
newGlobeView.ElevationInput = new ReadOperator(elevationInput);
// Set the SurfaceLayers into the new GlobeView
newGlobeView.SurfaceLayers.AddRange(surfaceLayers);
// Set the Layers into the new GlobeView
newGlobeView.Layers.AddRange(layers);
// Return the new GlobeView
return newGlobeView;
}
Platforms
Windows, Linux, Android