Megosztás a következőn keresztül:


GeoPoint Constructors

Definition

Overloads

GeoPoint(GeoPosition)

Initializes new instance of GeoPoint.

GeoPoint(Double, Double)

Initializes new instance of GeoPoint.

GeoPoint(GeoPosition, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Initializes new instance of GeoPoint.

GeoPoint(Double, Double, Nullable<Double>)

Initializes new instance of GeoPoint.

GeoPoint(GeoPosition)

Source:
GeoPoint.cs

Initializes new instance of GeoPoint.

public GeoPoint (Azure.Core.GeoJson.GeoPosition position);
new Azure.Core.GeoJson.GeoPoint : Azure.Core.GeoJson.GeoPosition -> Azure.Core.GeoJson.GeoPoint
Public Sub New (position As GeoPosition)

Parameters

position
GeoPosition

The position of the point.

Applies to

GeoPoint(Double, Double)

Source:
GeoPoint.cs

Initializes new instance of GeoPoint.

public GeoPoint (double longitude, double latitude);
new Azure.Core.GeoJson.GeoPoint : double * double -> Azure.Core.GeoJson.GeoPoint
Public Sub New (longitude As Double, latitude As Double)

Parameters

longitude
Double

The longitude of the point.

latitude
Double

The latitude of the point.

Applies to

GeoPoint(GeoPosition, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Source:
GeoPoint.cs

Initializes new instance of GeoPoint.

public GeoPoint (Azure.Core.GeoJson.GeoPosition position, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary<string,object?> customProperties);
new Azure.Core.GeoJson.GeoPoint : Azure.Core.GeoJson.GeoPosition * Azure.Core.GeoJson.GeoBoundingBox * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Azure.Core.GeoJson.GeoPoint
Public Sub New (position As GeoPosition, boundingBox As GeoBoundingBox, customProperties As IReadOnlyDictionary(Of String, Object))

Parameters

position
GeoPosition

The position of the point.

boundingBox
GeoBoundingBox

The GeoBoundingBox to use.

customProperties
IReadOnlyDictionary<String,Object>

The set of custom properties associated with the GeoObject.

Applies to

GeoPoint(Double, Double, Nullable<Double>)

Source:
GeoPoint.cs

Initializes new instance of GeoPoint.

public GeoPoint (double longitude, double latitude, double? altitude);
new Azure.Core.GeoJson.GeoPoint : double * double * Nullable<double> -> Azure.Core.GeoJson.GeoPoint
Public Sub New (longitude As Double, latitude As Double, altitude As Nullable(Of Double))

Parameters

longitude
Double

The longitude of the point.

latitude
Double

The latitude of the point.

altitude
Nullable<Double>

The altitude of the point.

Applies to