Interface ClusterItem
-
public interface ClusterItemClusterItem represents a marker on the map.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.android.gms.maps.model.LatLnggetPosition()The position of this marker.java.lang.StringgetSnippet()The description of this marker.java.lang.StringgetTitle()The title of this marker.java.lang.FloatgetZIndex()The z-index of this marker.
-
-
-
Method Detail
-
getPosition
@NonNull com.google.android.gms.maps.model.LatLng getPosition()
The position of this marker. This must always return the same value.
-
getTitle
@Nullable java.lang.String getTitle()
The title of this marker.
-
getSnippet
@Nullable java.lang.String getSnippet()
The description of this marker.
-
getZIndex
@Nullable java.lang.Float getZIndex()
The z-index of this marker.
-
-