mirror of
https://github.com/immich-app/immich.git
synced 2026-05-28 02:22:34 -04:00
8d5d12b108
* chore: upgrade flutter to 3.44.0 # Conflicts: # mise.lock * static analysis fix * fix ios ci --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
26 lines
877 B
Dart
26 lines
877 B
Dart
import 'package:immich_mobile/domain/models/map.model.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/map.repository.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/timeline.repository.dart';
|
|
import 'package:maplibre_gl/maplibre_gl.dart';
|
|
|
|
typedef MapMarkerSource = Future<List<Marker>> Function(LatLngBounds? bounds);
|
|
|
|
typedef MapQuery = ({MapMarkerSource markerSource});
|
|
|
|
class MapFactory {
|
|
final DriftMapRepository _mapRepository;
|
|
|
|
const MapFactory({required this._mapRepository});
|
|
|
|
MapService remote(List<String> ownerIds, TimelineMapOptions options) =>
|
|
MapService(_mapRepository.remote(ownerIds, options));
|
|
}
|
|
|
|
class MapService {
|
|
final MapMarkerSource _markerSource;
|
|
|
|
MapService(MapQuery query) : _markerSource = query.markerSource;
|
|
|
|
Future<List<Marker>> Function(LatLngBounds? bounds) get getMarkers => _markerSource;
|
|
}
|