mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Update MapProjection and ViewTransform
This commit is contained in:
parent
2a9e112a20
commit
eee71e9190
12 changed files with 34 additions and 38 deletions
|
|
@ -55,7 +55,7 @@ namespace MapControl
|
|||
/// <summary>
|
||||
/// Gets the relative map scale at the specified geographic coordinates.
|
||||
/// </summary>
|
||||
public virtual Point GetRelativeScale(double latitude, double longitude) => new Point(1d, 1d);
|
||||
public virtual Point RelativeScale(double latitude, double longitude) => new Point(1d, 1d);
|
||||
|
||||
/// <summary>
|
||||
/// Transforms geographic coordinates to a Point in projected map coordinates.
|
||||
|
|
@ -72,7 +72,7 @@ namespace MapControl
|
|||
/// <summary>
|
||||
/// Gets the relative map scale at the specified geographic Location.
|
||||
/// </summary>
|
||||
public Point GetRelativeScale(Location location) => GetRelativeScale(location.Latitude, location.Longitude);
|
||||
public Point RelativeScale(Location location) => RelativeScale(location.Latitude, location.Longitude);
|
||||
|
||||
/// <summary>
|
||||
/// Transforms a Location in geographic coordinates to a Point in projected map coordinates.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue