Hi guys, My markerclusterer works as it should, but a previous overlay in the map blocks the clicks on the markers.
So if this draws a circle in my map var polygon:Polygon = drawCircle(params_coord[0], params_coord[1], limDistInt, 0x000000, 2, 1, 0x0000FF,.0); var markerOp:MarkerOptions = MarkerOptions.getDefaultOptions(); var markerP:Marker = new Marker(new LatLng(params_coord[0],params_coord[1]), markerOp); map.addOverlay(markerP); Then when I call my markerclusterer var pane:IPane = map.getPaneManager().createPane(); // Will now cluster them markerClusterer = new MarkerClusterer(pane, this.createMarker(markers)); the cluster works, but the marker are not clickable. If I remove map.addOverlay(markerP); they are clickable indeed. Calling the cluster before or after the addOverlay doesn't make any difference. Any Help? Thanks. E -- 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.
