This commit is contained in:
2026-03-10 10:54:20 -04:00
parent 1fdfbb1b4f
commit b732795717
14 changed files with 3482 additions and 3 deletions
@@ -12,7 +12,7 @@ function loadMap() {
fetch("./js/Meteorite_Landings.json")
.then((response) => response.json())
.then(data => {
meteorData = data.splice(0,500);
meteorData = data.splice(0,35);
filteredData = [...meteorData];
drawMarkers(filteredData);
})