I created a map where almost all the popup windows are 480x400. I do have a few windows that only need to be 200x100. I added:
map.infoWindow.resize(480, 400);
to the map to make the popup windows 480x400. If I add:
map.infoWindow.resize(200, 100);
to the map as well, all my popup windows are 200x100. It seems like whatever code I add to modify the infoWindow last is what all the windows are size to. Is there a way to have popup windows different sizes on the same map?