Latest solutions
░▒▓█►Went Above And Beyond with React and MySQL◄█▓▒░
#express#material-ui#node#react#mysqlSubmitted over 2 years agoREST Countries API with VANILLA JS!! (✌゚∀゚)☞ (No React App Used)
#sass/scssSubmitted about 3 years ago
Latest comments
- @im-victor-mendez@de-sipher
The website doesn't seem to be working. I entered a random IP address and it didn't do anything when I pressed submit. I can see from the console that there are some issues with promises on the website. Here's a screenshot
Marked as helpful - @kaiohnr@de-sipher
"I would also like to know how can I remove the last marker when the user searches for a new IP address? I couldn't find how to do it."
You'll find everything you need over here
You need to use the
marker.remove(ReferenceToMap)
method where,- Marker is the variable used to create the marker like so
let marker = new L.Marker([0, 0]);
- ReferenceToMap is your map object like so
let map = new L.map('map', mapOptions);
You can check my code where I use
marker.remove(map);
to remove the old marker before I add a new one. - Marker is the variable used to create the marker like so