Back to project page downtown.
The source code is released under:
GNU General Public License
If you think the Android project downtown 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; /* w w w . j a v a 2s . c o m*/ 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(); }