Skip to content

Instantly share code, notes, and snippets.

@newbamboo
Created November 24, 2010 13:06
Show Gist options
  • Save newbamboo/713624 to your computer and use it in GitHub Desktop.
Save newbamboo/713624 to your computer and use it in GitHub Desktop.
Make sure that google maps appear correctly in a facebox by binding it to afterReveal
$(document).bind("afterReveal.facebox", function(){
var myOptions = {
center: new google.maps.LatLng(51, 0),
zoom: 11,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_div"), myOptions);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment