This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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