tags:

views:

88

answers:

1

The default panTo only pans to the edge of the screen.
I like setCenter but would like to pan to that point. Any ideas welcome

   map.setCenter(mymarker.getPoint());

   GEvent.trigger(mymarker,"click"); //open the info window
A: 

Fixed Code - First pan to center then open infowindow after 2 seconds

   map.panTo(mymarker.getPoint());

   window.setTimeout(function(){GEvent.trigger(mymarker,"click");},2000);
Harry