-
Notifications
You must be signed in to change notification settings - Fork 320
NN 132 #7137
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
NN 132 #7137
Changes from 10 commits
8d1d12e
58c28da
d6c528b
b19df27
814e5d8
a991e3d
6c5fa80
5858152
5431831
493fd87
fe9648b
ec29883
bc3d0fa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| - Improved quality of continuous alternatives, now the mechanism respects routes from current navigation session. | ||
| - Improved EV offline navigation, now it fallbacks to a regular onboard routing. | ||
| - Improved location simulation when DR ends, i.e. when a driver leaves a tunnel. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,6 +75,11 @@ object RoadObjectType { | |
| */ | ||
| const val JCT = 10 | ||
|
|
||
| /** | ||
| * Not finished yet, see https://mapbox.atlassian.net/browse/NAVAND-1311 | ||
| */ | ||
| internal const val NOTIFICATION = 11 | ||
|
Comment on lines
+78
to
+81
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dzinad , @averkhaturau , as I know the notification feature isn't stable on server side and the API may change. Do I understand correctly that current implementation in NN works for current design and just stop working in case of changes on server side without crashes?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's finalized: https://mapbox.atlassian.net/browse/NAVAPI-37?focusedCommentId=102077 |
||
|
|
||
| /** | ||
| * Retention policy for the RoadObjectType | ||
| */ | ||
|
|
@@ -91,6 +96,7 @@ object RoadObjectType { | |
| RAILWAY_CROSSING, | ||
| IC, | ||
| JCT, | ||
| NOTIFICATION | ||
| ) | ||
| annotation class Type | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.