Ich möchte Breite konvertieren 40,7127837, Länge -74,0059413 und dem folgenden FormatAndroid Wie Breite Länge in Grad-Format konvertieren
N 40 ° 42'46.0218" W 74 ° 0'21.3876"
Was ist der beste Weg, das zu tun?
Ich versuchte Methoden wie location.FORMAT_DEGREES, location.FORMAT_MINUTES und location.FORMAT_SECONDS, aber ich bin mir nicht sicher, wie Sie sie in das richtige Format konvertieren. Vielen Dank.
strLongitude = location.convert(location.getLongitude(), location.FORMAT_DEGREES);
strLatitude = location.convert(location.getLatitude(), location.FORMAT_DEGREES);
danke, es funktioniert super. – Julia