Delphi Android プログラミングを使用して、モバイル デバイスで GPS/glonas/baido 衛星から現在の日時を取得するにはどうすればよいですか?
現時点では、位置センサーから経度と緯度を取得できます。
procedure TForm1.LocationSensor1LocationChanged(Sender: TObject;
const OldLocation, NewLocation: TLocationCoord2D);
var
LDecSeparator: String;
begin
LDecSeparator := FormatSettings.DecimalSeparator;
FormatSettings.DecimalSeparator := '.';
// Show current location
ListBoxItemLatitude.ItemData.Detail := Format('%2.6f', [NewLocation.Latitude]);
ListBoxItemLongitude.ItemData.Detail := Format('%2.6f', [NewLocation.Longitude]);
end;
時間的には GSM ネットワークを使用する方が簡単なのはわかっていますが、私のケースではモバイル ネットワークを利用できません。
これはまったく可能ですか?