Move to initial zoom level when a user is focused.

This commit is contained in:
Onuray Sahin 2022-07-20 15:57:30 +03:00
parent 7f821f1285
commit 372ff9ff97
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ class LocationLiveMapViewFragment @Inject constructor() : VectorBaseFragment<Fra
.find { it.matrixItem.id == userId }
?.locationData
?.let { locationData ->
mapboxMap?.get()?.zoomToLocation(locationData, preserveCurrentZoomLevel = true)
mapboxMap?.get()?.zoomToLocation(locationData, preserveCurrentZoomLevel = false)
}
}