GeoPoint コンストラクター

定義

オーバーロード

GeoPoint(GeoPosition)

の新しいインスタンスを GeoPoint初期化します。

GeoPoint(Double, Double)

の新しいインスタンスを GeoPoint初期化します。

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

の新しいインスタンスを GeoPoint初期化します。

GeoPoint(Double, Double, Nullable<Double>)

の新しいインスタンスを GeoPoint初期化します。

GeoPoint(GeoPosition)

ソース:
GeoPoint.cs

の新しいインスタンスを 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)

パラメーター

position
GeoPosition

ポイントの位置。

適用対象

GeoPoint(Double, Double)

ソース:
GeoPoint.cs

の新しいインスタンスを 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)

パラメーター

longitude
Double

ポイントの経度。

latitude
Double

ポイントの緯度。

適用対象

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

ソース:
GeoPoint.cs

の新しいインスタンスを 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))

パラメーター

position
GeoPosition

ポイントの位置。

boundingBox
GeoBoundingBox

使用する GeoBoundingBox

customProperties
IReadOnlyDictionary<String,Object>

に関連付けられているカスタム プロパティの GeoObjectセット。

適用対象

GeoPoint(Double, Double, Nullable<Double>)

ソース:
GeoPoint.cs

の新しいインスタンスを 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))

パラメーター

longitude
Double

ポイントの経度。

latitude
Double

ポイントの緯度。

altitude
Nullable<Double>

ポイントの高度。

適用対象