Lifeline, CLever, and L3D 

<< Back to Working

Google Maps API

The Code:

<head>
<script src
="http://maps.google.com/maps?file=api&v=1&key=ABQIAAAAHcNh3mmTQyAZpWp_BdIcjhRW3ahPvXi-1UokraFc4d7K2_KhwRSeChMKIkZTdOZUOygA_Q9_egtSGw" type="text/javascript"></script>
</head>

<body>
<div id=
"map" style="width: 500px; height: 400px" align="center"></div>
<script type
="text/javascript">
//<![CDATA[
var map = new GMap(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.centerAndZoom(new GPoint(-122.241944, 37.441944), 4);
//]]>
</script>
</body>