mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Update comments
This commit is contained in:
parent
a0b887fc7c
commit
b253d0696a
8 changed files with 26 additions and 25 deletions
|
|
@ -57,18 +57,18 @@ namespace MapControl
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Transforms a Location in geographic coordinates to a Point in cartesian map coordinates.
|
||||
/// Transforms a Location in geographic coordinates to a Point in projected map coordinates.
|
||||
/// </summary>
|
||||
public abstract Point LocationToMap(Location location);
|
||||
|
||||
/// <summary>
|
||||
/// Transforms a Point in cartesian map coordinates to a Location in geographic coordinates.
|
||||
/// Transforms a Point in projected map coordinates to a Location in geographic coordinates.
|
||||
/// Returns null when the Point can not be transformed.
|
||||
/// </summary>
|
||||
public abstract Location MapToLocation(Point point);
|
||||
|
||||
/// <summary>
|
||||
/// Transforms a BoundingBox in geographic coordinates to a Rect in cartesian map coordinates.
|
||||
/// Transforms a BoundingBox in geographic coordinates to a Rect in projected map coordinates.
|
||||
/// </summary>
|
||||
public virtual Rect BoundingBoxToRect(BoundingBox boundingBox)
|
||||
{
|
||||
|
|
@ -78,7 +78,7 @@ namespace MapControl
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Transforms a Rect in cartesian map coordinates to a BoundingBox in geographic coordinates.
|
||||
/// Transforms a Rect in projected map coordinates to a BoundingBox in geographic coordinates.
|
||||
/// Returns null when the Rect can not be transformed.
|
||||
/// </summary>
|
||||
public virtual BoundingBox RectToBoundingBox(Rect rect)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue