This code sample, adapted from the Google samples, presents integrating a static map:
<!-- Copyright (c) 2009 Google Inc.
You are free to copy and use this sample.
License can be found here: http://code.google.com/apis/ajaxsearch/faq/#license-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps API Sample</title>
<style type="text/css"> body {
background-color: white;
color: black; font-family:
Arial, sans-serif;
}
</style>
<script
src=http://www.google.com/jsapi?key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA
type="text/javascript"></script>
<script type="text/javascript">
google.load("maps","2.x");
function initialize() {
var map = new google.maps.Map2(document.getElementById("map"));
map.setCenter(new google.maps.LatLng(41.2867, -95.8703), 10);
}
google.setOnLoadCallback(initialize);
</script>
</head>
<body onunload="GUnload()">
<div id="map" style="width:500px; height:300px"></div>
</body>
</html>