Point Method (Double, Double, Nullable(Double), Nullable(Double))

Creates a geographic point.

Namespace:  System.Spatial
Assembly:  System.Spatial (in System.Spatial.dll)

Syntax

'Declaration
Public Shared Function Point ( _
    latitude As Double, _
    longitude As Double, _
    z As Nullable(Of Double), _
    m As Nullable(Of Double) _
) As GeographyFactory(Of GeographicPoint)
'Usage
Dim latitude As Double
Dim longitude As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim returnValue As GeographyFactory(Of GeographicPoint)

returnValue = GeographyFactory.Point(latitude, _
    longitude, z, m)
public static GeographyFactory<GeographicPoint> Point(
    double latitude,
    double longitude,
    Nullable<double> z,
    Nullable<double> m
)
public:
static GeographyFactory<GeographicPoint^>^ Point(
    double latitude, 
    double longitude, 
    Nullable<double> z, 
    Nullable<double> m
)
static member Point : 
        latitude:float * 
        longitude:float * 
        z:Nullable<float> * 
        m:Nullable<float> -> GeographyFactory<GeographicPoint> 
public static function Point(
    latitude : double, 
    longitude : double, 
    z : Nullable<double>, 
    m : Nullable<double>
) : GeographyFactory<GeographicPoint>

Parameters

Return Value

Type: System.Spatial..::..GeographyFactory< (Of < ( <'GeographicPoint> ) > ) >
A geographic point factory.

See Also

Reference

GeographyFactory Class

Point Overload

System.Spatial Namespace