ILatLongReport::GetLatitude method
Retrieves the latitude, in degrees. The latitude is between -90 and 90, where north is positive.
Syntax
HRESULT GetLatitude( [out] DOUBLE *pLatitude );
Parameters
- pLatitude [out]
-
Address of a DOUBLE that receives the latitude.
Return value
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Examples
The following example demonstrates how to call GetLatitude.
DOUBLE latitude = 0; // Print the Latitude if (SUCCEEDED(spLatLongReport->GetLatitude(&latitude))) { wprintf(L"Latitude: %f\n", latitude); }
Requirements
|
Minimum supported client | Windows 7 [desktop apps only] |
|---|---|
|
Minimum supported server | None supported [desktop apps only] |
|
Client | Windows 7 |
|
Header |
|
|
DLL |
|
See also
Send comments about this topic to Microsoft
Build date: 10/27/2012