{#if showSettings}
{#if options.modeOfTransport === "pedestrian" && options.pedestrianOptions}

{$_("walking-speed")}

{formatSpeed( options.pedestrianOptions.walking_speed! / 3.6, )}


{$_("use-hills")}

{options.pedestrianOptions.use_hills?.toFixed(2)}


{$_("max-hiking-difficulty")}

{options.pedestrianOptions.max_hiking_difficulty?.toFixed( 0, )}


{:else if options.modeOfTransport === "bicycle" && options.bicycleOptions}

{$_("cycling-speed")}

{formatSpeed(options.bicycleOptions.cycling_speed! / 3.6)}


{$_("use-hills")}

{options.bicycleOptions.use_hills?.toFixed(2)}


{$_("use-roads")}

{options.bicycleOptions.use_roads?.toFixed(2)}


{$_("avoid-bad-surfaces")}

{options.bicycleOptions.avoid_bad_surfaces?.toFixed(2)}


{:else if options.modeOfTransport === "auto" && options.autoOptions}

{$_("fixed-speed")}

{formatSpeed(options.autoOptions.fixed_speed! / 3.6)}


{$_("top-speed")}

{formatSpeed(options.autoOptions.top_speed! / 3.6)}


{$_("car")} {$_("width")}

{options.autoOptions.width?.toFixed(1)}


{$_("car")} {$_("height")}

{options.autoOptions.height?.toFixed(1)}


{/if}
{/if}