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. ja v a2 s . c om import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.MarkerOptions; /** * ClusterItem represents a marker on the map. */ public interface ClusterItem { /** * The position of this marker. This must always return the same value. */ LatLng getPosition(); }