[OpenLayers-Users] removeFeatures + Cluster Strategy
    Alexandre Dube 
    adube at mapgears.com
       
    Wed Apr  1 09:10:07 EDT 2009
    
    
  
Hi,
Try _featureLayer.destroyFeatures(_featureLayer.features) instead.
Regards,
Alexandre
Heidtmare wrote:
> first i do this:
>
> function _createFeatures(records)
> 	{	
> 		var features = [];
> 		var wktFormat = new OpenLayers.Format.WKT({
> 			externalProjection: _map.displayProjection,
> 			internalProjection: _map.projection
> 		});
> 		Ext.each(records, function(record){
> 			var feature = wktFormat.read(record.get('featureGeom'));
> 			feature.id = record.get('featureId');
> 			features.push(feature);
> 		});
> 		_featureLayer.addFeatures(features);
> 	}
> and it works great.
>
>
> later i do this:
>
> _featureLayer.removeFeatures(_featureLayer.features);
>
> and my feature clusters disappear as expected...until i change my zoom level, then they all come back.
> how do i kill the clusters once and for all!
>
>
>   
-- 
Alexandre Dubé
Mapgears
www.mapgears.com
    
    
More information about the Users
mailing list