Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NAVAND-1066] increase max distance to route line valid to continue vanishing updates to 10m #6854

Merged
merged 2 commits into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions changelog/unreleased/bugfixes/6854.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Increased max distance from the user indicator to route line valid to continue vanishing updates from 3m to 10m.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ object RouteLayerConstants {
internal const val RESTRICTED_CONGESTION_VALUE = "restricted"
internal const val ORIGIN_MARKER_NAME = "originMarker"
internal const val DESTINATION_MARKER_NAME = "destinationMarker"
internal const val ROUTE_LINE_UPDATE_MAX_DISTANCE_THRESHOLD_IN_METERS = 3.0
internal const val ROUTE_LINE_UPDATE_MAX_DISTANCE_THRESHOLD_IN_METERS = 10.0
internal const val DEFAULT_ROUTE_DESCRIPTOR_PLACEHOLDER = "mapboxDescriptorPlaceHolderUnused"
internal const val MAX_ELAPSED_SINCE_INDEX_UPDATE_NANO = 1500000000.0 // 1.5s
internal const val DEFAULT_ROUTE_SOURCES_TOLERANCE = 0.375
Expand Down