MapBase.InsideViewBounds

This commit is contained in:
ClemensFischer 2024-08-30 17:35:30 +02:00
parent 02e138eb7c
commit 6a4046a838
3 changed files with 5 additions and 5 deletions

View file

@ -374,7 +374,7 @@ namespace MapControl
}
}
internal bool InsideViewport(Point point)
internal bool InsideViewBounds(Point point)
=> point.X >= 0d && point.Y >= 0d && point.X <= ActualWidth && point.Y <= ActualHeight;
internal double CoerceLongitude(double longitude)