I have two tabs in My Juery Application. In that I want to use Google Maps in both the Tabs...So i added Script and two div tags for each Tab as below codings...
In First Tab:
<div class="map_canvas" style="width:100%; height:100%"></div>
In Second Tab:
<div class="map_canvas" style="width:100%; height:100%"></div>
----------Script for Google maps
function initialize()
{
var latlng = new google.maps.LatLng(11.6952727, 77.5195312);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementByClassName("map_canvas"),myOptions);
}
----------Style for Google Map
.map_canvas { height: 100% }
#notes{ height: 100%;width:100% ; margin: 0px; padding: 0px } // Tab1 div tag ,contains the First tab map Div Tag
#accordionWrapper{ height: 100%;width:100% ; margin: 0px; padding: 0px }// Tab2 div tag, contains the First tab map Div Tag
But it not Working map not displayed in two tabs........What is the problem here...Please help me...