Single post

jump to replies

In some situations it would be nice to continuously send a smartphone's location to other family members.

What I am looking for is:

Free software
Self hosted
Only transmitting when actively turned on by the user, this must not be spyware

What can you recommend?

12 visible replies; 5 more replies hidden or not public

back to top
Markus Osterhoff , @sci_photos@troet.cafe
(open profile)

@jcolomb @ckeen Now, browsers have an API for that, here a snippet from my small demo:

navigator.geolocation.getCurrentPosition( (position) => {
const { latitude, longitude, accuracy } = position.coords;
div.innerText = `📍 Latitude: ${latitude.toFixed(6)}, Longitude: ${longitude.toFixed(6)}\n🎯: ${accuracy} m`;
};