Skip to content

zostera/leaflet-legend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

leaflet-legend

This is a simple legend plugin for Leaflet. It can be used to add a small popup legend to a Leaflet map, demo

What is this?

This plugin allows you to add a simple popup legend to a Leaflet map. It extends the Leaflet Control class: creating and positioning the necessary container elements.

Example

After including leaflet-legend.js and leaflet-legend.css in your project, you can add a legend to your map with the following:

L.control.legend({
    items: [
        {color: 'red', label: 'reserved'},
        {color: 'blue', label: 'not reserved'}
    ],
    collapsed: true,
    // insert different label for the collapsed legend button.
    buttonHtml: 'legend'
}).addTo(map);

The complete example can be found in example.html.

Dependencies

  • Leaflet 1.3.1

Install

Install with npm:

npm install git@github.com:zostera/leaflet-legend.git

or fork the github project.

License

MIT License

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 46.7%
  • HTML 31.6%
  • CSS 21.7%