seb
seb

Reputation: 2321

Leaflet markercluster- change color of coverage on hover

I'm trying to change the color of the coverage on hover (showCoverageOnHover) in the Leaflet markercluster plugin. I can't find this in the documentation.

What I want to achieve is to change the color of the coverage on hover from blue to something else. For example, when you hover with the mouse over a cluster icon in this example.

Upvotes: 2

Views: 3551

Answers (2)

Magda
Magda

Reputation: 1248

OK, using polygonOptions is the right answer, like that:

var markers = L.markerClusterGroup({

    polygonOptions: {
        fillColor: '#1b2557',
        color: '#1b2557',
        weight: 0.5,
        opacity: 1,
        fillOpacity: 0.5
        }
});

Upvotes: 2

IvanSanchez
IvanSanchez

Reputation: 19089

Quoting from the docs:

polygonOptions: Options to pass when creating the L.Polygon(points, options) to show the bounds of a cluster. Defaults to empty, which lets Leaflet use the default Path options.

Upvotes: 1

Related Questions