次の方法で共有


BasicGeoposition 構造体

定義

地理的位置を表す基本情報。

public value class BasicGeoposition
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
struct BasicGeoposition
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public struct BasicGeoposition
var basicGeoposition = {
latitude : /* Your value */,
longitude : /* Your value */,
altitude : /* Your value */
}
Public Structure BasicGeoposition
継承
BasicGeoposition
属性

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)
アプリの機能
location

フィールド

Altitude

地理的位置の高度をメートル単位で指定します。

注意

このフィールドは、この BasicGeoPosition (GeopointAltitudeReferenceSystem プロパティなど) を使用して作成したクラスの高度参照システムを設定した場合にのみ有効です。

Latitude

地理的位置の緯度。 緯度値の有効な範囲は-90.0 ~ 90.0 度です。

Longitude

地理的位置の経度。 任意の値が可能です。 180.0 以下の値または 180.0 より大きい値の場合は、値を使用する前に適切にラップして格納できます。 たとえば、経度 183.0 度は -177.0 度になります。

適用対象