Why Google map can not show full size in a page?

Try with css styling

iframe {
  width:100%;
  height:450px;
}

or page specific css

.page iframe {
  width:100%;
  height:450px;
}

tech