I have a website where users can upload photos and information to my site via a form.
It is then displayed on Google Maps with an image and some text. The issue I am having is that the image seems to take longer to load and so doesnt finish until the info window is created which means it overhangs the info window when it is first viewed. If it is closed and opened again it displays fine. What can I change to prevent this? http://smg.photobucket.com/albums/v251/adiwood/?action=view¤t=photogooglemaps.jpg Here is the code for the window. <code> var html = "<table>" + "<tr valign=top><td colspan='2'><h1>" + type + "</ h1></td>" + "<td rowspan='4'><img width='300px' src=http:// www.sigwx.co.uk/images/" + photo + "></td></tr>" + "<tr valign=top><td width='90px'><b>Name </b></ td><td width='250px'>" + name + "</td></tr>" + "<tr valign=top><td><b>Date </b></td><td>" + date + "</td></tr>" + "<tr valign=top><td><b>Description </b></td><td>" + description + "</td></tr>" + "</table>"; </code> -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
