Hello. I have markers populating my map and when I click on one an
infowindow pops up to display a little data. I have it set so I can expand
the infowindow (by clicking on the + in the corner) so it can show the
contents of another webpage inside the now larger infowindow. That is all
good.....except in IE 9. It works in previous versions. When the infowindow
is expanded it is completely blank except for "Detailed Information" in the
header of the window.
Has anyone experienced this with IE9? I have included a block of code
below. Unfortunately, I cannot provide a link since it is not on a public
server. I can add any other info if needed.
Thanks for any help that can be thrown my way!
GEvent.addListener(marker, 'click', function() {
var maxContentDiv = document.createElement('div');
maxContentDiv.innerHTML = 'Loading...'
marker.openInfoWindowHtml(html, {maxContent: maxContentDiv, maxTitle:
"Detailed Information"});
var iw = map.getInfoWindow();
GEvent.addListener(iw, "maximizeclick", function() {
GDownloadUrl("webpage_that_should_show_when_expanded.php?id=" +
id + "", function(data) {
maxContentDiv.innerHTML = data;
});
});
});
return marker;
}
}
--
You received this message because you are subscribed to the Google Groups
"Google Maps API V2" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-maps-api/-/oaZvXeT8VqsJ.
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.