Fix offline area size estimates, zoom level metadata display

This commit is contained in:
stopflock
2025-09-28 17:43:03 -05:00
parent 25f0e358a3
commit 7c49b38230
3 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -99,10 +99,10 @@ class LocalizationService extends ChangeNotifier {
String result = current is String ? current : key;
// Replace parameters if provided
// Replace parameters if provided - replace first occurrence only for each parameter
if (params != null) {
for (int i = 0; i < params.length; i++) {
result = result.replaceAll('{}', params[i]);
result = result.replaceFirst('{}', params[i]);
}
}
@@ -156,7 +156,7 @@ class OfflineAreaDownloader {
);
area.nodes = nodes;
await OfflineAreaDownloader.saveNodes(nodes, directory);
debugPrint('Area ${area.id}: Downloaded ${nodes.length} nodes from modestly expanded bounds (zoom $nodeZoom vs tile minZoom $minZoom)');
debugPrint('Area ${area.id}: Downloaded ${nodes.length} nodes from modestly expanded bounds (all profiles)');
}
/// Calculate expanded bounds that cover the entire tile area at minimum zoom
+4 -6
View File
@@ -63,15 +63,13 @@ class _DownloadAreaDialogState extends State<DownloadAreaDialog> {
final nTiles = computeTileList(bounds, minZoom, maxZoom).length;
final totalMb = (nTiles * kTileEstimateKb) / 1024.0;
// Debug logging to check calculation
debugPrint('[DownloadDialog] Tiles: $nTiles, EstimateKb: $kTileEstimateKb, Total MB: $totalMb');
final roundedMb = (totalMb * 10).round() / 10; // Round to nearest tenth
setState(() {
_minZoom = minZoom;
_maxPossibleZoom = maxPossibleZoom;
_tileCount = nTiles;
_mbEstimate = totalMb;
_mbEstimate = roundedMb;
});
}
@@ -257,8 +255,8 @@ class _DownloadAreaDialogState extends State<DownloadAreaDialog> {
OfflineAreaService().downloadArea(
id: id,
bounds: bounds,
minZoom: _minZoom ?? 12,
maxZoom: maxZoom,
minZoom: _minZoom ?? 1,
maxZoom: _zoom.toInt(),
directory: dir,
onProgress: (progress) {},
onComplete: (status) {},