I’m using Mapbox Navigation SDK Kotlin (in flutter). I’m able to change the destination icon with this code Link to Doc
[email protected] {
this.destinationMarkerAnnotationOptions=
PointAnnotationOptions().apply {
withIconImage(
ContextCompat.getDrawable(
activity,
R.drawable.ic_launcher
)!!.toBitmap()
)
}
}
But I couldn’t find a way to change the current position icon in the map. Is it possible?