Skip to content

Commit 028824d

Browse files
2.17.0-adas-preview-6-SNAPSHOT
1 parent 9885e79 commit 028824d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

gradle/artifact-settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def getVersionName() {
2323
// def cmd = ["git", "describe", "--tag", "--match", "$prefix*", "--abbrev=0"]
2424
// def version = cmd.execute().text
2525
// return project.ext.snapshot ? getSnapshotVersion(version) : getReleaseVersion(version)
26-
return "2.17.0-adas-preview-5-SNAPSHOT"
26+
return "2.17.0-adas-preview-6-SNAPSHOT"
2727
}
2828

2929
def getReleaseVersion(String version) {

gradle/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
// version which we should use in this build
1414
def mapboxNavigatorVersion = System.getenv("FORCE_MAPBOX_NAVIGATION_NATIVE_VERSION")
1515
if (mapboxNavigatorVersion == null || mapboxNavigatorVersion == '') {
16-
mapboxNavigatorVersion = 'nio-adas-main-publish-30-SNAPSHOT'
16+
mapboxNavigatorVersion = 'master-SNAPSHOT'
1717
}
1818
println("Navigation Native version: " + mapboxNavigatorVersion)
1919
def androidXWorkManagerVersion = project.hasProperty('WORK_MANAGER_VERSION') ? project.property('WORK_MANAGER_VERSION') : '2.7.0'

libnavigation-core/src/main/java/com/mapbox/navigation/core/adasis/EdgeAdasAttributes.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import com.mapbox.navigation.base.ExperimentalPreviewMapboxNavigationAPI
99
* Multiple values will have different conditions.
1010
* @param slopes List of slope values with their positions on the edge.
1111
* Position is a shape index, where integer part in an index of geometry segment is
12-
* and fractional part is a position on the segment
12+
* and fractional part is a position on the segment. Value is a slope in degrees
1313
* @param curvatures List of curvature values with their positions on the edge.
1414
* Position is a shape index, where integer part in an index of geometry segment is
1515
* and fractional part is a position on the segment

libnavigation-core/src/main/java/com/mapbox/navigation/core/adasis/ValueOnEdge.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import com.mapbox.navigation.base.ExperimentalPreviewMapboxNavigationAPI
1010
* 0 - left point, 1 - right point, 0.5 - in the middle between the segment points.
1111
* Ex.: 3.5 means the middle the the 3rd segment on the Edge shape, shape has more then 4 points
1212
* @param percentAlong Position along edge shape [0-1]
13-
* @param value Floating point value, e.g. curvature in 1/m or slope as {elevation diff}/{horizontal length}
13+
* @param value Floating point value, e.g. curvature in 1/m or slope in degrees
1414
*/
1515
@ExperimentalPreviewMapboxNavigationAPI
1616
class ValueOnEdge private constructor(

0 commit comments

Comments
 (0)