Skip to content

Instantly share code, notes, and snippets.

@amaseda
Created January 6, 2016 17:22
Show Gist options
  • Save amaseda/aac61ffb56814fc20860 to your computer and use it in GitHub Desktop.
Save amaseda/aac61ffb56814fc20860 to your computer and use it in GitHub Desktop.
map.on( "click", function( event ){
  var lat = event.latlng.lat,
      lng = event.latlng.lng;
  var marker = L.marker([lat, lng]).addTo(map);
  marker.bindPopup("<p>" + event.latlng.lat + "</p><p>" + event.latlng.lng + "</p>");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment