Advertisement
Guest User

Untitled

a guest
May 27th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <head>
  2. <title>Simple Map</title>
  3. <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
  4. <meta charset="utf-8">
  5. <style>
  6. html, body, #map-canvas {
  7. height: 100%;
  8. margin: 0px;
  9. padding: 0px
  10. }
  11. </style>
  12. <script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
  13. <script>
  14. var map;
  15. function initialize() {
  16. var mapOptions = {
  17. zoom: 8,
  18. center: new google.maps.LatLng(-34.397, 150.644)
  19. };
  20. map = new google.maps.Map(document.getElementById('map-canvas'),
  21. mapOptions);
  22. }
  23.  
  24. google.maps.event.addDomListener(window, 'load', initialize);
  25.  
  26. </script>
  27. </head>
  28. <body>
  29. <div id="map-canvas"></div>
  30. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement