Back to project page android-maps-utils.
The source code is released under:
Apache License
If you think the Android project android-maps-utils listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.google.maps.android.clustering; /*from ww w.j a va 2s . com*/ import com.google.android.gms.maps.model.LatLng; import java.util.Collection; /** * A collection of ClusterItems that are nearby each other. */ public interface Cluster<T extends ClusterItem> { public LatLng getPosition(); Collection<T> getItems(); int getSize(); }