Usaremos la clase ExifInterface.
ExifInterface exifInterface = new ExifInterface(photoPath); float[] latLong = new float[2]; if (exifInterface.getLatLong(latLong)) { LatLng coords = new LatLng(latLong[0], latLong[1]); }
Compartir es bueno
Usaremos la clase ExifInterface.
ExifInterface exifInterface = new ExifInterface(photoPath); float[] latLong = new float[2]; if (exifInterface.getLatLong(latLong)) { LatLng coords = new LatLng(latLong[0], latLong[1]); }