aboutsummaryrefslogtreecommitdiff
path: root/src/Costasdev.Busurbano.Backend/Services/IGeocodingService.cs
blob: 3ac29d6990649c47e2b6b6f73cc4d8573ead21ae (plain)
1
2
3
4
5
6
7
8
9
using Costasdev.Busurbano.Backend.Types.Planner;

namespace Costasdev.Busurbano.Backend.Services;

public interface IGeocodingService
{
    Task<List<PlannerSearchResult>> GetAutocompleteAsync(string query);
    Task<PlannerSearchResult?> GetReverseGeocodeAsync(double lat, double lon);
}