Skip to content

Instantly share code, notes, and snippets.

@magnificode
Last active October 28, 2016 12:42
Show Gist options
  • Save magnificode/6113759 to your computer and use it in GitHub Desktop.
Save magnificode/6113759 to your computer and use it in GitHub Desktop.
Google maps snippet to keep the center centered on window resize
google.maps.event.addDomListener(window, 'resize', function() {
map.setCenter(YOUR_LAT_LONG_VAR_HERE);
});
@ADTC
Copy link

ADTC commented Aug 14, 2016

A bit of explanation for YOUR_LAT_LONG_VAR_HERE will be nice.

@pkinchla
Copy link

this will work:
var latlng = new google.maps.LatLng(lat, lng);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment