What is considered an element in Google Matrix Distance

2

I'm developing software that needs to get information through the Google Matrix Distance API. The problem is that this API has order limits at 2500 elements per day. My doubt is what is an element? Is an API call considered an element?

Regards, Leandro

    
asked by anonymous 02.06.2016 / 11:41

1 answer

2

documentation already answers your question:

  

Each query sent to the Google Maps Distance Matrix API is limited by the number of allowed elements, where the number of destinations defines the number of elements.

Below we have the API limits:

  

Users of the standard API:

     
  • 2,500 free elements per day
  •   
  • Maximum of 25 origins or 25 destinations per request
  •   
  • 100 elements per query
  •   
  • 100 elements per 10 seconds
  •   

That is, if per day you can search for 2500 elements and each query can have up to 100 elements, you can do at least 25 queries per day.

It is also worth noting that each request can have a maximum of 25 origins or 25 destinations, so in that case they would be limited to 4 destinations or 4 origins respectively. (25 * 4 = 100)

    
02.06.2016 / 13:28