How can I open up a map marker info window from a link outside of the map?
I've figured out how to open up the info window by clicking on the marker within the map with the following code:
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml("<div>I'm a marker</div>");
});
However, I cannot figure out how to get it to work from a link outside of the map.