Esempio n. 1
0
 /// <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())
 {
 }
Esempio n. 2
0
 /// <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())
 {
 }
Esempio n. 3
0
 /// <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())
 {
 }