PictureSelector icon indicating copy to clipboard operation
PictureSelector copied to clipboard

LocalMedia 能否增加位置信息?经纬度信息

Open lovehahazy opened this issue 4 years ago • 1 comments

Current use version?

当前使用的版本是多少?

v3.0.9

有了这个信息,可以做很多的后续业务。麻烦考虑一下

lovehahazy avatar Apr 08 '22 00:04 lovehahazy

我是这么获取的,使用版本v2.7.3-rc07

 ExifInterface exifInterface = null;
      try {
        exifInterface = new ExifInterface(localMedia.getRealPath());
        double[] latLon = exifInterface.getLatLong();
        if (latLon != null && latLon.length >= 2) {
          mediaFile.latitude = latLon[0];
          mediaFile.longitude = latLon[1];
        }
      } catch (Exception e) {
        e.printStackTrace();
      }

slowlow79464 avatar Jun 21 '22 01:06 slowlow79464