Implement 3D globe fly-over animation using MapLibre FreeCamera and Turf.js

This commit is contained in:
(jenkins)
2026-03-16 23:19:40 +00:00
parent f0767c798c
commit 8be3e04803
6 changed files with 2373 additions and 77 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ app.get('/api/line-of-sight', async (req, res) => {
FROM cities
WHERE ST_DWithin(geom, (SELECT route FROM path), $2 * 1000)
ORDER BY pos_on_line ASC
LIMIT 100;
LIMIT 200;
`;
const result = await pool.query(query, [lineWKT, toleranceKm, startLon, startLat]);