In FF2 I can now see map and green markers.

Your createMarker() function is doing two things wrong at the moment;

It adds each created marker to the map - don't do that, you want the
clusterer to handle who gets added and who doesn't.  Create the
markers without an initial attachment to the map.

It doesn't return anything.  The code calling it builds an array of
500 null returns and passes that to the clusterer, which finds it has
nothing to do.   Return the marker you create so that it can be pushed
onto to the markerarray.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to