contact-us.js 606 B

123456789101112131415161718192021222324252627
  1. var ContactUs = function () {
  2. return {
  3. //main function to initiate the module
  4. init: function () {
  5. var map;
  6. $(document).ready(function(){
  7. map = new GMaps({
  8. div: '#map',
  9. lat: -13.004333,
  10. lng: -38.494333
  11. });
  12. var marker = map.addMarker({
  13. lat: -13.004333,
  14. lng: -38.494333,
  15. title: 'Loop, Inc.',
  16. infoWindow: {
  17. content: "<b>Loop, Inc.</b> 795 Park Ave, Suite 120<br>San Francisco, CA 94107"
  18. }
  19. });
  20. marker.infoWindow.open(map, marker);
  21. });
  22. }
  23. };
  24. }();