Yevhen Uzhva

Results 30 comments of Yevhen Uzhva

Looks like `LayerGroup` from `react-leaflet-universal` works not as expecting and `MarkerClusterGroup` component that extends it doesn't receive leaflet map object through props. To use `.addLayer(this.leafletElement);` you need to get `leafletElement`...

@elvir92 Em.. - nope, currently there is no way to do that, also I don't remember any example. Need to think about implementation.

According to [Freezable](https://github.com/ghybs/Leaflet.MarkerCluster.Freezable#quick-guide) doc. you need to use that lib directly with `Leaflet element` (wich was created by Leaflet.js): ``` var mcg = L.markerClusterGroup(options); mcg.freezeAtZoom(15); mcg.freezeAtZoom("maxKeepSpiderfy"); mcg.freezeAtZoom("max"); ``` `mcg` -...

What version of react-leaflet-markercluster do you use - `1.8.1` or `2.0.0-rc3`?

@StazriN Did you try to use `react-leaflet-markercluster@next` next `2.0.0-rc3` version to reproduce that issue?

This plugin does not support `react-leaflet` v2.

@ThiefMaster yep, I will try to deliver it during the next week. The trick is that `react-leaflet` was as the candidate release till that day. So since today, I need...

@webcarrot **Many thanks for your contribution!** @reggie3 @oserban @ThiefMaster Currently, the latest version with support of react-leaflet v2.0 and React 16.3 context API available as candidate release: ``` yarn add...

@webcarrot > In react-leaflet-markercluster@next version markers pop-ups do not display content - probably they need map from props.leaflet to be set/provided in MarkerClusterGroup instance contextValue. Yep, you are right. Already...

@webdobe You need to install all peerDependencies: ``` yarn add leaflet.markercluster leaflet react-leaflet prop-types ``` Then install `next` release of that plugin: ``` yarn add react-leaflet-markercluster@next ``` Previously try to...