js-markerclusterer
js-markerclusterer copied to clipboard
No implementation for maxZoom
Looks like the markerclusterer misses maxZoom option. It is there in the comments. But no footprint in the code. https://github.com/googlemaps/js-markerclusterer/blob/ba991e3e5654cea7bee8c828aaa5c30e2f308574/src/markerclusterer.ts#L74
This is how I have it working: const algo = new markerClusterer.SuperClusterAlgorithm({maxZoom: 12, minPoints: 10}) this.markerClusterer = new markerClusterer.MarkerClusterer({map: this.gMap, markers: [], algorithm: algo});
:tada: This issue has been resolved in version 2.1.0 :tada:
The release is available on:
- GitHub release
npm package (@latest dist-tag)v2.1.0
Your semantic-release bot :package::rocket: