package com.google.maps.android.clustering; 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(); }