Hi there,
This is happening because the map is hidden until the popup renders it. Google Maps doesn’t know that the Map needs to be displayed. So we need to trigger the Maps javascript to “draw” the map when that button is clicked.
But it looks like that button isn’t on your site anymore. Can you put that up again? Then I can help with providing that JS snippet to trigger the map again.
Hi Matt,
Thanks for getting back to me, I was away for a few weeks.
If you add an item to your cart the button should show up in the checkout page. Here is an item you can add: http://bornmkg.com/dionybus/evenement/ile-soniq-montreal-2017/
Here is a screenshot of the button on the checkout page that triggers the map:

Thanks a lot for your help
Hi there,
So, you’ll want to trigger the redrawing of the map when that link is clicked. Add this (ideally conditionally so it only appears on your checkout page) and you should be good to go:
(function($) {
$('.pum-trigger').on('click', function() {
setTimeout(function(){
MapsBuilder.load_hidden_map(".pum-active");
},100);
});
})(jQuery);
Let me know how that goes.
Hi again,
I’ve added this script to the header of the checkout page but still no luck. Do I have to add any classes to the button?
Thanks!
I see it in the <head> at the moment. Try enqueuing it to the bottom of the page instead.
Hi Matt,
I’ve finally added this to the footer of the checkout page, but its still not working when I click the button. Here is another product to try out: http://dionybus.com/evenement/deadmau5-montreal-13-oct/
The link/trigger reads “cliquez ici”
Thanks!
Disregard my previous message, I was pressed with time so I found a different plugin that does the trick . thanks anyways!