map-point.js 924 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define("/pages/map-point", [], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory();
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory();
  11. global.pagesMapPoint = mod.exports;
  12. }
  13. })(this, function () {
  14. "use strict";
  15. var LocsA = [{
  16. lat: 45.9,
  17. lon: 10.9,
  18. title: 'Title A1',
  19. html: '<h3>Content A1</h3>',
  20. icon: 'http://maps.google.com/mapfiles/markerA.png',
  21. animation: google.maps.Animation.DROP
  22. }, {
  23. lat: 44.8,
  24. lon: 1.7,
  25. title: 'Title B1',
  26. html: '<h3>Content B1</h3>',
  27. icon: 'http://maps.google.com/mapfiles/markerB.png',
  28. show_infowindow: false
  29. }, {
  30. lat: 51.5,
  31. lon: -1.1,
  32. title: 'Title C1',
  33. html: ['<h3>Content C1</h3>', '<p>Lorem Ipsum..</p>'].join(''),
  34. zoom: 8,
  35. icon: 'http://maps.google.com/mapfiles/markerC.png'
  36. }];
  37. });