Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

Am using markercluster.js for showing cluster using img urls for cluster size

that.mcOptions = [{
            height: 38,
            url: "/images/search/hotels/clusterSmall.png",
            width: 38,
            textColor: "white"
        }, {
            height: 38,
            url: "/images/search/hotels/clusterMedium.png",
            width: 38,
            textColor: "white"
        }, {
            height: 38,
            url: "/images/search/hotels/clusterLarge.png",
            width: 38,
            textColor: "white"
        }, {
            height: 44,
            url: "/images/search/hotels/clusterExtraLarge.png",
            width: 44,
            textColor: "white"
        }];

this has various sizes and shows according to cluster size.

Visualizing earthquake See here its using symbols. Similarly I would like to do the same thing for clusters. How can i do that. In this case instead of the magnitude for circle size I would like to use the markers size in cluster.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.