Delphi XE5/Firemonkey を使用して Android デバイスで GPS 高度を取得しようとしています。
...
var
AltDbl : double;
...
with Sender as TCustomLocationSensor do
begin
//did this to bypass any possible problem with the ToString conversion
AltDbl := Altitude;
lbAltitude.Text := FormatFloat( '###0.0## Meters', AltDbl );
lbLatitude.Text := Latitude.ToString();
lbLongitude.Text := Longitude.ToString();
end;
緯度と経度は機能しますが、高度は「NAN」を返します。