Table of Contents

Class Coordinates

Namespace
SimpleWeather
Assembly
SimpleWeather.dll

Represents the coordinate payload returned from the OpenWeather current weather response.

public class Coordinates
Inheritance
Coordinates
Inherited Members

Constructors

Coordinates(JToken)

Initializes a new instance of the Coordinates class from raw JSON data.

public Coordinates(JToken data)

Parameters

data JToken

The JSON token containing the coordinate fields.

Properties

Latitude

City geo location, latitude

public double? Latitude { get; }

Property Value

double?

Longitude

City geo location, longitude

public double? Longitude { get; }

Property Value

double?