使用指定的緯度、經度和維度來建立地理點。
命名空間: System.Spatial
組件: System.Spatial (在 System.Spatial.dll 中)
語法
'宣告
Public Shared Function Create ( _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double) _
) As GeographyPoint
'用途
Dim latitude As Double
Dim longitude As Double
Dim z As Nullable(Of Double)
Dim returnValue As GeographyPoint
returnValue = GeographyPoint.Create(latitude, _
longitude, z)
public static GeographyPoint Create(
double latitude,
double longitude,
Nullable<double> z
)
public:
static GeographyPoint^ Create(
double latitude,
double longitude,
Nullable<double> z
)
static member Create :
latitude:float *
longitude:float *
z:Nullable<float> -> GeographyPoint
public static function Create(
latitude : double,
longitude : double,
z : Nullable<double>
) : GeographyPoint
參數
- latitude
型別:System.Double
緯度。
- longitude
型別:System.Double
經度。
- z
型別:System.Nullable<Double>
Z 維度。
傳回值
型別:System.Spatial.GeographyPoint
已建立的地理點。