On Jan 20, 2:49 pm, Marcus <[email protected]> wrote: > No percentages are used for the container div. It's hardcoded <div > id="map_canvas" style="width:500px; height:300px;"></div>.
That makes no difference in this case because IE doesn't do anything with sizes until it reaches </table> and can sort everything out in one go. You are running map_init() while the outer table is still being defined -- you haven't got to the final </table>. So IE gives the map zero size, despite the defined dimensions. The solution is to move your call to map_init() to the end of the page, or at least outside every table which contains the map div. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
