Hi, I have a map which is putting a street-level type map into a tab on the infowindow whe someone clicks on a marker on the main map. The street level map works fine in IE8, Firefox 3, and Chrome, but in IE6 and IE7, it presents a blank map (the copyright notice and smallmapcontrol show, but not the map itself.
Using Fidder2, I've verified that the url call back to the google maps server is identical for both the browsers that work, and the ones that don't (as is the size of the response object returned), its simply that the map in the infowindow itself doesn't show up. I've tried removing the tabs from the infowindow (I will ultimately need them, but just for testing purposes), and stripping down th html for th infowindow to the bae-bones div generation. You an see the map by going to http://shcrealty.com/OperatingStoreOpportunities/tabid/59/Default.aspx (you can select 'Sears Outlet' for format and Ilinois for state to get down to 6 points which you can then map which will take you to the map itself). At its most stripped down form, here is what I have in the addListener click function (I may need to put back in the other code for a demo as this site is close to live, but the basics remain the same) (note, [OrderNumber,getMapPoints] resolves to a number before the javascript is generated) point[OrderNumber,getMapPoints].openInfoWindowHtml("<div id='detailmap2' style='height:250px;width:350px;z-index:10000;'></ div>"); centerPoint = new GLatLng([y,getMapPoints],[x,getMapPoints]); dMapDiv = document.getElementById('detailmap2'); detailMap = new GMap2(dMapDiv); detailMap.addControl(new GSmallMapControl()); detailMap.setCenter(centerPoint,12); even this very stripped down version which gets rid of tabs and the huge html I have in the other tab produces the same results. Unfortunately, the site itself is using DotNetNuke, so the code is somewhat obfugated if you try to do view source. I've spent over 2 man days trying to figure this out, its probably something really basic but I don't know what. thks, Phi -- 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.
