Hey @jinkoo,
Thanks for linking to your site –?I checked out the page you linked to and immediately noticed a JavaScript error, which will prevent the Map from showing up.
The error was this:
TypeError: $(...).offset(...) is undefined
Which seems to be coming from the following code on your site:
<script>
jQuery(document).ready(function($) {
$('.header-sticky .sticky-action').append($('#pgl-mainnav').clone());
var $menu_action = $('#pgl-mainbody').offset().top;
$(window).scroll(function(event) {
if( $(document).scrollTop() > $menu_action ){
$('.header-sticky').addClass('fixed');
}else{
$('.header-sticky').removeClass('fixed');
}
});
});
</script>
Those code seems to be coming from your Marvel theme, so I’d recommend contacting the theme developers for support about this issue and see if they can shed some light on this issue.