Skip to content

Instantly share code, notes, and snippets.

@alexgleith
Created March 4, 2014 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexgleith/9340190 to your computer and use it in GitHub Desktop.
Save alexgleith/9340190 to your computer and use it in GitHub Desktop.
map on click leaflet
map.on('click', function(e) {
var popLocation= e.latlng;
var popup = L.popup()
.setLatLng(popLocation)
.setContent('<p>Hello world!<br />This is a nice popup.</p>')
.openOn(map);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment