Skip to content

Instantly share code, notes, and snippets.

@tomastraveltime
Created January 13, 2022 17:50
Show Gist options
  • Save tomastraveltime/6ee4354915fdac538617f0f880ac0e8c to your computer and use it in GitHub Desktop.
Save tomastraveltime/6ee4354915fdac538617f0f880ac0e8c to your computer and use it in GitHub Desktop.
var properties = Object.values(location.properties);
var travelTime = properties[0].travel_time;
var travelTime = parseInt(travelTime);
listItem.innerHTML = location.id + ' - ETA: ' + Math.round(travelTime/60) + ' mins' ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment