Skip to content

Commit

Permalink
Fix dropped value
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Nov 26, 2024
1 parent 86eeb4c commit 484e055
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ fun DynamicallyOrientingNavigationView(
),
theme = theme,
config = config,
onClickZoomIn = { camera.value.incrementZoom(1.0) },
onClickZoomOut = { camera.value.incrementZoom(-1.0) },
onClickZoomIn = { camera.value = camera.value.incrementZoom(1.0) },
onClickZoomOut = { camera.value = camera.value.incrementZoom(-1.0) },
views = views,
mapViewInsets = mapViewInsets,
onTapExit = onTapExit)
Expand Down

0 comments on commit 484e055

Please sign in to comment.