Skip to content

Display donut statistic information instead of only a circle with marker cluster and leaflet.

Notifications You must be signed in to change notification settings

indrukwekkend/Leaflet.DonutCluster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Leaflet.DonutCluster

A lightweight standalone Leaflet plugin to display donut charts instead of circles in map when using Leaflet marker cluster. This lib copies the codes which generate the donut svg from donutjs.

Only depends on Leaflet and Leaflet.markercluster, NOT on other chart library like d3.js

cluster map example

Usage

First include the Leaflet.DonutCluster.js, if you want to improve your performance, you could include the optional Leaflet.DonutCluster.css file,
But you should comment the line 85 in the Leaflet.DonutCluster.js file as well.

text.setAttribute('style', ...)

Then use L.DonutCluster to create a markercluster instance.

//create the markercluster
var markers = L.DonutCluster(
    //the first parameter is  markercluster's configuration file
    {
        chunkedLoading: true
    }
    //the second parameter is  DonutCluster's configuration file
    , {
    key: 'title', //mandotary, indicates the grouped field, set it in the options of marker
    sumField: 'value', // optional, indicates the value field to sum. set it in the options of marker
    order: ['A', 'D', 'B', 'C'], // optional, indicates the group order.
    title: ['Type A','Type D','Type B','Type C' ], // optional, indicates the group title, when it is an array, the order option must be specified. or use an object.{A:'Type A',D: 'Type D',B:'Type B',C:'Type C' }
    arcColorDict: { // mandotary, the arc color for each group.
        A: 'red',
        B: 'blue',
        C: 'yellow',
        D: 'black'
    }
})

Then add the marker into the markercluster.

var marker = L.marker(L.latLng(a[0], a[1]), {
    title: title //the value to group
});

...

markers.addLayer(marker);

License

MIT

About

Display donut statistic information instead of only a circle with marker cluster and leaflet.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 52.4%
  • HTML 46.8%
  • CSS 0.8%