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");