Table of Contents

Class Color

Namespace
GoogleMapsApi.Entities.AirQuality.Response
Assembly
GoogleMapsApi.dll

An RGBA colour with components in the range [0, 1] (mirrors google.type.Color).

public sealed class Color
Inheritance
Color
Inherited Members

Properties

Alpha

Alpha (opacity), in the range [0, 1]. Often omitted, meaning fully opaque.

[JsonPropertyName("alpha")]
public float? Alpha { get; set; }

Property Value

float?

Blue

Blue component, in the range [0, 1].

[JsonPropertyName("blue")]
public float? Blue { get; set; }

Property Value

float?

Green

Green component, in the range [0, 1].

[JsonPropertyName("green")]
public float? Green { get; set; }

Property Value

float?

Red

Red component, in the range [0, 1].

[JsonPropertyName("red")]
public float? Red { get; set; }

Property Value

float?