AltitudeAngelWings.Service.AltitudeAngelService.UpdateWeatherData C# (CSharp) 메소드

UpdateWeatherData() 공개 메소드

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
리턴 System.Threading.Tasks.Task
        public async Task UpdateWeatherData(PointLatLng center)
        {
            WeatherReport.Value = await _aaClient.GetWeather(center);
        }