GlobeView.SurfaceBackground Property
Gets or sets the background color of the surface textures.
Syntax
public System.Drawing.Color SurfaceBackground { get; set; }
Property Value
Default: White, R: 255 G: 255 B: 255
The background color of the surface textures.
Remarks
This property sets the background color of the surface textures. This color will be visible on the ground where it is not covered by rendered features from the SurfaceLayers.
The surfaceBackground will not be alpha blended, meaning that it is not possible to have a semi-transparent globe. If the alpha value is below 128, however, the globe surface will be fully transparent in places where it is not covered by the surface layers.
Example
// Set the SurfaceBackground to dark blue. This will reflect water
public static void SetSurfaceBackgroundToDarkBlue(GlobeView globeView)
{
// Set the SurfaceBackground to dark blue
globeView.SurfaceBackground = Color.DarkBlue;
}
Platforms
Windows, Linux, Android