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