update
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user