© 2022 Hashnode
#map
Shinchan, Masaochan, Kazamachan walk into a pizza shop. The menu only has six options. They have a specific condition to be sufficed before making a purchase. Condition of Shinchan No Capsicum Condi…
Intro to MapBox MapBox is used to get maps and locations. Many businesses trust MapBox, as seen by the list below: MapBox offers a wide range of different services, some of which are listed below…
We have an array of objects called cats. We want to display the cats' names as an unordered list in the DOM. import React from "react"; function App() { const cats = [ { name: "Nanny" }, { name: "Minki" }, { name: "Bread" }, …
What's your name got to do with your zodiac sign? Probably nothing, but let's relate them with ASCII code for fun. While at it, we will have the opportunity to learn about a few Python beauties like ord enumerate zip dict with zip map Let…
As a developer, you may need to work with google maps. Many articles tell you how to work with Google maps. But, there is one issue, especially, for new developers or those who want to show their proj…
There are many instances where users of your web applications might need to view multiple locations on a map. TomTom Maps SDK for Web makes this process simple through using React. Using a Function Co…
So polyfills huh? What is a polyfill exactly? According to MDN A polyfill is a piece of code (usually JavaScript on the Web) used to provide modern functionality on older browsers that do not native…
As urban populations grow and roads are more congested, it’s becoming more challenging for commuters to reach their destination. Then, during the COVID-19 pandemic, many roads closed, triggering a who…
Introduction In this article, an application will be created using the latest version of Angular and added to the MapLibre map library with Amazon Amplify Geo APIs and components using the Amazon Loca…
What is functional programming? Functional programming is a programming paradigm where functions are the main building blocks of any program and logics are written inside the functions. This approach …