Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Erstellt einen Geografiepunkt unter Verwendung der Angaben für Koordinatensystem, Breite, Länge und Dimensionen.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Shared Function Create ( _
coordinateSystem As CoordinateSystem, _
latitude As Double, _
longitude As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
) As GeographyPoint
'Usage
Dim coordinateSystem As CoordinateSystem
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(coordinateSystem, _
latitude, longitude, z, m)
public static GeographyPoint Create(
CoordinateSystem coordinateSystem,
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
public:
static GeographyPoint^ Create(
CoordinateSystem^ coordinateSystem,
double latitude,
double longitude,
Nullable<double> z,
Nullable<double> m
)
static member Create :
coordinateSystem:CoordinateSystem *
latitude:float *
longitude:float *
z:Nullable<float> *
m:Nullable<float> -> GeographyPoint
public static function Create(
coordinateSystem : CoordinateSystem,
latitude : double,
longitude : double,
z : Nullable<double>,
m : Nullable<double>
) : GeographyPoint
Parameter
- coordinateSystem
Typ: System.Spatial.CoordinateSystem
Das zu verwendende Koordinatensystem.
- latitude
Typ: System.Double
Die Breite.
- longitude
Typ: System.Double
Die Länge.
- z
Typ: System.Nullable<Double>
Die z-Dimension.
- m
Typ: System.Nullable<Double>
Die m-Dimension.
Rückgabewert
Typ: System.Spatial.GeographyPoint
Der erstellte Geografiepunkt.