sat_render stays on sat

This commit is contained in:
fred 2023-09-04 04:26:58 +02:00
parent 91f5ead159
commit 3b9888a9d4
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ if (deg <= 0.01) {
const newNorthEastLon = lon.toFixed(2); const newNorthEastLon = lon.toFixed(2);
// Update URL parameters with the new values // Update URL parameters with the new values
const url = `map_render.html?southWestLat=${newNorthEastLat}&southWestLon=${newNorthEastLon}&deg=${NSize}`; const url = `sat_render.html?southWestLat=${newNorthEastLat}&southWestLon=${newNorthEastLon}&deg=${NSize}`;
window.location.href = url; window.location.href = url;
}); });
@ -208,7 +208,7 @@ document.getElementById('map-container').addEventListener('click', (event) => {
history.back(); // Trigger browser's back functionality history.back(); // Trigger browser's back functionality
} }
}); });
/////////////////
</script> </script>
</body> </body>