On Oct 5, 5:51 am, "Elia C." <[email protected]> wrote: > Hi, > > I make this calls: > > direction[0].load("from: FARRA DI SOLIGO, 31010 to: VALDOBBIADENE, > 31049); > direction[1].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[2].load("from: FARRA DI SOLIGO, 31010 to: REFRONTOLO, > 31020); > direction[3].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[4].load("from: FARRA DI SOLIGO, 31010 to: REVINE LAGO, > 31020); > direction[5].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[6].load("from: FARRA DI SOLIGO, 31010 to: SERNAGLIA DELLA > BATTAGLIA, 31020); > direction[7].load("from: FARRA DI SOLIGO, 31010 to: FOLLINA, 31051); > direction[8].load("from: FARRA DI SOLIGO, 31010 to: , 31010); > direction[9].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[10].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[11].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[12].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > > where direction is an array of GDirection Objects > > some of this "request" are correctly processed while some of them > generate an error event. > > For Example this request: > direction[9].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > > is correctly processed, while the same, like this > direction[10].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[11].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > direction[12].load("from: FARRA DI SOLIGO, 31010 to: CONEGLIANO, > 31015); > generate and error. > > Is this an error? What is the problem? How can I solve it? > > Note: if there were few request there's no problem, the problems begin > when there are about 10 request. > > Thank you so much.
1. Please follow the posting guidelines and post a link to your map, not code: http://groups.google.com/group/google-maps-api/web/suggested-posting-guidelines 2: There are quotas and speed limits on calls to GDirections to prevent people from hogging Google's server resources (similar to the ones on the Geocoder). 3. Try checking the error code that is returned. -- Larry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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 -~----------~----~----~----~------~----~------~--~---
