Created
April 1, 2021 05:58
-
-
Save magyarmelinda/7925d8f1f98efa346926f853bc2c7fc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let onSuccess = function (map, p) { | |
L.marker([p.coords.latitude, p.coords.longitude]) | |
.addTo(map) | |
.bindPopup("Your current location.") | |
.openPopup(); | |
map.setView([p.coords.latitude, p.coords.longitude], 14); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment