On Oct 7, 7:00 pm, Jason Jonas <[email protected]> wrote: > The elevation API documentation indicates non-premiere members have a > usage limit of 25,000 location requests per day. The docs also state > that each request can have no more than 2,500 locations.
Actually, it doesn't. It says you can make 2500 requests, and each request can contain up to 1024 locations. You can only query 25000 locations per day (2500*1024 is a lot more than 25000). http://code.google.com/apis/maps/documentation/elevation/#Limits Those 25k locations need to be split up between your 2500 requests. > With last night's upgrade we turned on an elevation component. It runs > every 10 minutes and makes up to 170 requests before quitting. Each > request is a single-coordinate request. Between each request there's a > 1-second pause. This > morning the logs are showing that we began receiving OVER_QUERY_LIMIT > errors after 2,500 requests rather than 25,000 requests. That's right. You can only make 2500 requests. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
