GeometryPoint.Create 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Create(Double, Double)
Create(Double, Double, Nullable<Double>)
建立指定的緯度。
public static Microsoft.Spatial.GeometryPoint Create(double x, double y, double? z);
static member Create : double * double * Nullable<double> -> Microsoft.Spatial.GeometryPoint
Public Shared Function Create (x As Double, y As Double, z As Nullable(Of Double)) As GeometryPoint
參數
- x
- Double
X 維度。
- y
- Double
Y 維度。
傳回
已建立的 GeographyPoint。
適用於
Create(Double, Double, Nullable<Double>, Nullable<Double>)
建立指定的緯度。
public static Microsoft.Spatial.GeometryPoint Create(double x, double y, double? z, double? m);
static member Create : double * double * Nullable<double> * Nullable<double> -> Microsoft.Spatial.GeometryPoint
Public Shared Function Create (x As Double, y As Double, z As Nullable(Of Double), m As Nullable(Of Double)) As GeometryPoint
參數
- x
- Double
X 維度。
- y
- Double
Y 維度。
傳回
已建立的 GeographyPoint。
適用於
Create(CoordinateSystem, Double, Double, Nullable<Double>, Nullable<Double>)
建立指定的緯度。
public static Microsoft.Spatial.GeometryPoint Create(Microsoft.Spatial.CoordinateSystem coordinateSystem, double x, double y, double? z, double? m);
static member Create : Microsoft.Spatial.CoordinateSystem * double * double * Nullable<double> * Nullable<double> -> Microsoft.Spatial.GeometryPoint
Public Shared Function Create (coordinateSystem As CoordinateSystem, x As Double, y As Double, z As Nullable(Of Double), m As Nullable(Of Double)) As GeometryPoint
參數
- coordinateSystem
- CoordinateSystem
要使用的座標系統。
- x
- Double
X 維度。
- y
- Double
Y 維度。
傳回
已建立的 GeographyPoint。