On Apr 28, 5:34 pm, ProbablyMike <[email protected]> wrote: > I have seem similar loading progress things where it only updates > every 10 or so markers, can't seem to find where now.
yeah there's a line of code which says: var keep = Math.min(counter + 1, markers.length); to update every ten markers it would be var keep = Math.min(counter + 10, markers.length); try it with values from 2 to 10 to see what looks good. ... -- 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.
