Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <div style="width:550;height:550; background-color: lightgrey">
  6. <p><font color="black">Search this ISO code on</font></p> <p><font color="blue"><a href="http://wals.info/languoid">WALS</a></font></p>
  7.  
  8. <head>
  9. <style>
  10. #map {
  11. height: 400px;
  12. width: 100%;
  13. }
  14. </style>
  15. </head>
  16. <h3>This language is found here:</h3>
  17. <div id="map"></div>
  18. <script>
  19. function initMap() {
  20. var uluru = {lat: 50.115017, lng: 8.634350};
  21. var map = new google.maps.Map(document.getElementById('map'), {
  22. zoom: 4,
  23. center: uluru
  24. });
  25. var marker = new google.maps.Marker({
  26. position: uluru,
  27. map: map
  28. });
  29. }
  30. </script>
  31. <script async defer
  32. src="https://maps.googleapis.com/maps/api/js?key=MYAPIKEY&callback=initMap">
  33. </script>
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement