Common problem facing while embedding map in out web page is, instead going down, getting stuck at the map area when we scroll down using mouse. To avoid it, better way is
<html>
<div class='map_container'>
<iframe width='600' height='450' frameborder='0' src='http://foo.com'></iframe>
</div>
</html>
<style>
.map_container{
pointer-events: none;
}
</style>
<html>
<div class='map_container'>
<iframe width='600' height='450' frameborder='0' src='http://foo.com'></iframe>
</div>
</html>
<style>
.map_container{
pointer-events: none;
}
</style>