GeoCoordinates Constructors

Definition

Overloads

GeoCoordinates()

Initializes a new instance of the GeoCoordinates class.

GeoCoordinates(Nullable<Double>, Nullable<Double>, Nullable<Double>, String, String)

Initializes a new instance of the GeoCoordinates class.

GeoCoordinates()

Initializes a new instance of the GeoCoordinates class.

public GeoCoordinates ();
Public Sub New ()

Applies to

GeoCoordinates(Nullable<Double>, Nullable<Double>, Nullable<Double>, String, String)

Initializes a new instance of the GeoCoordinates class.

public GeoCoordinates (double? elevation = default, double? latitude = default, double? longitude = default, string type = default, string name = default);
new Microsoft.Bot.Schema.GeoCoordinates : Nullable<double> * Nullable<double> * Nullable<double> * string * string -> Microsoft.Bot.Schema.GeoCoordinates
Public Sub New (Optional elevation As Nullable(Of Double) = Nothing, Optional latitude As Nullable(Of Double) = Nothing, Optional longitude As Nullable(Of Double) = Nothing, Optional type As String = Nothing, Optional name As String = Nothing)

Parameters

elevation
Nullable<Double>

Elevation of the location WGS 84.

latitude
Nullable<Double>

Latitude of the location WGS 84.

longitude
Nullable<Double>

Longitude of the location WGS 84.

type
String

The type of the thing.

name
String

The name of the thing.

Applies to