codered-maps.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // Initialize the map on the gooogle maps api js callback.
  2. function initMap() {
  3. // Set defaults
  4. const map = new google.maps.Map(document.querySelector('#cr-map'), {
  5. zoom: parseInt($("#cr-map").data("zoom")),
  6. center: {
  7. lat: parseFloat($("#cr-map").data("latitude")),
  8. lng: parseFloat($("#cr-map").data("longitude")),
  9. },
  10. mapTypeControl: $("#cr-map").data("map-type-control"),
  11. streetViewControl: $("#cr-map").data("street-view-control"),
  12. });
  13. // Create an infowindow object.
  14. var infowindow = new google.maps.InfoWindow({});
  15. if (navigator.geolocation) {
  16. var currentLocationControlDiv = document.createElement('div');
  17. var currentLocation = new CurrentLocationControl(currentLocationControlDiv, map);
  18. currentLocationControlDiv.index = 1;
  19. map.controls[google.maps.ControlPosition.TOP_LEFT].push(currentLocationControlDiv);
  20. }
  21. // Listener to update the map markers when the map is idling.
  22. google.maps.event.addListener(map, 'idle', () => {
  23. const sw = map.getBounds().getSouthWest();
  24. const ne = map.getBounds().getNorthEast();
  25. let locationDataFeatures = [];
  26. map.data.loadGeoJson(
  27. $("#cr-map").data("geojson-url") + `&viewport=${sw.lat()},${sw.lng()}|${ne.lat()},${ne.lng()}`,
  28. null,
  29. features => {
  30. locationDataFeatures.forEach(dataFeature => {
  31. map.data.remove(dataFeature);
  32. });
  33. locationDataFeatures = features;
  34. if ($("#cr-map").data("show-list") == "True") {
  35. updateList(locationDataFeatures);
  36. }
  37. }
  38. );
  39. });
  40. // Listener to update the info window when a marker is clicked.
  41. map.data.addListener('click', ev => {
  42. const f = ev.feature;
  43. infowindow.setContent(f.getProperty('pin_description'));
  44. infowindow.setPosition(f.getGeometry().get());
  45. infowindow.setOptions({
  46. pixelOffset: new google.maps.Size(0, -30)
  47. });
  48. infowindow.open(map);
  49. });
  50. // Logic to create a search box and move the map on successful search.
  51. if ($("#cr-map").data("show-search") == "True") {
  52. var input = document.getElementById('pac-input');
  53. var searchBox = new google.maps.places.SearchBox(input);
  54. map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
  55. map.addListener('bounds_changed', function () {
  56. searchBox.setBounds(map.getBounds());
  57. });
  58. searchBox.addListener('places_changed', function () {
  59. var places = searchBox.getPlaces();
  60. if (places.length == 0) {
  61. return;
  62. }
  63. // For each place, get the icon, name and location.
  64. var bounds = new google.maps.LatLngBounds();
  65. places.forEach(function (place) {
  66. if (!place.geometry) {
  67. return;
  68. }
  69. if (place.geometry.viewport) {
  70. // Only geocodes have viewport.
  71. bounds.union(place.geometry.viewport);
  72. } else {
  73. bounds.extend(place.geometry.location);
  74. }
  75. });
  76. map.fitBounds(bounds);
  77. });
  78. }
  79. // Updates the list to the side of the map with markers that are in the viewport.
  80. function updateList(features) {
  81. new_html = "";
  82. if (features.length == 0) {
  83. $("#LocationList").hide();
  84. $("#LocationListEmpty").show();
  85. } else {
  86. $("#LocationList").show();
  87. $("#LocationListEmpty").hide();
  88. for (i = 0; i < features.length; i++) {
  89. feature = features[i];
  90. new_html += feature.getProperty('list_description');
  91. }
  92. }
  93. $("#LocationList").html(new_html);
  94. }
  95. }
  96. function CurrentLocationControl(controlDiv, map) {
  97. var controlUI = document.createElement('div');
  98. controlUI.style.backgroundColor = '#fff';
  99. controlUI.style.border = '2px solid #fff';
  100. controlUI.style.borderRadius = '3px';
  101. controlUI.style.boxShadow = '0 2px 2px rgba(0,0,0,.3)';
  102. controlUI.style.cursor = 'pointer';
  103. controlUI.style.marginTop = '10px'
  104. controlUI.style.marginBottom = '22px';
  105. controlUI.style.marginLeft = '10px';
  106. controlUI.style.textAlign = 'center';
  107. controlUI.title = 'Near Me';
  108. controlDiv.appendChild(controlUI);
  109. // Set CSS for the control interior.
  110. var controlText = document.createElement('div');
  111. controlText.style.color = 'rgb(25,25,25)';
  112. controlText.style.fontFamily = 'Roboto,Arial,sans-serif';
  113. controlText.style.fontSize = '16px';
  114. controlText.style.lineHeight = '36px';
  115. controlText.style.paddingLeft = '5px';
  116. controlText.style.paddingRight = '5px';
  117. controlText.innerHTML = 'Near Me';
  118. controlUI.appendChild(controlText);
  119. // Setup the click event listeners: simply set the map to Chicago.
  120. controlUI.addEventListener('click', function () {
  121. navigator.geolocation.getCurrentPosition(function (position) {
  122. currentPosition = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
  123. map.setCenter(currentPosition);
  124. });
  125. });
  126. }