piepworks / cassettenest-roadmap

Public roadmap for Cassette Nest
0 stars 0 forks source link

Track GPS location… #239

Open trey opened 5 years ago

trey commented 5 years ago

…for a for an entire Roll, Journal entries, or individual Frames

An idea from someone at the EforAll pitch contest last night.

This has timezone consequences too. piepworks/cassettenest-roadmap#241


trey commented 3 years ago

Maybe it’s possible to just spit out latitude, longitude to a text field and we do something else with it later?

https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API

trey commented 3 years ago

Wow, this isn't too bad.

navigator.geolocation.getCurrentPosition((position) => {
  console.log(position.coords.latitude, position.coords.longitude);
});
trey commented 3 years ago

I apparently hit some keyboard shortcut or something to accidentally close the ticket.