I am trying to speed up my web page and the one thing which is slowing it right down is my google map. I currently have it set up like this:
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=key_goes_here&sensor=false"></script>
<script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/src/infobox.js"></script>
and in my document.ready script:
google.maps.event.addDomListener(window, 'load', initialize);
Is there an alternative to this, I did try the asynchronous loading but I couldn't get it to work with the infobox, any help would be greatly appreciated :)