Is there any code for Point Clustering in android? How can i load thousand pinpoint without having performance issues?

link|improve this question

downvote? That's news.! – weakwire Sep 16 '11 at 16:31
Where's your question? – Pedantic Sep 16 '11 at 16:34
1  
it's not a question. As i stated it's a faq .. sort of tutorial. "Saw that there was nothing out for the community so i would like to share" – weakwire Sep 16 '11 at 16:36
2  
Thanks for sharing. Though it's encouraged to post informative knowledge, these kind of posts should stick with SOs Q&A format. This means you should formulate a question and answer it. See this blog post. You can also accept your own answers, theres even a badge for that. I'll upvote this to compensate for the downvotes - they're a bit harsh imho. – alextsc Sep 16 '11 at 16:52
updated post to Q&A format. – weakwire Sep 16 '11 at 17:49
show 1 more comment
feedback

1 Answer

up vote 18 down vote accepted

Last night i got into PointClustering on Android MapView. Saw that there was nothing out for the community so i would like to share.

Groups the geopoints if the projection of them in the mapView is too close. Also renders only the visible poins.

Sorry for the code is not finished yet but you get the idea.

Before i jump into code here is an example of that use. enter image description here

Let's begin with the extended MapView MMapView.java

private PMapViewOverlay itemizedOverlay;
private List<Overlay> mapOverlays;
private List<GeoPoint> geoPoints = new ArrayList<GeoPoint>();
in the constructor

mapOverlays = getOverlays();
itemizedOverlay = new PMapViewOverlay(drawable, context);



private GeoPoint getPoint(double lat, double lon) {
        return (new GeoPoint((int) (lat * 1000000.0), (int) (lon * 1000000.0)));
    }



public void putPoint(double lat, double lon, boolean isMyPosition {
        GeoPoint geo= new GeoPoint();
        geo = getPoint(lat, lon);


    /*
     * Remove doubles
     */
    Boolean alreadyExists = false;
    for (GeoPoint item : geoPoints) {
        if (item.geoPoint.getLatitudeE6() == geo
                .getLatitudeE6()
                && item.geoPoint.getLongitudeE6() == geo
                        .getLongitudeE6()) {
            alreadyExists = true;
        }
    }
    if (!alreadyExists) {
        geoPoints.add(geo);

    }

}



   /*
 * Place the overlays
 */

public void placeOverlays() {
    itemizedOverlay.removeAllOverlays();        
    getOverlays().clear();
    mapOverlays.clear();        
    for (GeoPoint item : geoPoints) {
        OverlayItemExtended overlayitem = new OverlayItemExtended(
                item, null, null);

            //Here is where the magic happens
        itemizedOverlay.addOverlayItemClustered(overlayitem, this,
                geoPoints.size());

    }
    mapOverlays.add(itemizedOverlay);
    if (myGeoPoint != null) {
        OverlayItemExtended myoverlayitem = new OverlayItemExtended(
                myGeoPoint, null, null);            

    }
}

int count; int oldZoomLevel = -1;

/*
*Update the points at panned / zoom etc
*/
    public void dispatchDraw(Canvas canvas) {
        super.dispatchDraw(canvas);
        if (getZoomLevel() != oldZoomLevel) {           
            oldZoomLevel = getZoomLevel();
        }
        placeOverlays();
    }

As you show i have

OverlayItemExtended

that extends OverlayItem. It adds functionality to enable clusterin to them

public class OverlayItemExtended extends OverlayItem {
    public boolean isClustered = false;
    public boolean isMaster = true;
    public OverlayItemExtended parent;
    public Stack<OverlayItemExtended> slaves = new Stack<OverlayItemExtended>();

    public OverlayItemExtended(GeoPoint point, String title, String snippet) {
        super(point, title, snippet);
    }

//Some getters setters here. }

And now addOverlayItemClustered() from the extended ItemizedOverlay class

PMapViewOverlay.java

public PMapViewOverlay(Drawable defaultMarker, Context context) {
    super(boundCenterBottom(defaultMarker));
    this.context = context;
    // this.defaultMarker = defaultMarker;
    emptyDrawable = context.getResources().getDrawable(R.drawable.bicon);
}




@Override
protected OverlayItemExtended createItem(int i) {
    return mOverlays.get(i);
}




@Override
public int size() {
    return mOverlays.size();
}




public void addOverlayItem(OverlayItemExtended overlay) {
    mOverlays.add(overlay);
    populate();
}

public void removeAllOverlays() {
    mOverlays.clear();
    populate();
}
public void removePointsButMe() {
    for (int i = 0; i < mOverlays.size(); i++) {
        OverlayItemExtended overlay = mOverlays.get(i);
        if (overlay.isMe) {
            mOverlays.clear();
            addOverlayItem(overlay);
            break;
        }
    }
    populate();
}


public void addOverlayItemClustered(OverlayItemExtended thisOverlay,
            MapView mapView, int totalPoints) {
        for (OverlayItemExtended otherOverlay : mOverlays) {
            /*
             * Thresshold for the clustering
             */
            /*
             * Zoom level >15 don't cluster If less than Max_Visible_points
             * don't cluster
             */
            if (mapView.getZoomLevel() >= 14
                    || (MAX_VISIBLE_POINTS > totalPoints)
                    && PointCluster.getOverLayItemDistance(thisOverlay,
                            otherOverlay, mapView) > 60) {
                mOverlays.add(thisOverlay);
                populate();
                return;
            }
            if (PointCluster.getOverLayItemDistance(thisOverlay, otherOverlay,
                    mapView) < 240 && !thisOverlay.isClustered) {
//Here is where the clustering actually happens
                if (otherOverlay.isMaster) {
                    thisOverlay.isMaster = false;
                    // otherOverlay.isMaster = false;
                    thisOverlay.isClustered = true;
                    otherOverlay.isClustered = true;
                    otherOverlay.slaves.push(thisOverlay);
                    thisOverlay.parent = otherOverlay;
                } else if (PointCluster.getOverLayItemDistance(thisOverlay,
                        otherOverlay.parent, mapView) < 240
                        && otherOverlay.isClustered) {
                    thisOverlay.isMaster = false;
                    thisOverlay.isClustered = true;
                    thisOverlay.parent = otherOverlay.parent;
                    otherOverlay.parent.slaves.push(thisOverlay);
                }
            }
        }
        mOverlays.add(thisOverlay);
        populate();
    }

and finally draw the clustered points in the overlay

(Code in PMapViewOverlay.java)

@Override
    public void draw(Canvas canvas, MapView mapView, boolean shadow) {
        super.draw(canvas, mapView, shadow);

        // cycle through all overlays
        for (int index = 0; index < mOverlays.size(); index++) {
            OverlayItemExtended item = mOverlays.get(index);

            // Converts lat/lng-Point to coordinates on the screen
            GeoPoint point = item.getPoint();
            Point ptScreenCoord = new Point();
            mapView.getProjection().toPixels(point, ptScreenCoord);

            // Paint
            if (!item.isClustered) {
                Paint paint = new Paint();
                paint.setTextAlign(Paint.Align.CENTER);
                paint.setTextSize(30);
                paint.setAntiAlias(true);
                paint.setARGB(150, 0, 0, 0);
                // show text to the right of the icon
                canvas.drawText(item.getTitle(), ptScreenCoord.x,
                        ptScreenCoord.y + 30, paint);
            }
            if (!item.isMaster || item.isMe)
                continue;
            /*
             * Draw the fog beween the slaves
             */
            float minX = Float.MAX_VALUE;
            float maxX = Float.MIN_VALUE;
            float minY = Float.MAX_VALUE;
            float maxY = Float.MIN_VALUE;
            maxX = Math.max(ptScreenCoord.x, maxX);
            minX = Math.min(ptScreenCoord.x, minX);
            maxY = Math.max(ptScreenCoord.y, maxY);
            minY = Math.min(ptScreenCoord.y, minY);
            for (int i = 0; i < item.slaves.size(); i++) {
                OverlayItemExtended slaveItem = item.slaves.get(i);
                GeoPoint slavePoint = slaveItem.getPoint();
                Point slavePtScreenCoord = new Point();
                mapView.getProjection()
                        .toPixels(slavePoint, slavePtScreenCoord);
                float x = slavePtScreenCoord.x;
                float y = slavePtScreenCoord.y;

                maxX = Math.max(x, maxX);
                minX = Math.min(x, minX);
                maxY = Math.max(y, maxY);
                minY = Math.min(y, minY);

            }
            float centerX = (maxX + minX) / 2;
            float centerY = (maxY + minY) / 2;
            double distance = findDistance(minX, minY, maxX, maxY);
            // Log.e("Distance", "Diastance " + distance);
            Paint linePaint = new Paint();
            linePaint.setColor(android.graphics.Color.RED);
            linePaint.setStyle(Paint.Style.FILL);
            linePaint.setAlpha(35);

            canvas.drawCircle(centerX, centerY, (float) (distance / 2) + 10,
                    linePaint);
            if (item.slaves.size() > 0) {
                Paint paint = new Paint();
                paint.setTextAlign(Paint.Align.CENTER);
                paint.setTextSize(45);
                paint.setAntiAlias(true);
                paint.setARGB(255, 0, 0, 0);
                // show text to the right of the icon

                Paint boxPaint = new Paint();
                boxPaint.setColor(android.graphics.Color.WHITE);
                boxPaint.setStyle(Paint.Style.FILL);
                boxPaint.setAlpha(140);
                canvas.drawCircle(centerX, centerY - (paint.getTextSize() / 2),
                        paint.getTextSize(), boxPaint);
                canvas.drawText(item.slaves.size() + 1 + "", centerX, centerY,
                        paint);
            }

        }

}

private double findDistance(float x1, float y1, float x2, float y2) {
    return Math.sqrt(((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2)));
}

Also note that if you want only the visible Points to be rendered you can filter the points before adding them to the overlay.

PointCluster class

public final static int MAX_VISIBLE_POINTS = 5;    
private static List<GeoPoint> clusteredGeoPoints;

public class PointCluster {  

    public static List<GeoPoint> getVisiblePoints(
            List<GeoPoint> geoPoints, MapView mapView) {
        clusteredGeoPoints = new ArrayList<GeoPoint>();
        int count = 0;
        for (GeoPoint point : geoPoints) {
//          if (count >= MAX_VISIBLE_POINTS) {
//              return clusteredGeoPoints;
//          }
            if (isCurrentLocationVisible(point, mapView)) {
                clusteredGeoPoints.add(point);
                count++;
            }
        }
        return clusteredGeoPoints;
    }

    private static boolean isCurrentLocationVisible(GeoPoint point,
            MapView mapView) {
        Rect currentMapBoundsRect = new Rect();
        Point currentDevicePosition = new Point();

        mapView.getProjection().toPixels(point, currentDevicePosition);
        mapView.getDrawingRect(currentMapBoundsRect);

        return currentMapBoundsRect.contains(currentDevicePosition.x,
                currentDevicePosition.y);

    }


    public static double getOverLayItemDistance(OverlayItemExtended item1,
            OverlayItemExtended item2, MapView mapView) {
        GeoPoint point = item1.getPoint();
        Point ptScreenCoord = new Point();
        mapView.getProjection().toPixels(point, ptScreenCoord);

        GeoPoint slavePoint = item2.getPoint();
        Point slavePtScreenCoord = new Point();
        mapView.getProjection().toPixels(slavePoint, slavePtScreenCoord);
        return findDistance(ptScreenCoord.x, ptScreenCoord.y,
                slavePtScreenCoord.x, slavePtScreenCoord.y);
    }

    private static double findDistance(float x1, float y1, float x2, float y2) {
        return Math.sqrt(((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2)));
    }
}
link|improve this answer
Nice recovery. 15chars. – Pedantic Sep 17 '11 at 4:54
Nice answer! But can you post the code for PointCluster? – pandre Sep 21 '11 at 10:54
I think there are a few things missing in your post, such as where is public void draw(Canvas canvas, MapView mapView, boolean shadow) supposed to go? – pandre Sep 21 '11 at 11:31
1  
And what does OverlayItemExtended's getName() returns? Your post would be greatly improved if you provided the whole source – pandre Sep 21 '11 at 11:41
I edited the answer based on your suggestion. getName() is the getTitle() of the OverlayItem ,or what the point should render as a name to the map. – weakwire Sep 21 '11 at 14:07
show 13 more comments
feedback

Your Answer

 
or
required, but never shown

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