asp.net and google maps inside a tab panel -
i have troubles map inside tab panel. show: http://www.pixelfarm.it/gmaps.png if resize browser window goes ok. how can solve this? in advance
you need trigger resize function whenever user click on map's tab... here basic code...it might you
$(document).ready(function(){ $('#maptab').bind('onclick', function() { google.maps.event.trigger(map, 'resize'); }); });
Comments
Post a Comment