Pravin M.Dpravinmd.hashnode.dev·Nov 27, 2023Geolocation Unlocked: Exploring User Location with JavaScript (Live Demo)Have you ever wondered how some websites or applications know your exact location? It's not magic, it's geolocation! In this beginner-friendly guide, we'll dive into the world of JavaScript and explore how you can access a user's current location usi...DiscussJavaScript
Rayane TOKOrayanetoko.hashnode.dev·Nov 24, 2023The method mapThe method map is an array method that allows you to perform operations on the elements of an array. Imagine you have an array like this : const nums = [2, 4, 3, 11, 19]; and for one reason or another, you want to get the double of each element of t...Discuss·10 likesHow it work? Javascript array methodsjavascript map array
Hil Ronebitedev.hashnode.dev·Nov 21, 2023Scrape Google Maps data and reviews using PythonIf you need information from Google Maps, like place details or reviews, you are in the right place! Scraping this data is valuable whether you're looking to scout locations or gather insights on local businesses. Let's learn how to scrape Google Map...DiscussScraping
Rayane TOKOrayanetoko.hashnode.dev·Nov 21, 2023IntroductionWelcome to this exciting series of "How It Works." Throughout this instructive journey, we will delve into the realm of array methods in programming, such as map, find, reduce, filter, and many others. But don't just passively learn them, as we will ...DiscussHow it work? Javascript array methodsJavaScript
Rishabh Rahulbuilds.rishabhrahul.com·Nov 14, 2023Creating your own map!GitHub Imagine we're setting out to create our very own map. Now, you might be wondering, "What's a map, really?" It's like your trusty guide on a piece of paper, showing you the way around towns and countries. So, there I was, super curious about ho...Discuss·33 readsmap
Hakeem Rajihakraj.hashnode.dev·Nov 10, 2023Mastering Maps: A Step-by-Step Guide to Setting Up Leaflet.js with ReactNavigating the world of geolocation and maps during my recent tech internship was a challenge that led me on a quest to explore Leaflet.js. In this guide, I'll provide you with a step-by-step tutorial on integrating Leaflet.js seamlessly with React. ...Discuss·8 likes·42 readsWeb Development
Divy Parekhdivysblog.hashnode.dev·Oct 28, 2023Filter, Reduce, and Map in JavaScript: A Comprehensive GuideWe'll be diving deep into three of the most transformative functions in JavaScript: filter, reduce, and map. 1. The map Function What is it? The map function is your go-to when you want to transform every item in an array without changing the origina...DiscussJavaScript
Plamen Mushkovblog.apexapplab.dev·Oct 13, 2023How To Optimize APEX Maps Load Time Using Spatial IndexesThe Issue I recently had an interesting challenge to solve. An APEX map region was taking more than 20 seconds to load. And although the points rendered on the map were over 100,000 this initial load time was unacceptable. 💡 My first piece of advic...Discuss·1 like·442 readsorclapex
Ashish mauryablog.theashishmaurya.me·Oct 8, 2023How I build My Own Data structure for Indexing : Bidirectional MapRecently, in my organization, we came across a need to build an index of files we are using for our in-browser filesystem, where we have the id's of the file/folder which is how frontend understands and a path associated with it in the in-browser fil...Discuss·10 likes·44 readsJavaScript
Ruthruthr.hashnode.dev·Oct 5, 2023Javascript's forEach, Map, and Filter MethodsIn this blog, I will be talking about the forEach, map, and filter functions. We will create our own forEach, map, and filter function to see how these methods use the array and callback function we pass. The forEach Method According to the MDN Javas...Discussforeach