mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Version 4.12.2 Fixed MapProjections.
This commit is contained in:
parent
8491a4fc7c
commit
a7d3edf154
|
|
@ -54,7 +54,7 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Data.SQLite">
|
||||
<Version>2.2.3</Version>
|
||||
<Version>2.2.4</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
||||
<Version>6.2.8</Version>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ namespace MapControl.Projections
|
|||
|
||||
if (scaleFactor != null)
|
||||
{
|
||||
TrueScale = scaleFactor.Value * MetersPerDegree;
|
||||
TrueScale = scaleFactor.Value * Wgs84MetersPerDegree;
|
||||
}
|
||||
|
||||
if (!IsNormalCylindrical)
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ namespace MapControl.Projections
|
|||
public PolarStereographicProjection(string crsId, bool north, double scaleFactor = 1d, double falseEasting = 0d, double falseNorthing = 0d)
|
||||
{
|
||||
CrsId = crsId;
|
||||
TrueScale = scaleFactor * MetersPerDegree;
|
||||
TrueScale = scaleFactor * Wgs84MetersPerDegree;
|
||||
this.north = north;
|
||||
this.scaleFactor = scaleFactor;
|
||||
this.falseEasting = falseEasting;
|
||||
|
|
|
|||
Loading…
Reference in a new issue