mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-06-09 08:23:55 +02:00
50 lines
1.8 KiB
Dart
50 lines
1.8 KiB
Dart
import 'dart:typed_data';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_map/flutter_map.dart';
|
|
import 'package:flutter/scheduler.dart';
|
|
import '../services/map_data_provider.dart';
|
|
import '../app_state.dart';
|
|
|
|
/// Singleton in-memory tile cache and async provider for custom tiles.
|
|
class TileProviderWithCache extends TileProvider {
|
|
static final Map<String, Uint8List> _tileCache = {};
|
|
static Map<String, Uint8List> get tileCache => _tileCache;
|
|
final VoidCallback? onTileCacheUpdated;
|
|
|
|
TileProviderWithCache({this.onTileCacheUpdated});
|
|
|
|
@override
|
|
ImageProvider getImage(TileCoordinates coords, TileLayer options) {
|
|
final key = '${coords.z}/${coords.x}/${coords.y}';
|
|
if (_tileCache.containsKey(key)) {
|
|
return MemoryImage(_tileCache[key]!);
|
|
} else {
|
|
_fetchAndCacheTile(coords, key);
|
|
// Use asset (robust, cross-platform) for non-existing tiles.
|
|
return const AssetImage('assets/transparent_1x1.png');
|
|
}
|
|
}
|
|
|
|
void _fetchAndCacheTile(TileCoordinates coords, String key) async {
|
|
// Don't fire multiple fetches for the same tile simultaneously
|
|
if (_tileCache.containsKey(key)) return;
|
|
try {
|
|
final bytes = await MapDataProvider().getTile(
|
|
z: coords.z, x: coords.x, y: coords.y,
|
|
);
|
|
if (bytes.isNotEmpty) {
|
|
_tileCache[key] = Uint8List.fromList(bytes);
|
|
print('[TileProviderWithCache] Cached tile $key, bytes=${bytes.length}');
|
|
if (onTileCacheUpdated != null) {
|
|
SchedulerBinding.instance.addPostFrameCallback((_) => onTileCacheUpdated!());
|
|
}
|
|
}
|
|
// If bytes were empty, don't cache anything (will re-attempt next time)
|
|
} catch (e) {
|
|
print('[TileProviderWithCache] Error fetching tile $key: $e');
|
|
// Do NOT cache a failed/placeholder/empty tile!
|
|
}
|
|
}
|
|
}
|