Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. /* Always set the map height explicitly to define the size of the div
  6. * element that contains the map. */
  7. #map {
  8. height: 100%;
  9. }
  10. /* Optional: Makes the sample page fill the window. */
  11. html, body {
  12. height: 100%;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <div id="map"></div>
  21.  
  22. <!--
  23. <script>
  24. function initMap() {
  25. var uluru = {lat: -25.363, lng: 131.044};
  26. var map = new google.maps.Map(document.getElementById('map'), {
  27. zoom: 4,
  28. center: uluru
  29. });
  30. var marker = new google.maps.Marker({
  31. position: uluru,
  32. map: map
  33. });
  34. }
  35. </script>
  36. -->
  37.  
  38. <script src="countries.geo.json.js"></script>
  39. <script src="risk1.js"></script>
  40.  
  41. <script async defer
  42. src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC2pnOF5aSbYmpbrJhrvTTIFHYlJr2R5dw&callback=initMap">
  43. </script>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement