Hellos,
I gave up on using Google Places due to the cost and decided to go with here geocode api
. I started using Places Search API which works pretty great but does not return the lat
and lng
.
So my solution is as follows
- Get location Ids from the
Search API
- Call the geocode api by
locationId
to get thelat
andlng
This solution works but is obviously slow. So my question here is
- Is there a way to get multiple locationIds in one geocode call?
- Is there a better service out there that is as accurate and can return lat and lng as well?
Cheers