Fix map icons staying "alerted" after marking delivered

Skylar Ittner 4 years ago
parent 3962a56db8
commit b21140de11

@ -80,13 +80,14 @@ function leafletMap() {
//console.log(iconName);
var classes = "package-marker package-marker-leaflet";
// Prevent selection highlight from going away after map refresh
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
classes += " selected";
}
// Show different color highlight when nearby
if (packages[i].distance * 1 < getStorage("alertradius") * 1) {
// Show different color highlight when nearby and undelivered
if (packages[i].distance * 1 < getStorage("alertradius") * 1
&& getUndeliveredCount(packages[i]) > 0) {
classes += " alerted";
}
var icon = L.icon({

@ -110,8 +110,9 @@ function mapboxMap() {
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
el.className += " selected";
}
// Show different color highlight when nearby
if (packages[i].distance * 1 < getStorage("alertradius") * 1) {
// Show different color highlight when nearby and undelivered
if (packages[i].distance * 1 < getStorage("alertradius") * 1
&& getUndeliveredCount(packages[i]) > 0) {
el.className += " alerted";
}

@ -719,7 +719,7 @@ function addPackageByBarcode(barcode, type, callback) {
ajaxlookup();
}
}
prelookup();
}

Loading…
Cancel
Save