Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. "use strict";
  2. document.addEventListener("DOMContentLoaded", drawMap);
  3.  
  4. var map,
  5. google;
  6.  
  7. function drawMap() {
  8. var storeLocation = {
  9. lat: 34.1032104,
  10. lng: -118.326293
  11. };
  12. var mapOptions = {
  13. "center": storeLocation,
  14. "zoom": 15,
  15. "draggable": false
  16. };
  17. map = new google.maps.Map(document.getElementById("my-map"), mapOptions);
  18.  
  19. var marker = new google.maps.Marker({
  20. "position": storeLocation,
  21. "map": map,
  22. "title": "Find us here"
  23. }); // marker
  24.  
  25. var popupContent = "Two Trees Extra Virgin Olive Oil <br />";
  26. popupContent += "1750 Vine St <br />";
  27. popupContent += "Los Angeles, CA";
  28.  
  29. var infowindow = new google.maps.InfoWindow({
  30. "content": popupContent,
  31. "maxWidth": 270
  32. }); // infowindow
  33.  
  34. google.maps.event.addListener(marker, "click", function() {
  35. infowindow.open(map, marker);
  36. });
  37. } // drawMap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement