
Create a travel advisor app in React that maps hotels, restaurants, and cafes using Google Maps, built with Create React App and Material UI for ratings.
Create a reusable header component in components folder, import material ui elements, and style with the library's styling approach to display travel advisor in a sticky toolbar within React app.
Install Google Maps in the web app with the google-map-react library, configure an API key from Google Cloud Console, and render a map component using env variables.
Build a React places list component with a left-side grid displaying place image, name, and title, and filter by type (restaurants, hotels, attractions) using Material-UI for potential maps integration.
Implement a travel advisor API function to fetch places data from the travel advisor API via Rapid API, manage loading with a progress bar, and render places by type.
Plot places from state onto the google map by mapping each place's latitude and longitude to a location icon, styled in blue, and render icons only when places exist.
Learn to use geolocation to set the map center from the user's coordinates, track map bounds, and fetch nearby places via an api using React hooks.
Configure a useEffect with southwest and northeast boundaries to fetch places from the travel advice API when balance exists, displaying the current city’s places.
Create a map card for each place using Material UI Paper, typography for the place name, a conditional image, and a read-only rating in a clean, centered layout.
This course will teach you how to code using Reactjs framework from scratch. In this course we will be building and going through a few projects, as i believe practical examples are the way to go when it comes to learning frameworks.
In this course we will cover these projects:
Pokedex Project: In this project we will go through the basics so that you will have a good understanding of the foundation and concepts of React JS. In this project we will get Pokémons from an API and show it to the user, the user can select a Pokemon in order to see the details for that Pokemon, he can also add that Pokemon to his favourites in order to collect a list of Pokémons. We store this favourite list in redux persist, so that the user can come back to the website and the data is kept and persisted.
React Router: In this tutorial we will focus on how to work with the react router. It is important to grasp and learn this Library as it is the Foundation of web applications and you will use it very often.
Todo list App: this todo list application will allow us to dive deeper into redux without complicating things. It will help you to understand the main principles and concept of redux in a simple way.
Dad Jokes App: In this project we used an API for getting jokes and showing them to the user. We also used material UI to design this gorgeous user interface.
Google Maps Travel Advisor App: This allows the user to discover the places around him. We will use google maps to plot the places And we will also use the travel advisor api to get the places for the user's location.
We will use many libraries for React.Js to implement the projects such as Material-UI for making beautiful designs effortlessly, React Redux to allow us to implement a global state system which allows all components to connect to it and access the core data of the web application. We will be using Axios to get data from an API.