A simple Leaflet control that displays information about the map
/*global map, L*/
/*jslint browser: true*/
map.addControl(new L.Control.InfoControl({
position: "bottomright",
content: "This map is awesome!"
}));
A simple Leaflet control that displays information about the map
JavaScript