Esempio n. 1
0
        private static async Task <string> GetAddress(GeoCoordinates coordinates)
        {
            var results = await _googleService.ReverseGeocoding(coordinates.ToString(), _googleApiKey);

            return(results.results.FirstOrDefault()?.formatted_address);
        }