info343/lectures/jsonp-apis/files/maps.html

<!DOCTYPE html>
<html>
   <!--
   maps.html
   HTML skeleton for Google Map
   INFO 343, Autumn 2012
   Morgan Doocy
   -->
   <head>
      <meta charset="utf-8">
      <title>This is my map, yo!</title>
      
      <script src="//maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
      <script src="maps.js" type="text/javascript"></script>
      
      <style type="text/css">
         #map_container {
            width: 75%;
            height: 30em;
         }
      </style>
   </head>
   <body>
      <div id="map_container"></div>
   </body>
</html>