Skip to content

Instantly share code, notes, and snippets.

@stafast
Created February 4, 2016 12:43
Show Gist options
  • Save stafast/a4fe67c5e14ef0828473 to your computer and use it in GitHub Desktop.
Save stafast/a4fe67c5e14ef0828473 to your computer and use it in GitHub Desktop.
Responsive Google Map
google.maps.event.addDomListener(window, 'load', init);
var map;
function init() {
......
// Resizer
google.maps.event.addDomListener(window, 'resize', function() {
map.setCenter(mapOptions.center);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment