Back to project page clusterkraf.
The source code is released under:
Apache License
If you think the Android project clusterkraf 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.twotoasters.clusterkraf; //from w ww . j ava2 s . c o m import android.view.View; import com.google.android.gms.maps.model.Marker; /** * Created by rafa on 03/09/13. */ public interface InfoWindowDownstreamAdapter { public View getInfoContents(Marker marker, ClusterPoint clusterPoint); public View getInfoWindow(Marker marker, ClusterPoint clusterPoint); }