Compare commits

..

2 Commits

Author SHA1 Message Date
johan12345
9ff8329171 Release 1.9.15 2025-03-29 12:15:44 +01:00
johan12345
e9b70a2f00 fix bug in extendBounds
introduced in 890af2ddef
fixes #373
2025-03-29 12:15:33 +01:00
4 changed files with 7 additions and 3 deletions

View File

@@ -20,8 +20,8 @@ android {
minSdk = 21
targetSdk = 34
// NOTE: always increase versionCode by 2 since automotive flavor uses versionCode + 1
versionCode = 248
versionName = "1.9.14"
versionCode = 250
versionName = "1.9.15"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

View File

@@ -472,7 +472,7 @@ class MapViewModel(application: Application, private val state: SavedStateHandle
val sw = bounds.southwest
val ne = bounds.northeast
var west = sw.longitude - (ne.longitude - sw.longitude) * 0.25
var east = ne.longitude + (ne.longitude + sw.longitude) * 0.25
var east = ne.longitude + (ne.longitude - sw.longitude) * 0.25
val south =
sw.latitude - (ne.latitude - sw.latitude) * 0.25 * cos(Math.toRadians(sw.latitude))
val north =

View File

@@ -0,0 +1,2 @@
Fehler behoben:
- Anzeigefehler behoben

View File

@@ -0,0 +1,2 @@
Bugfixes:
- Fixed display errors