A Leaflet plugin to view mapcodes of the mouse pointer on mouse move.
Leaflet.Mapcodes requires
A Live Demo is available
Install mapcode-js files from the mapcode foundation repository then include the mapcode-js files, before this plugins Javascript, and CSS code
<script type="text/javascript" src="mapcode-js/ndata.js"></script>
<script type="text/javascript" src="mapcode-js/ctrynams.js"></script>
<script type="text/javascript" src="mapcode-js/mapcode.js"></script>
<link rel="stylesheet" src="Leaflet.Mapcode.css" />
<script type="text/javascript" src="Leaflet.Mapcodes.js"></script>
Then add the control to the map like so:
L.control.mapcode({
position: "bottomleft", // optional default "bottomright"
labelTemplate: "Mapcode: {0}", // optional default "{0}"
}).addTo(map);
See the LICENSE file in the repo