Skip to content

thurti/leaflet-piemarker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leaflet.Marker.PieMarker

Leaflet plugin for adding svg pie charts based on David Gilbertson: "A simple pie chart in SVG".

pie marker example

Should work with Leaflet 1.x.

Usage

Inlcude the scripts...

<script src="path/to/leaflet.js"></script> 
<script src="path/to/dist/leaflet-piemarker.min.js"></script>

... and add a pie marker.

myMap = L.map(...);
L.Marker.pieMarker([51.505, -0.09], {
            iconOptions: {
                iconSize: [50,50],
                data: [
                    {label: 'A', value: 0.05, color: 'rgba(0,12,50,0.75)', style:'stroke:black;stroke-width:0.01'},
                    {label: 'B', value: 0.3, color: 'green'},
                    {label: 'C', value: 0.2, color: '#00fff'},
                ]
            }
        }).addTo(myMap);

Changelog

0.1.1 (2019-03-19)

  • Fix: IE11 compatibility
  • Add: minified version in dist/leaflet-piemarker.min.js

0.1.0 (2018-10-09)

  • initial commit

ToDo

  • add labels to pie chart
  • scale on zoom

License

This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.

About

Leaflet plugin for creating pie chart markers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published