Skip to content

Commit

Permalink
Remove extra associated wildfire on static evac map
Browse files Browse the repository at this point in the history
  • Loading branch information
ssylver93 committed Apr 23, 2024
1 parent 55fa6e9 commit ac052db
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,6 @@ export class EvacAlertFullDetailsComponent implements OnInit {
popupAnchor: [1, -34],
shadowSize: [41, 41],
});
if (this.incident) {
if (this.incident.fireOfNoteInd) {
L.marker(location, { icon: fireOfNoteIcon }).addTo(this.map);
} else {
const colorToDisplay = setDisplayColor(
this.incident.stageOfControlCode,
);
L.circleMarker(location, {
radius: 5,
fillOpacity: 1,
color: 'black',
fillColor: colorToDisplay,
}).addTo(this.map);
}
}

// now fetch the rest of the incidents in the area and display on map
try {
Expand Down

0 comments on commit ac052db

Please sign in to comment.