Reputation: 1
I'm searching for the track real time live location of the multiple users. Like Ola cabs and Uber Taxi live location. I try to find so many things but didn't find anything. I also try with the Pubnub. but not success on it.
Thanks in advance.
Upvotes: -4
Views: 2200
Reputation: 41
I suggest that you should have a WebSockets service, So the accuracy of tracking is good & up to date,
You will use one client to send (long, lat) to the WebSockets service,
The other client will receive the latest updates from the sockets connection, Then you show these updates on your map.
All that looks easy, But It will require a solid backend service implementation, To handle sockets failure, Also a solid management of locations services on the client end, As this will drain battery super fast.
Upvotes: 0