Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Google Maps (V3) in my page at 100% page width with one marker in the middle. When I resize my browser window's width I would like the map to stay centered (responsive). Now the map just stays at the left side of the page and gets smaller.

UPDATE Got it to work exactly as described thanks to duncan. This is the final code:

var center;
function calculateCenter() {
  center = map.getCenter();
}
google.maps.event.addDomListener(map, 'idle', function() {
  calculateCenter();
});
google.maps.event.addDomListener(window, 'resize', function() {
  map.setCenter(center);
});
share|improve this question
good job! yes you have to continuously output the current center value to global scope so it can be picked up by the dom listener – liquified Jan 4 at 23:12

1 Answer

up vote 20 down vote accepted

You need to have an event listener for when the window resizes. This worked for me (put it in your initialize function):

google.maps.event.addDomListener(window, 'resize', function() {
    map.setCenter(homeLatlng);
});
share|improve this answer
This works perfect, thanks! But if someone has moved the map, how do I get the new center of the map? I found the getCenter() function, but can't get it to work correctly. map.setCenter(map.getCenter()); doesn't work. – Gregory Bolkenstijn Jan 10 '12 at 10:19
You want another event listener, I think for "center_changed" on the map object, that updates a global variable with the new coordinates, which you can then use in your setCenter. – duncan Jan 10 '12 at 11:15
1  
I tried that as well: var center; google.maps.event.addListener(map, 'center_changed', function() { center = map.getCenter(); }); google.maps.event.addDomListener(window, 'resize', function() { map.setCenter(center); }); Doesn't work. Any help would be appreciated. – Gregory Bolkenstijn Jan 10 '12 at 11:27
How about "bounds_changed" instead? – duncan Jan 10 '12 at 12:03
1  
This is the easiest way: hsmoore.com/blog/… – smftre Mar 8 at 0:06
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.