Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Marker Clustering - Fusion Table Layer - Google Maps v3

Is there a way to get marker clustering (ie makerclusterer) to work with a Fusion Table layer? It seems that you have to assign markers to markerclusterer yet when using a fusion table layer, Google is handling the markers/infowindows? Still trying to figure this fusion table thing out.

Basically looking for a way to cluster large amounts of markers being provided via a Fusion Table

like image 792
RonnieT Avatar asked Jul 26 '11 19:07

RonnieT


1 Answers

Fusion Table Layers render an additional png image for each tile that gets overlaid on top of the map tile, containing the data points for that tile, this is the server side rendering part. So it's multiple data points per tile that contains data points.

MapsIt.png map tile with data points already positioned on the layer

Generating your own markers from data, which is necessary for MarkerClusterer, doesn't overlay an image per tile, it creates an individual Marker on the map for each data point and overlays a sprite image on to that.

Marker Sprite image used for each data point

Based on this, it is not possible to use MarkerClusterer and a FusionTablesLayer.

like image 109
Freddy Avatar answered Sep 21 '22 00:09

Freddy