I'm trying to create an array that contains 1) origin coordinates 2) destination coordinates 3) distance for an app that eventually be used for routing paths. I had to query from Google Directions API to get the distance (of the path). Many times though, the distance will return null so I had to refresh it again and again until it returns all distance values correctly for every query.
Is there a way to not receive NULL values? Like ensure all values returned are correct.
I really appreciate if anyone could help me.