diff --git a/www/js/app.js b/www/js/app.js index 9b03194b..2264bab3 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -409,7 +409,7 @@ define(function(require) { var distanceFromHereHtml = ""; if (title._geolocation && currentCoordinates) { // If we know the current position and the title position, we display the distance - var distanceKm = (currentCoordinates.distance(title._geolocation) * 6371).toFixed(1); + var distanceKm = (currentCoordinates.distance(title._geolocation) * 6371 / 60).toFixed(1); distanceFromHereHtml = " (" + distanceKm + " km)"; }