我想获取拍摄图像的纬度和经度。我们可以使用MediaStore来获取纬度和经度。 由于MediaStore有以下两个变量:
/**
* The latitude where the image was captured.
* <P>Type: DOUBLE</P>
*/
public static final String LATITUDE = "latitude";
/**
* The longitude where the image was captured.
* <P>Type: DOUBLE</P>
*/
public static final String LONGITUDE = "longitude";
/**
如何获得这些价值。