I'm trying to implement a feature in my Flutter app where I want to share the live location of a user with his friends(just like whatsapp). How can I do that with Flutter and Firestore?.
I tried to save the coordinates to firestore everytime a user's location is changed and listening that query stream in his friend's app. But, that would cause just tooooooo many reads and writes.
What is the best way i can implement it. I know I'm not sharing any code because i don't think that is necessary.
How can I push realtime location of a particular user to his friends using Flutter and Firestore?