Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SomeTestProject.MapMarker"/> class.
 /// </summary>
 /// <param name="location">Coordinate.</param>
 public MapMarker(GeoCoordinate location)
     : this(location, MapControlAlignmentType.CenterBottom, MapMarker.GetDefaultImage())
 {
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SomeTestProject.MapMarker"/> class.
 /// </summary>
 /// <param name="location">Coordinate.</param>
 /// <param name="marker">Alignment.</param>
 public MapMarker(GeoCoordinate location, MapControlAlignmentType alignment)
     : this(location, alignment, MapMarker.GetDefaultImage())
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SomeTestProject.MapMarker"/> class.
 /// </summary>
 /// <param name="point">Point.</param>
 /// <param name="marker">Alignment.</param>
 public MapMarker(CGPoint point, MapControlAlignmentType alignment)
     : this(point, alignment, MapMarker.GetDefaultImage())
 {
 }