you just need to add this code below in relative tpl file of drupal.
"seeMap a" is achor link when we click then google map pop open.
This is code which trigger popup:
GEvent.trigger(Drupal.settings.gmap.auto1map.markers[i].marker, "click");
"auto1map" depends your setting.
This is the code for to move position top:
var _pos = $('#banner').position();
_pos_top = _pos.top;
$('html,body').animate({scrollTop:eval(_pos_top) - 50},500);
Main code:
$(document).ready(function(){
$('.seeMap a').each(function(i){
$(this).bind('click', function(){
var _pos = $('#banner').position();
_pos_top = _pos.top;
$('html,body').animate({scrollTop:eval(_pos_top) - 50},500);
GEvent.trigger(Drupal.settings.gmap.auto1map.markers[i].marker, "click");
return false;
});
});
});