A better scalebar for leaflet maps that is more GIS-like with alternating black/white bars.
https://daniellsu.github.io/leaflet-betterscale/
All that is required is to include the CSS, the JS and the following line of code:
var map = L.map('map').setView([30.182505,-93.318665], 12);
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution:'© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map);
L.control.betterscale().addTo(map);
- The options are the exact same as the leaflet built-in scale control, L.Control.Scale().