Skip to content

Instantly share code, notes, and snippets.

@espritm
Created April 5, 2017 13:21
Embed
What would you like to do?
public class ClusterItem : Java.Lang.Object, IClusterItem
{
public LatLng Position { get; set; }
public string Snippet { get; set; }
public string Title { get; set; }
public ClusterItem(double lat, double lon)
{
Position = new LatLng(lat, lon);
Title = lat.ToString() + ", " + lon.ToString();
}
public ClusterItem(IntPtr handle, Android.Runtime.JniHandleOwnership transfer)
: base(handle, transfer)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment