建立指定的緯度。
命名空間: System.Spatial
組件: System.Spatial (在 System.Spatial.dll 中)
語法
'宣告
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
'用途
Dim coordinateSystem As CoordinateSystem
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim returnValue As GeometryPoint
returnValue = GeometryPoint.Create(coordinateSystem, _
x, y, z, m)
public static GeometryPoint Create(
CoordinateSystem coordinateSystem,
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
public:
static GeometryPoint^ Create(
CoordinateSystem^ coordinateSystem,
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
static member Create :
coordinateSystem:CoordinateSystem *
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> GeometryPoint
public static function Create(
coordinateSystem : CoordinateSystem,
x : double,
y : double,
z : Nullable<double>,
m : Nullable<double>
) : GeometryPoint
參數
- coordinateSystem
型別:System.Spatial.CoordinateSystem
要使用的座標系統。
- x
型別:System.Double
X 維度。
- y
型別:System.Double
Y 維度。
- z
型別:System.Nullable<Double>
Z 維度。
- m
型別:System.Nullable<Double>
M 維度。
傳回值
型別:System.Spatial.GeometryPoint
已建立的 GeographyPoint。