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
//Draw a single marker | |
protected override void OnBeforeClusterItemRendered(Java.Lang.Object p0, MarkerOptions markerOptions) | |
{ | |
//Icon for single marker | |
markerOptions.SetIcon(BitmapDescriptorFactory.FromResource(Resource.Drawable.marker)); | |
//Text for Info Window | |
markerOptions.SetTitle("Grenoble"); | |
markerOptions.SetSnippet(markerOptions.Position.Latitude.ToString() + ", " + markerOptions.Position.Longitude.ToString()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment