What is the best way to load content into my infowindow using ajax?
Right now I am getting a similar effect using iframes but I am not that that happy with it.
I thought thi
You can call infowindow.setContent at any point after the info window has been shown. So you could initially set your info window content with a spinner, make the AJAX call (from the event handler) and then call infowindow.setContent again from the AJAX response with the appropriate data.