An aot compatible .NET client for OpenWeatherMap (https://openweathermap.org/)
Get API-Key from https://openweathermap.org/
stringapiKey="{your apiKey}";varsettings=newGamoya.Weather.OpenWeatherMap.Settings{Units=Units.Metric,LanguageCode="en"};decimallatitude=52.520008m;decimallongitude=13.404954m;using(varopenWeatherMapClient=newGamoya.Weather.OpenWeatherMap.OpenWeatherMapClient(apiKey,settings)){varcurrentWeather=awaitGetCurrentWeatherAsync(latitude,longitude);varforecastWeather=awaitGetForecastWeatherAsync(latitude,longitude);}