Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import org.maplibre.compose.expressions.value.IconRotationAlignment
import org.maplibre.compose.expressions.value.SymbolAnchor
import org.maplibre.compose.layers.SymbolLayer
import org.maplibre.compose.sources.GeoJsonData
import org.maplibre.compose.sources.GeoJsonOptions
import org.maplibre.compose.sources.rememberGeoJsonSource
import org.maplibre.compose.util.MaplibreComposable
import org.maplibre.spatialk.geojson.Feature
Expand Down Expand Up @@ -70,6 +71,7 @@ internal fun NavigationPuckOverlay(
bearingDegrees = target.bearingDegrees,
),
),
options = GeoJsonOptions(synchronousUpdate = true),
)
val puckPainter = rememberNavigationPuckPainter(style.dotFillColorCurrentLocation)
val puckSize = 80.dp
Expand Down
Loading