Skip to content

Works with Leaflet to capture mouseclicks on a map and display the associated coordinates with an easy way to copy them.

License

Notifications You must be signed in to change notification settings

tinjaw/Leaflet-Copy-Coordinates-Control

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leaflet Copy Coordinates Control

Works with Leaflet to capture mouseclicks on a map and display the associated coordinates with an easy way to copy them.

Derived from original work by zimmicz. Forked mainly to provide npm functionality.

Demo

See demo here.

How to use

var c = new L.Control.Coordinates(); # you can send options to the constructor if you want to, otherwise default values are used

c.addTo(map);

map.on('click', function(e) {
	c.setCoordinates(e);
});

About

Works with Leaflet to capture mouseclicks on a map and display the associated coordinates with an easy way to copy them.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 91.0%
  • CSS 9.0%