yes it's been resolved...there was something wrong with the map.js script..dunno actually but i just rewrote a simpler one: this was the old script....
(function() {
window.onload = function() {
var mapDiv = document.getElementById('map');
var latlng = new google.maps.LatLng(6.596183, 3.355978);
var options = { // The options for the object='center')
center: latlng,
zoom: 15,
mapTypeControl: true,
scaleControl: true,
mapTypeControlOptions: {
mapTypeIds: [
google.maps.MapTypeId.ROADMAP,
google.maps.MapTypeId.SATELLITE,
]
}
};
var map = new google.maps.Map(mapDiv, options);
}
})();
I am also facing this problem..
Any body has resolved it?