dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
CloudyWeather Class
The CloudyWeather class allows you to change the weather conditions in the scene to cloudy weather.
ArcGIS Maps SDK for JavaScript
public class CloudyWeather : dymaptic.GeoBlazor.Core.Components.MapComponent,
dymaptic.GeoBlazor.Core.Interfaces.IEnvironmentWeather,
dymaptic.GeoBlazor.Core.Interfaces.IMapComponent,
dymaptic.GeoBlazor.Core.Interfaces.ISceneViewEnvironmentWeather
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 CloudyWeather
Implements IEnvironmentWeather, IMapComponent, ISceneViewEnvironmentWeather
Constructors
CloudyWeather() Constructor
Parameterless constructor for use as a Razor Component.
public CloudyWeather();
CloudyWeather(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public CloudyWeather(System.Nullable<double> cloudCover=null);
Parameters
cloudCover
System.Nullable<System.Double>
Specifies the amount of cloud cover in the sky for a certain weather type.
default 0.5
ArcGIS Maps SDK for JavaScript
Properties
CloudyWeather.CloudCover Property
Specifies the amount of cloud cover in the sky for a certain weather type.
default 0.5
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> CloudCover { get; set; }
Property Value
System.Nullable<System.Double>
Methods
CloudyWeather.GetCloudCover() Method
Asynchronously retrieve the current value of the CloudCover property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetCloudCover();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
CloudyWeather.SetCloudCover(Nullable) Method
Asynchronously set the value of the CloudCover property after render.
public System.Threading.Tasks.Task SetCloudCover(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.