var mapElement = document.getElementById('googleMap');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(23.7286, 90.3854),
map: map,
title: 'Ramble!',
animation:google.maps.Animation.BOUNCE
});
}