GeographyPoint.Create 메서드 (CoordinateSystem, Double, Double, Nullable<Double>, Nullable<Double>)
지정된 좌표계, 위도, 경도 및 차원을 사용하여 지리 지점을 만듭니다.
네임스페이스: System.Spatial
어셈블리: System.Spatial(System.Spatial.dll)
구문
‘선언
Public Shared Function Create ( _
coordinateSystem As CoordinateSystem, _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
) As GeographyPoint
‘사용 방법
Dim coordinateSystem As CoordinateSystem
Dim latitude As Double
Dim longitude As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim returnValue As GeographyPoint
returnValue = GeographyPoint.Create(coordinateSystem, _
latitude, longitude, z, m)
public static GeographyPoint Create(
CoordinateSystem coordinateSystem,
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
public:
static GeographyPoint^ Create(
CoordinateSystem^ coordinateSystem,
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
static member Create :
coordinateSystem:CoordinateSystem *
latitude:float *
longitude:float *
z:Nullable<float> *
m:Nullable<float> -> GeographyPoint
public static function Create(
coordinateSystem : CoordinateSystem,
latitude : double,
longitude : double,
z : Nullable<double>,
m : Nullable<double>
) : GeographyPoint
매개 변수
- coordinateSystem
유형: System.Spatial.CoordinateSystem
사용할 좌표계입니다.
- latitude
유형: System.Double
위도입니다.
- longitude
유형: System.Double
경도입니다.
- z
유형: System.Nullable<Double>
z 차원입니다.
- m
유형: System.Nullable<Double>
m 차원입니다.
반환 값
유형: System.Spatial.GeographyPoint
만들어진 지리 지점입니다.