Google Maps API - matching a request with the asynchronous response - google-maps

I'm using the google maps distance matrix javascript API to query the travel time from one point to about 50 destinations.
in order to do this, I need to break my query up into multiple chunks, since the google maps API allows only a maximum of 25 destinations per request.
the problem that I'm having is the synchronization of the request and the result.
other APIs offer the option to include a key that lets the developer match a request and an asynchronous result.
however, since such a parameter is missing from the request specification, I have no idea how to make sure that I'm matching the right data to my incoming results.
I would be glad for a "clean" workaround - currently the only idea that I'm having is to have a unique number of destinations for each request, for instance the first with 25, the next with 24 destinations and so on. but I would not consider this a satisfactory approach.
thank you

Related

Why do calls to getDetails about a place in Google Maps Places Library keep returning QUERY_OVER_LIMIT error?

I have a location and I am placing a call to nearbySearch() of the Places library through Google Maps Javascript API to get restaurants within 1000 meters of my location. I then loop through the first 20 restaurants and make a call to getDetails() so that I can pull out the website of each restaurant. This works fine until I get to about the 10th restaurant, then I start to get QUERY_OVER_LIMIT status sent back from the getDetails call.
I have slowed down my calls to once every 300ms, but I still get the QUERY_OVER_LIMIT error. Based on what I've read, a call to the Places library every 300ms should be well within the limit. When I read documentation, it states that the per second limit for the Places API (which supposedly also applies to the Places Library of the Maps Javascript API) is 100 requests per second. When I log into my API dashboard, it tells me my per minute limit for the Places API is 6000 per minute. At one request every 300ms I am nowhere near my limits, so I'm at a loss to understand why I keep getting this error. Naturally I could slow it down much more, but this degrades the user experience and since the rate seems unpredictable, it's hard to settle on a rate that I know will produce consistent results.
Places API Requests per Second
Places API Request per Minute
Places Library [what you are using when you make getDetails() requests in Javascript] and Places API [the product your screenshots are talking about] are two different things with two different quotas.
When you use Places Library, Google rate limits you which is what you are seeing.
https://developers.google.com/maps/documentation/javascript/places#UsageLimits
To be able to make more batch requests like you want, use Places API to get the Details for all of the places (which will get pricey pretty quick).
https://developers.google.com/maps/documentation/places/web-service/details
https://developers.google.com/maps/billing/gmp-billing#places-details

Can you get an ideal route of multiple destinations using a single API call?

I'm trying to see if there's a way in a single API call to find the ideal route, order not mattering, between X destinations.
For example, the program has 3 destinations, Jeff's house, Amy's house, and Valerie's house. Don't really care the order we go in, but we'd like to visit each house with the least amount of driving.
Right now, I have it set up such that we try every ordering of destinations, and settle on the one with the fastest time. But having so many API calls seems inefficient, but I can't see a way in the API to do what I want. Is what I want presently possible in the google maps API?
You can use Waypoints in Directions API web service which returns a route that includes pass throughs or stopovers at intermediate locations.
By default, the Directions service calculates a route through the
provided waypoints in their given order. Optionally, you may pass
optimize:true as the first argument within the waypoints parameter to
allow the Directions service to optimize the provided route by
rearranging the waypoints in a more efficient order.
Sample request:
https://maps.googleapis.com/maps/api/directions/json?
origin=Adelaide,SA&destination=Adelaide,SA
&waypoints=optimize:true|Barossa+Valley,SA|Clare,SA|Connawarra,SA|McLaren+Vale,SA
&key=YOUR_API_KEY
Note that requests using waypoint optimization are billed at a higher rate.
If you will be using client-side Maps JavaScript Directions Service. Refer to this documentation and example.
Hope this helps!

Batch process with google geocoding api webservices (looking for updates)

Google references this:
https://developers.google.com/maps/documentation/javascript/geocoding
And states:
The per-session rate limit prevents the use of client-side services for batch requests, such as batch geocoding. For batch requests, use the Geocoding API web service.
However, when you go to the Geocoding API web services page, I see no reference to batch processing. The above sentence infers that you can do batch processing. I need to send a large number of addresses to get lat and longitude, but doing individual calls for each address is taking extremely long periods of time and need a more efficient method. Hopefully, a single batch call to send all the addresses.
Any ideas of how to batch process addresses on google to get lat and longitude?
I have seen this Google Batch Geocoding API
However, it states you can not which is not what the above google statement infers.
Per the Geocoding API web service documentation:
Other Usage Limits
While you are no longer limited to a maximum number of requests per day (QPD), the following usage limits are still in place for the Geocoding API:
50 requests per second (QPS), calculated as the sum of client-side and server-side queries.
You are just limited to 50 requests per second and have to pay for them (after you use up the $200 credit)
The best way I found to solve this problem is to use the Directions API with up to 27 destinations (origin, destination and 25 waypoints) and get your geolocation for the response legs. The position accuracy is slightly lower than in the geocode case from what I observed, but it is still a great tradeoff.
In the worst case you will have to call the Directions API twice when one or more addresses are not found in your call. The good thing in this case is that the Directions API will give you a response with the geocoded_waypoints which will specify the NOT_FOUND locations with a geocoder_status. After that, you can eliminate the bad ones and call again.
There are currently no available feature for a Geocoding API to handle multiple address at a single call, however, you may implement the batch process via cURL, by doing this, you can call multiple requests at once automatically. Implementation will be up to your use case as well.

Google map nearbySearch Incorrect number of records

When I executed this request for 5000m radius, I could obtain 60 records, when using next_page_token for subsequent requests.
https://maps.googleapis.com/maps/api/place/nearbysearch/json?pagetoken=&key=
But when I executed request with radius=50000, I could obtain only 38 records.
This is a nature of the Places API web service. It doesn't work as a database search and doesn't return all possible results. It returns only most prominent results for specified area. How Google decides which result is prominent and which is not we don't know, they typically don't share their internal algorithms.

Find closest point using Google Maps API

I have a number of target points on the map and a source location. I need to find the target point closest to the source location. The trick here is that "closest" means the shortest route. I can't use a simple crow fly distance.
This is essentially a one-to-many routing problem. I can get the answer by running a routing API call for each pair of points but that would be too slow and will blow up API usage.
Is there a way to do it with a single request using Google Maps API (I am ok paying for it if necessary)?
If yes, then what are the limits to the number of points, the request frequency, etc?
If no, is there another service that can do it?
Say I have a lot of points (thousands). Is there a way to upload them somehow and only use the source location in my requests?
You should take a look to Distance Matrix Service
You can specify a starting point and an end point (even intermediate waypoints), then get the distance in kilometers / miles by route.
To answer your questions :
Is there a way to do it with a single request using Google Maps API (I am ok paying for it if necessary)
Yes you can, just use the service given below
If yes, then what are the limits to the number of points, the request frequency, etc?
To quote the Usage limits and requirements :
The following usage limits are in place for the Distance Matrix service:
Maximum of 25 origins or 25 destinations per request; and
At most 100 elements (origins times destinations) per request.
Requests are also rate limited. If too many elements are requested within a certain time period, an OVER_QUERY_LIMIT response code will be returned.
Say I have a lot of points (thousands). Is there a way to upload them somehow and only use the source location in my requests?
I'm not sure what you really want, but you can define a point as "source location", then load it (from SQL, KML etc...), then load the targets and call the service to find which one is the closest.