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