.then(resp => {
console.log(resp);
for(var i = 0; i < resp.length; i++) {
- console.log(resp[i]);
+ iconImg = "marker-icon-"+iconColors[i]+".png";
+
+ var markerIcon = L.icon({
+ iconUrl: "images/"+iconImg,
+ iconSize: [48, 72],
+ iconAnchor: [24,72],
+ className: 'leaflet-marker'
+ });
+ 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+"",
+ {
+ 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));
+
}
debug("End loadCanvassers");
});
* If not, see <https://www.gnu.org/licenses/>.
*/
-var _CCCP_DEBUG = false;
+var _CCCP_DEBUG = true;
function debug(msg) {
if(_CCCP_DEBUG) {
// debugger;
var colors = ["#FF0000", "#00FF00", "#0000FF", "#FFFF00", "#00FFFF", "#FF00FF",
"#880000", "#008800", "#000088", "#888800", "#008888", "#880088"]
+var iconColors = ["red", "blue", "purple", "rose"]
// INITIALIZATION
///////////////////////////////////////////////////////////