mirror of
https://github.com/ev-map/EVMap.git
synced 2025-12-30 18:47:46 -05:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ff8329171 | ||
|
|
e9b70a2f00 |
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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 =
|
||||
|
||||
2
fastlane/metadata/android/de-DE/changelogs/250.txt
Normal file
2
fastlane/metadata/android/de-DE/changelogs/250.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Fehler behoben:
|
||||
- Anzeigefehler behoben
|
||||
2
fastlane/metadata/android/en-US/changelogs/250.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/250.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Bugfixes:
|
||||
- Fixed display errors
|
||||
Reference in New Issue
Block a user