I am trying to speed up my web page, and one thing that slows it down is my google map. Currently, I configured it 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. already script:
google.maps.event.addDomListener(window, 'load', initialize);
Is there an alternative to this, I tried asynchronous loading, but I could not get it to work with infoboxes, any help would be greatly appreciated :)
source share