<!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">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <head><title>Ajax</title>
    <!-- 下記キーは、必ず自分専用のものをhttp://www.google.com/apis/maps/で取得して使ってください -->
    <script src="http://maps.google.com/maps?file=api&v=1&key=ABQIAAAArXkhpD8kl_yiiFjm3U9X7BTLWCrfVQwX-dEBPQ3oKtfnxsFVxxRUaJZow2cHaaFJqFub0xe7IfB-Fg" type="text/javascript"></script>
  </head>
  <body>
  
    <!-- ここへ地図を出力します↓ -->
    <div id="map" style="width: 500px; height: 400px"></div>
    
    <script type="text/javascript">
    //<![CDATA[
    
    var map = new GMap(document.getElementById("map"));
    map.centerAndZoom(new GPoint(139.765449,35.633477), 3);
    
    //]]>
    </script>

  </body>
</html>