I am using the google maps api, and would like to mark location on a map based on image received from pictures taken with Exif data. Would does anyone have an example on how to do this?
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
// FILE Manager
filemanagerstring = selectedImageUri.getPath();
// MEDIA GALLERY
selectedImagePath = getPath(selectedImageUri);
// DEBUG PURPOSE - you can delete this if you want
if (selectedImagePath != null)
System.out.println(selectedImagePath);
else
System.out.println("selectedImagePath is null");
if (filemanagerstring != null)
System.out.println(filemanagerstring);
else
System.out.println("filemanagerstring is null");
// NOW WE HAVE OUR WANTED STRING
// gallery was used
if (selectedImagePath != null) {
visibilitySwitch();
iv.setImageURI(selectedImageUri);
try {
exifInterface = new ExifInterface(filemanagerstring);
String exif = "";
float[] LatLong = new float[2];
if (exifInterface.getLatLong(LatLong)) {
exif += "\n saved latitude= " + LatLong[0];
exif += "\n saved longitude= " + LatLong[1];
} else {
exif += "Exif tags are not available!";
}
Toast.makeText(getApplicationContext(), exif,
Toast.LENGTH_LONG).show();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out
.println("selectedImagePath is the right one for you!");
}
// file manager was used
else {
visibilitySwitch();
iv.setImageURI(selectedImageUri);
try {
exifInterface = new ExifInterface(filemanagerstring);
String exif = "";
float[] LatLong = new float[2];
if (exifInterface.getLatLong(LatLong)) {
exif += "\n saved latitude= " + LatLong[0];
exif += "\n saved longitude= " + LatLong[1];
} else {
exif += "Exif tags are not available!";
}
Toast.makeText(getApplicationContext(), exif,
Toast.LENGTH_LONG).show();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out
.println("filemanagerstring is the right one for you!");
}
}
}
}
Just as of now i'm trying to get the data read from the picture and displayed in a toast, and its not working. Any thoughts?