GeoCoordinate Constructor
Namespace: FolkerKinzel.VCards.ModelsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.1.0+9753915cd0f8006e7e5b4f62aa63aa3651006f06
public GeoCoordinate(
double latitude,
double longitude,
float? uncertainty = null
)
Public Sub New (
latitude As Double,
longitude As Double,
Optional uncertainty As Single? = Nothing
)
public:
GeoCoordinate(
double latitude,
double longitude,
Nullable<float> uncertainty = nullptr
)
new :
latitude : float *
longitude : float *
?uncertainty : Nullable<float32>
(* Defaults:
let _uncertainty = defaultArg uncertainty null
*)
-> GeoCoordinate
Parameters
- latitude Double
- Latitude (value between -90 and 90).
- longitude Double
- Longitude (value between -180 and 180).
- uncertainty NullableSingle (Optional)
- The amount of uncertainty in the location as a
value in meters, or null to leave this unspecified.