Multiplicar por 10, a continuación, hacer su redondeo, y se divide por 10 de nuevo
(Math.round(12.362 * 10)/10).toFixed(2)
Otra opción es:
Number(12.362.toFixed(1)).toFixed(2)
En su código:
var panel;
if (routeNodes.length > 0 && (panel = document.getElementById('distance')))
{
panel.innerHTML = Number((dist/1609.344).toFixed(1)).toFixed(2)
+ " miles = £"
+ Number((((dist/1609.344 - 1) * 1.20) + 2.80).toFixed(1)).toFixed(2);
}
Declarar un mínimo, utilice la función Math.max
:
var a = 10.1, b = 2.2, c = 3.5;
alert(Math.max(a, 2.8)); // alerts 10.1 (a);
alert(Math.max(b, 2.8)); // alerts 2.8 because it is larger than b (2.2);
alert(Math.max(c, 2.8)); // alerts 3.5 (c);
+1 para .toFixed() –