> var map2 = new google.maps.Map(map[0], myOptions); > google.maps.event.trigger(map2, 'resize');
There's no point in triggering a resize on a map you have just created, whose size/visibility has not changed since you created it. > google.maps.event.trigger(map2, 'resize'); > map.show(); Think about the order of events here. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
