Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
What's wrong with just extracting the geolocation from the metadata and sending it through the API? Where are you getting stuck? – Tortoise Nov 6 '12 at 1:38
I guess I dont know how to begin. I could send you my source and you could look through it if you'd like? I think that would be the best way since it is such a vague question. – almyz125 Nov 6 '12 at 1:54

closed as not a real question by casperOne Nov 8 '12 at 17:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

1) Use ExifInterface (http://developer.android.com/reference/android/media/ExifInterface.html) to extract latitude and longitude information from the image file.

2) Use the Maps API in the Android Framework to display a map passing the lat/long info you extracted from step 1).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.