Wasn't it nicarcola who wrote: >I am very sorry. I forgot to insert a parameter. Here is the right >link: >http://www.meerijden.nu/allerittenmaps2.php?ga=a
There's no one thing that's responsible for the current slowness. I find it hard to believe that it ran over twice as fast a few weeks ago unless you made some major changes, like attempting to add Google translation. I can't see where you use any of the code in kalender_nl.js or alleritten_zoeken_nl.js. Utility .js files are always a bit of a speed bump. The browser can only fetch one at a time, since it doesn't know if the js code in one file does things like overwriting or subclassing things that are defined in an earlier js file. If you're not using that code, then removing those utilities will save 1.1 seconds. If you are using that code somewhere, then try to load it as late as possible so that important things don't get queued behind them. Consider using markermanager_packed.js instead of markermanager.js. Since the Google translation doesn't currently work on your page, you can save 1.4 seconds of pre-render time and probably a similar amount of time during the render by omitting it. -- Mike Williams http://econym.org.uk/gmap -- 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.
