Updated ViewTransform and WmsImageLayer

This commit is contained in:
ClemensFischer 2026-01-01 12:50:19 +01:00
parent 4628395c37
commit f8f6fdc973
5 changed files with 60 additions and 129 deletions

View file

@ -32,7 +32,7 @@ namespace MapControl
public override Point? LocationToMap(double latitude, double longitude)
{
#if NETFRAMEWORK || UWP
#if NETFRAMEWORK
static double Atanh(double x) => Math.Log((1d + x) / (1d - x)) / 2d;
#else
static double Atanh(double x) => Math.Atanh(x);