GeoCoordinate Constructor
Namespace: FolkerKinzel.VCards.ModelsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.0.1+a91cc3f0fd39aeb548e16006a60ca9dd10a304a2
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.