From 8c9b5f7cb8d00b6001727778f379e69de1afaffe Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Wed, 10 Dec 2025 09:03:13 -0600 Subject: [PATCH] fix(map): Remove liteMode from inline map (#3949) Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .../kotlin/org/meshtastic/feature/node/component/InlineMap.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/feature/node/src/google/kotlin/org/meshtastic/feature/node/component/InlineMap.kt b/feature/node/src/google/kotlin/org/meshtastic/feature/node/component/InlineMap.kt index 167d35612..2a596b056 100644 --- a/feature/node/src/google/kotlin/org/meshtastic/feature/node/component/InlineMap.kt +++ b/feature/node/src/google/kotlin/org/meshtastic/feature/node/component/InlineMap.kt @@ -22,7 +22,6 @@ import androidx.compose.runtime.Composable import androidx.compose.runtime.key import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color -import com.google.android.gms.maps.GoogleMapOptions import com.google.android.gms.maps.model.CameraPosition import com.google.android.gms.maps.model.LatLng import com.google.maps.android.compose.Circle @@ -68,7 +67,6 @@ internal fun InlineMap(node: Node, modifier: Modifier = Modifier) { tiltGesturesEnabled = false, zoomGesturesEnabled = false, ), - googleMapOptionsFactory = { GoogleMapOptions().liteMode(true) }, cameraPositionState = cameraState, ) { val precisionMeters = precisionBitsToMeters(node.position.precisionBits)