GeometryPoint.Create 메서드 (CoordinateSystem, Double, Double, Nullable<Double>, Nullable<Double>)
지정된 위도를 만듭니다.
네임스페이스: 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입니다.