Hi,
I’m using bootstrap tabs to show MapPress maps. I’m aware of the Google Maps API bug, but not sure how to trigger the resize. I’m far from a JS ninja 😉
Source: http://twitter.github.com/bootstrap/javascript.html#tabs
If I would trigger a resize on a manually added map using bootstrap, it would look something like this (working example):
$('#showMap').on('shown', function (event) {
google.maps.event.trigger(map, 'resize');
});
Where would mapp0.resize();
fit in to the above?