Skip to content

Commit 465ddfa

Browse files
committed
Allowing download the data if the user visible area is less than 3 sq/km
1 parent 1fe23a9 commit 465ddfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GoInfoGame/GoInfoGame/UI/Map/MapView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ struct MapView: View {
505505
let areaKm2 = latDistanceKm * lonDistanceKm
506506
print("Area: \(areaKm2) km²")
507507

508-
return areaKm2 < 12.0 // allow small tolerance
508+
return areaKm2 < 3.0 // allow small tolerance
509509
}
510510

511511
private func haversineDistance(lat1: Double, lon1: Double, lat2: Double, lon2: Double) -> Double {

0 commit comments

Comments
 (0)