> For the complete documentation index, see [llms.txt](https://docs.mapbox.com/android/ja/navigation/ux/llms.txt)

# Speed limits options

The Navigation SDK UX Framework allows customizing speed limits widget on the map, so we can hide the speed warning (a part of the widget with the current speed) or the whole widget at all.

```kotlin
Dash.init(
   applicationContext = applicationContext,
   accessToken = getString(R.string.mapbox_access_token)
) {
  speedLimitsOptions {
    showSpeedLimits = true
    showSpeedWarnings = true
  }
}
```

It is also possible to update these options in the runtime:

```kotlin
Dash.applyUpdate {
  routeOptions {
    showSpeedLimits = false
    showSpeedWarnings = false
  }
}
```