WeatherForecast Project Overview
Explore how to build a Blazor WebAssembly app that displays a 5-day local weather forecast using device geolocation and the OpenWeather API. Understand how to convert the app into a progressive web app by adding a manifest file, service worker, and installation capabilities, preparing you to deliver offline-ready weather applications.
We'll cover the following...
We'll cover the following...
In this chapter, we will build a Blazor WebAssembly app to display a local 5-day weather forecast and then convert it into a PWA.
The web app we will build uses JavaScript's Geolocation API to determine the current latitude and longitude of the device. It uses the ...