> I have tried multiple commands. But is there somehing wrong with my > commands??
Yes. Your infowindow code looks for this image http://roehrsinc.com/simplemap_logo.jpg which doesn't exist on your server. The scope of your 'marker' variable is restricted to inside your load() function, so later after that function is complete and you click the marker itself, the javascript object for it isn't available to your code. In any case, both markers re-use the same variable 'marker' so you probably wouldn't get what you expect anyway. As you've already been told, go look at this tutorial - http://econym.org.uk/gmap/basic1.htm and note pitfall no.3 cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
