Adding a List of Earthquakes Using Observables
Explore how to create a real-time earthquake list by transforming data from the USGS website using RxJS observables. Learn to map JSON properties to HTML elements and update the dashboard dynamically. Understand the use of operators like pluck and map to efficiently process incoming data streams for building web application features.
We'll cover the following...
We'll cover the following...
The first feature in the new dashboard is for displaying a real-time list of earthquakes, including information about their locations, magnitudes, and dates. The data for this list is the same as for the map, which comes from the USGS website.
We’ll first create a ...