dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

SunnyWeather Class

The SunnyWeather class allows you to change the weather conditions in the scene to sunny weather.
ArcGIS Maps SDK for JavaScript

public class SunnyWeather : 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 🡒 SunnyWeather

Implements IEnvironmentWeather, IMapComponent, ISceneViewEnvironmentWeather

Constructors

SunnyWeather() Constructor

Parameterless constructor for use as a Razor Component.

public SunnyWeather();

SunnyWeather(Nullable) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public SunnyWeather(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

SunnyWeather.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

SunnyWeather.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>>

SunnyWeather.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.

Returns

System.Threading.Tasks.Task