Skip to content

Instantly share code, notes, and snippets.

@m3l1nd4
Created April 1, 2021 05:58
Show Gist options
  • Save m3l1nd4/7925d8f1f98efa346926f853bc2c7fc9 to your computer and use it in GitHub Desktop.
Save m3l1nd4/7925d8f1f98efa346926f853bc2c7fc9 to your computer and use it in GitHub Desktop.
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