On Jul 16, 10:29 am, "Juan p." <[email protected]> wrote: > Hi, i have a procces in javascript, this contain an arrays of > points .. > <code> > initialize(); > for( var i = 0; i < array_points.length; i++ ) > { > > save_points(array_points[i]); // > geocoder and save in BD > > } > </code> > If length of array limit exceded a 12/13 an registry, can't locate > some an existing address...even if records of arrays points are all > equals and valids... > API have a limit of requests for determinated time?
Yes. There is a rate limit and a quota for geocoding. http://code.google.com/apis/maps/faq.html#geocoder_limit The general advice is only geocode addresses that you don't know "on the fly" (which will usually be user entered), geocode any other addresses off line and store them for use on your map. -- Larry > I suspect that tread requests > > Thanks ! > pd: sory for my english :P i'm argentinian! -- 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.
