From 0dcb96d56546caf6fe52d63c3688891d892ce5d9 Mon Sep 17 00:00:00 2001 From: tibbi Date: Tue, 2 Jul 2019 14:01:59 +0200 Subject: [PATCH] renaming some variables --- .../pro/activities/ViewPagerActivity.kt | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/ViewPagerActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/ViewPagerActivity.kt index e6418911f..7c4738ded 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/ViewPagerActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/ViewPagerActivity.kt @@ -702,31 +702,31 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View } private fun showOnMap() { - val exif: ExifInterface - try { - exif = ExifInterface(getCurrentPath()) + val exif = try { + ExifInterface(getCurrentPath()) } catch (e: Exception) { showErrorToast(e) return } - val lat = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE) - val lat_ref = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE_REF) - val lon = exif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE) - val lon_ref = exif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE_REF) - if (lat == null || lat_ref == null || lon == null || lon_ref == null) { + val lat = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE) + val latRef = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE_REF) + val lon = exif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE) + val lonRef = exif.getAttribute(ExifInterface.TAG_GPS_LONGITUDE_REF) + + if (lat == null || latRef == null || lon == null || lonRef == null) { toast(R.string.unknown_location) } else { - val geoLat = if (lat_ref == "N") { + val geoLat = if (latRef == "N") { convertToDegree(lat) } else { - 0 - convertToDegree(lat) + -convertToDegree(lat) } - val geoLon = if (lon_ref == "E") { + val geoLon = if (lonRef == "E") { convertToDegree(lon) } else { - 0 - convertToDegree(lon) + -convertToDegree(lon) } val uriBegin = "geo:$geoLat,$geoLon"