AltitudeAngelWings.Service.AltitudeAngelService.UpdateWeatherData C# (CSharp) Method

UpdateWeatherData() public method

Update the AA UI with the latest weather
public UpdateWeatherData ( GMap.NET.PointLatLng center ) : System.Threading.Tasks.Task
center GMap.NET.PointLatLng The point to get weather for
return System.Threading.Tasks.Task
        public async Task UpdateWeatherData(PointLatLng center)
        {
            WeatherReport.Value = await _aaClient.GetWeather(center);
        }