Hi Josh, Not sure which MarkerCluster you're using but the error is saying you need to pass a Pane as the first argument to the MarkerClusterer constructor so instead of: new MarkerClusterer(map,pointsArray); you probably want
var manager:IPaneManager = map.getPaneManager(); var markerPane:IPane = manager.getPaneById(PaneId.PANE_MARKER); new MarkerClusterer(markerPane,pointsArray); http://code.google.com/apis/maps/documentation/flash/reference.html#IPaneManager Shaun -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" 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-api-for-flash?hl=en.
