DEV Community

GreggHume
GreggHume

Posted on • Updated on

Google maps: MarkerClusterer and GridAlogrithm example

Here is an example of how to use the "@googlemaps/markerclusterer":

// ...other imports and then,
import { MarkerClusterer, GridAlgorithm } from "@googlemaps/markerclusterer";

// ... your other map code here

/* Note:
GridAlgorithm seems to be better then the default or 
standard algorithm which is SuperClusterAlgorithm
*/
const algorithm = new GridAlgorithm({
  gridSize: 60
});
new MarkerClusterer({map, markers, algorithm});
Enter fullscreen mode Exit fullscreen mode

Top comments (0)