PruneCluster icon indicating copy to clipboard operation
PruneCluster copied to clipboard

Fast and realtime marker clustering for Leaflet

Results 97 PruneCluster issues
Sort by recently updated
recently updated
newest added

Is there a way to force redrawing cluster icon and not the unclustered one? on another way, I need to call buildLeafletClusterIcon without calling PrepareLeafletMarker.

when I use forceIconRedraw and set f.e. markers[i].data.icon = L.divIcon({ className: 'leaflet-div-icon' }); move anim stops work, just markers jump from one position to other. I think it is for...

bug

Hi there, why don't you deploy to a CDN as well? It could be helpful for gists, fiddles or examples, increasing your library popularity... https://www.cloudflare.com/features-cdn/ offers free CDN service. I...

Without PruneCluster I would specify my marker creation as follows: ``` renderable = L.marker([renderableMetadata.coordinate.latitude, renderableMetadata.coordinate.longitude], { icon: new L.Icon.Default({ shadowSize: [0, 0], }), pane: extractedLayerId }); ``` Note I was...

I am using such thing: markersGroup.PrepareLeafletMarker = function(leafletMarker, data) { leafletMarker.setIcon(data.icon); leafletMarker.bindLabel(data.information, { noHide: true }); };

help wanted

Hi, I work with Leaflet.Label and I bind it in `PrepareLeafletMarker` and I want to know how to get the label so I can unbind it.

I'm trying to implement PruneCluster in a Ionic2 project with TypeScript. Is there a guide/example for this?

As I am in a situation where the payload from the service is too big to be swallowed by the browser at once, I was thinking to have a pagination...

The grid is 120 pixels wide by default, but this value can be reduced when zoomed.

enhancement

The library is written in [TypeScript](http://www.typescriptlang.org/). TypeScript is a superset of JavaScript adding strong typing and other features such as classes and interfaces. When I started the development, TypeScript was...

discussion