Skip to content

Commit

Permalink
update style
Browse files Browse the repository at this point in the history
  • Loading branch information
Harold Garbeil authored and Harold Garbeil committed Jun 7, 2024
1 parent d6d82b4 commit 55a2bd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions firms.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
let firms_url = "https://firms2.modaps.eosdis.nasa.gov/data/active_fire/modis-c6.1/csv/MODIS_C6_1_USA_contiguous_and_Hawaii_48h.csv";
// let firms_url = "https://firms2.modaps.eosdis.nasa.gov/data/active_fire/modis-c6.1/csv/MODIS_C6_1_USA_contiguous_and_Hawaii_48h.csv";
let firms_url = "https://firms2.modaps.eosdis.nasa.gov/data/active_fire/modis-c6.1/csv/MODIS_C6_1_Global_48h.csv"
let firms_marks = [] ;
const confTE = document.getElementById('confField');
let latval ;
Expand Down Expand Up @@ -35,7 +36,7 @@ $ajaxUtils.sendGetRequest (firms_url, function(responseText){
// "latval+" , "+lonval+"<br>"+qdate+"<br>"+qplace+"<br>"+"<a target='_blank' href="+qlink+">Website</href>";
let marker = L.circleMarker([latval,lonval],{
radius:1,
color:"#930",
color:"#A3B",
}) ;
marker.bindPopup (outstring);
marker.addTo(map);
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h3>Display</h3>
<div>
<input type="checkbox" id="fires_cb" name="fires_cb" checked/>
<label for="fires_cb
">Fires</label>
">Fire Perimeters</label>
</div>
<div>
<input type="checkbox" id="firms_cb" name="firms_cb" />
Expand Down

0 comments on commit 55a2bd8

Please sign in to comment.