CSS
Here are the minimum CSS rules that Google advises you to use, in a separate CSS file, or within an HTML style tag, e.g. <style type="text/css">...</style>.
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 400px;
}
HTML
Goo...