I somewhat agree with the petition: we need a Maker plan with APIs. You canāt create good apps that arenāt connected. They could create a new plan that includes the benefits of Maker and the use of APIs; that would be great. I hope more people join this petition.
I totally agreed that Maker plan can help this. Anyway, if I would like to calculate the distance from any new customer locations to current location of taxi drivers. How to handle this?
I tried to use single value from new customer location to driver location to calculate the distant. But there are so many new customers coming. How to solve this?
If you use Radarās āTrack onceā, how do you store the live location of each driver (I assume it only writes the location once), to be able to do the distance calculation thing?
I can put only the current location in user table by push current location button. Are there any better solutions?
I would like to get the lastest location when they deliver customer and get that location data back.
So every time a driver delivers, you can have a button to trigger writing the location through Radar to a field in the Users table for drivers, letās call it āLast coordinatesā.
Assuming you store users in the same table, you can have a distance column, from the userās location to that āLast coordinatesā. Does it work?
To get the lastest location is ok. But I face bigger problem from calculating bulk of new coming customers simulateously. How to solve this problem?
The distance column would only calculate based on the signed-in userās location, so that information lives on the userās device. You donāt need to worry about multiple users calculating at the same time.
Awesome. Thank you.