Updated map projections

This commit is contained in:
ClemensFischer 2026-01-29 23:27:39 +01:00
parent d790200cf1
commit 359cbe8908
4 changed files with 84 additions and 52 deletions

View file

@ -43,8 +43,8 @@ namespace MapControl
public override Location MapToLocation(double x, double y)
{
return new Location(
YToLatitude(y / EquatorialRadius * 180d / Math.PI),
return new Location(YToLatitude(
y / EquatorialRadius * 180d / Math.PI),
x / EquatorialRadius * 180d / Math.PI);
}