MapProjection.RelativeTransform

This commit is contained in:
ClemensFischer 2026-01-27 22:56:09 +01:00
parent a0e82964ef
commit 8d25310b8e
19 changed files with 59 additions and 50 deletions

View file

@ -28,7 +28,7 @@ namespace MapControl
CrsId = crsId;
}
public override Matrix RelativeScale(double latitude, double longitude)
public override Matrix RelativeTransform(double latitude, double longitude)
{
return new Matrix(1d / Math.Cos(latitude * Math.PI / 180d), 0d, 0d, 1d, 0d, 0d);
}