GeographyPosition Constructor (Double, Double, Nullable<Double>, Nullable<Double>)
Creates a new instance of the GeographyPosition class from components.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Sub New ( _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
)
'Usage
Dim latitude As Double
Dim longitude As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim instance As New GeographyPosition(latitude, _
longitude, z, m)
public GeographyPosition(
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
public:
GeographyPosition(
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
new :
latitude:float *
longitude:float *
z:Nullable<float> *
m:Nullable<float> -> GeographyPosition
public function GeographyPosition(
latitude : double,
longitude : double,
z : Nullable<double>,
m : Nullable<double>
)
Parameters
- latitude
Type: System.Double
The latitude portion of a position.
- longitude
Type: System.Double
The longitude portion of a position.
- z
Type: System.Nullable<Double>
The altitude portion of a position.
- m
Type: System.Nullable<Double>
The arbitrary measure associated with a position.