document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  5. <style type="text/css">
  6.   html { height: 100% }
  7.   body { height: 100%; margin: 0px; padding: 0px }
  8.   #map_canvas { height: 100% }
  9. </style>
  10. <script type="text/javascript"
  11.    src="http://maps.google.com/maps/api/js?sensor=false">
  12. </script>
  13. <script type="text/javascript">
  14.   function initialize() {
  15.     var latlng = new google.maps.LatLng(40.807384,-73.962421);
  16.     var myOptions = {
  17.       zoom: 18,
  18.       center: latlng,
  19.       mapTypeId: google.maps.MapTypeId.HYBRID
  20.     };
  21.     var map = new google.maps.Map(document.getElementById("map_canvas"),
  22.         myOptions);
  23.   }
  24. </script>
  25. </head>
  26. <body onload="initialize()">
  27.   <div id="map_canvas" style="width:100%; height:100%"></div>
  28. </body>
  29. </html>
');