Traffic signs on map.
iOS navigation map is showing traffic signs over route. But, Android doesn't show it. How can we show traffic signs over route on navigation?
Hi, could you share more details about how you show the map? Do you use the MapBox Navigation SDK?
Yes, I am using Mapbox navigation SDK for android.
My dependencies are as following. implementation 'com.mapbox.maps:android:10.13.0' implementation 'com.mapbox.plugin:maps-logo:10.9.0' implementation "com.mapbox.navigation:android:2.13.1"
It is my routeLine option on navigation. val mapboxRouteLineOptions = MapboxRouteLineOptions.Builder(this) .withRouteLineBelowLayerId("road-label-navigation") .build() routeLineApi = MapboxRouteLineApi(mapboxRouteLineOptions) routeLineView = MapboxRouteLineView(mapboxRouteLineOptions)
No traffic lights image on circle area.
@dingdev88 can you please provide an example of what you expect to see here?
iOS version navigation show this traffic light image on navigation. @dzinad @baleboy
@dingdev88 we currently don't support this in Android SDK. We'll plan this for one of the future releases, but right now we don't draw traffic lights out of the box. However, you can access this data in DirectionsRoute object (see this property) and draw the traffic light on the app side.
@dzinad @baleboy any update on this