GeographyPoint.Create Method (Double, Double, Nullable<Double>)
Creates a geography point using the specified latitude, longitude and dimension.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Shared Function Create ( _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double) _
) As GeographyPoint
'Usage
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
Parameters
- latitude
Type: System.Double
The latitude.
- longitude
Type: System.Double
The longitude.
- z
Type: System.Nullable<Double>
The z dimension.
Return Value
Type: System.Spatial.GeographyPoint
The geography point that was created.