bugfix
authorSlightly Cyberpunk <git@git.slightlycyberpunk.com>
Fri, 7 Feb 2025 05:26:42 +0000 (00:26 -0500)
committerSlightly Cyberpunk <git@git.slightlycyberpunk.com>
Fri, 7 Feb 2025 05:26:42 +0000 (00:26 -0500)
js/canvassing.js

index ddae5a1..45c1642 100644 (file)
@@ -1063,22 +1063,22 @@ function loadCanvassers(force = false, canvass) {
                 var markerTitle = "UserID: "+resp[i].userId;
      var newMarker = new L.marker([resp[i].latitude, resp[i].longitude],
                                   {icon: markerIcon, title: markerTitle}).addTo(map);
-/*     if( locList[i].count > 1) {
-       newMarker.bindTooltip(locList[i].count+"",
+//     if( locList[i].count > 1) {
+       newMarker.bindTooltip(resp[i].contacts+"",
          {
            permanent: true,
            direction: 'right',
            className: 'leaflet-voterCount'
          }
        );
-     }*/
+//     }
      /*var markerText = new L.Marker([locList[i].latitude, locList[i].longitude], {
                                   icon: new L.DivIcon({
         className: 'my-div-icon',
         html: '<img src="images/marker-icon-tricolor.png"></img><span class="my-div-span">---'+locList[i].count+'-------</span>'
     })
 });*/
-     newMarker.on('click', voterList.bind(null, locList[i].latitude, locList[i].longitude));
+     newMarker.on('click', voterList.bind(null, resp[i].latitude, resp[i].longitude));
 
       }
       debug("End loadCanvassers");