Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know how to have a nice clustering in openlayers such as this google example ?

share|improve this question
1  
could I understand why I've been granted a -1 for this question? – apneadiving Jul 10 '11 at 15:27

5 Answers

up vote 10 down vote accepted

You can add label to pointStyle in above example and explain context of this label. Your code should be something like this:

var pointStyle = new OpenLayers.Style({
    // ...
    'label': "${label}",
    // ...
  }, {
    context: {
      // ...
      label: function(feature) {
        // clustered features count or blank if feature is not a cluster
        return feature.cluster ? feature.cluster.length : "";  
      }
      // ..
    }
});

var styleMap = new OpenLayers.StyleMap({
  'default': pointStyle,
});

var googleLikeLayer = new OpenLayers.Layer.Vector("GoogleLikeLayer", {
  // ...
  styleMap  : styleMap,
  // ... 
});
share|improve this answer
This is a great option, thank you! – apneadiving Aug 13 '12 at 19:57
works perfectly well with cluster strategy, tks. UPVOTED! – tony gil Mar 8 at 23:09

Use OpenLayers.Strategy.Cluster for clustering.

share|improve this answer
I arleady saw this one but it's far from my example :) – apneadiving Jul 10 '11 at 16:16
see the updated answer – igorti Jul 10 '11 at 16:34
I saw this one too, sorry :) – apneadiving Jul 10 '11 at 16:40
so what do you want? you have answer to you question - you use Clustering strategy and style it with the same images as Google does! – igorti Jul 10 '11 at 16:55
The example I gave presents clusters with numbers inside the design + they auto-disappear to let the marker appear when relevant. – apneadiving Jul 10 '11 at 16:57
show 1 more comment

I have just implemented a so called AnimatedCluster strategy for OpenLayers. You can see a bit more about it at: http://acuriousanimal.com/blog/2012/08/19/animated-marker-cluster-strategy-for-openlayers/

It is only a firts version but adds a nice animation to the clusters. There are many things to improve but it is a starting point.

share|improve this answer
Thanks for the information, I'll have a look – apneadiving Aug 22 '12 at 22:35

you can do this with as igorti has said. the soltion is using OpenLayers.Strategy.Cluster class and styling your layer with OpenLayers.Style class...

for styling :

var pointStyle = new OpenLayers.Style({
'default': new OpenLayers.Style({
'pointRadius': '${radius}',
'externalGraphic': '${getgraph}'
....
},{
context:{
radius: function(feature){
    return Math.min(feature.attributes.count,7)+3;
},{
getgraph : function(feature){
    return 'ol/img/googlelike.png';
}}}};

it must helps you, more power to you!

share|improve this answer
1  
I fear there won't be the number of markers displayed on the clusterer. It's still not what I am looking for. – apneadiving Jul 13 '11 at 11:53

Here is the JSfiddle for clustering based on custom attributes added to the layers. I struggled a bit with this so putting it here; Also shows creating a summary pie graph image when zoomed out with the clustered data http://jsfiddle.net/alexcpn/FDzJv/

Also created a small openlayer tutorial to explain this OpenLayers Advanced Clustering

    var getClusterCount = function (feature) {

    var clustercount = {};
    var planningcount = 0;
    var onaircount = 0;
    var inerrorcount = 0;

    for (var i = 0; i < feature.cluster.length; i++) {

        if (feature.cluster[i].attributes.cluster) {
        //THE MOST IMPORTANT LINE IS THE ONE BELOW, While clustering open layers removes the orginial feature layer with its own. So to get the attributes of the feature you have added add it to the openlayer created feature layer
            feature.attributes.cluster = feature.cluster[i].attributes.cluster;
            switch (feature.cluster[i].attributes.cluster) {

 ......
    return clustercount;
};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.