Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <style>
  6. #map {
  7. height: 400px;
  8. width: 100%;
  9. }
  10. </style>
  11. </head>
  12.  
  13. <body>
  14. <div id="map"></div>
  15. <script>
  16. function initMap() {
  17. var phayathai_plaza = { lat: 13.7562032, lng: 100.5325212 };
  18. var map = new google.maps.Map(document.getElementById('map'), {
  19. zoom: 17,
  20. center: phayathai_plaza
  21. });
  22. var marker = new google.maps.Marker({
  23. position: phayathai_plaza,
  24. map: map
  25. });
  26. }
  27. </script>
  28. <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAL3uKKsbjPdp4TKhrRDpysbq5BtFiyU9w&callback=initMap">
  29. </script>
  30. </body>
  31.  
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement