/// <summary> /// Initializes a new instance of the <see cref="OsmSharp.Android.UI.MapMarker"/> class. /// </summary> /// <param name="location">Coordinate.</param> public MapMarker(Context context, GeoCoordinate location) : this(context, location, MapMarkerAlignmentType.CenterBottom, MapMarker.GetDefaultImage()) { }
/// <summary> /// Initializes a new instance of the <see cref="OsmSharp.Android.UI.MapMarker"/> class. /// </summary> /// <param name="location">Coordinate.</param> /// <param name="alignment">The alignment.</param> public MapMarker(Context context, GeoCoordinate location, MapMarkerAlignmentType alignment) : this(context, location, alignment, MapMarker.GetDefaultImage()) { }
/// <summary> /// Initializes a new instance of the <see cref="OsmSharp.Android.UI.MapMarker"/> class. /// </summary> /// <param name="context">Context.</param> /// <param name="coordinate">Coordinate.</param> internal MapMarker(Context context, GeoCoordinate coordinate) : this(context, coordinate, MapMarker.GetDefaultImage()) { }