Skip to content

Instantly share code, notes, and snippets.

@garenyondem
Created September 30, 2018 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garenyondem/866a21ce08b59978f2ad91a44bfce415 to your computer and use it in GitHub Desktop.
Save garenyondem/866a21ce08b59978f2ad91a44bfce415 to your computer and use it in GitHub Desktop.
function randomLatLon() {
let lat = (Math.random() * 180 - 90).toFixed(8)
let lon = (Math.random() * 360 - 180).toFixed(8)
return {
lat,
lon
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment