1 - search in map with api
2 - show details in selected location
This commit is contained in:
2025-07-30 12:31:47 +03:30
parent 2806301367
commit f563c6188e
25 changed files with 3960 additions and 337 deletions

View File

@@ -24,11 +24,13 @@ class InspectionRepositoryImp implements InspectionRepository {
double? centerLat,
double? centerLng,
double? radius,
String? value,
}) async {
return remoteDataSource.getNearbyLocation(
centerLat: centerLat,
centerLng: centerLng,
radius: radius,
value: value,
);
}
}