This commit is contained in:
Dongho Kim
2025-12-17 16:42:23 +09:00
parent 8edb92b25d
commit 4b606e28da
12 changed files with 991 additions and 195 deletions

View File

@@ -632,10 +632,10 @@ async fn main() -> Result<()> {
// Apply simplification based on zoom level
let base_epsilon = match zoom {
2 => 0.0001,
4 => 0.00005,
6 => 0.00002,
9 => 0.00001,
2 => 0.01, // Was 0.0001 (~11m) -> Now ~1km
4 => 0.002, // Was 0.00005 (~5m) -> Now ~200m
6 => 0.0005, // Was 0.00002 (~2m) -> Now ~50m
9 => 0.0001, // Was 0.00001 (~1m) -> Now ~10m
12 => 0.000005,
_ => 0.0,
};