Updated WmsImageLayer

This commit is contained in:
ClemensFischer 2025-12-31 10:57:27 +01:00
parent f059d2174d
commit 72f3764602
3 changed files with 25 additions and 15 deletions

View file

@ -39,7 +39,7 @@ namespace MapControl
return new Matrix(m.M11, m.M12, m.M21, m.M22, m.OffsetX, m.OffsetY);
}
public Point Transform(Point p)
public readonly Point Transform(Point p)
{
return new Point(
M11 * p.X + M21 * p.Y + OffsetX,