Méthode GeographyPoint.Create (Double, Double, Nullable<Double>, Nullable<Double>)
Crée un point géographique à l'aide de la latitude, de la longitude et des dimensions spécifiées.
Espace de noms : System.Spatial
Assembly : System.Spatial (en System.Spatial.dll)
Syntaxe
'Déclaration
Public Shared Function Create ( _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
) As GeographyPoint
'Utilisation
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(latitude, _
longitude, z, m)
public static GeographyPoint Create(
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
public:
static GeographyPoint^ Create(
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
static member Create :
latitude:float *
longitude:float *
z:Nullable<float> *
m:Nullable<float> -> GeographyPoint
public static function Create(
latitude : double,
longitude : double,
z : Nullable<double>,
m : Nullable<double>
) : GeographyPoint
Paramètres
- latitude
Type : System.Double
Latitude.
- longitude
Type : System.Double
Longitude.
- z
Type : System.Nullable<Double>
Dimension z.
- m
Type : System.Nullable<Double>
Dimension m.
Valeur de retour
Type : System.Spatial.GeographyPoint
Point géographique créé.