XAML-Map-Control/MapControl/Shared/CenteredBoundingBox.cs
2025-09-15 17:46:31 +02:00

12 lines
351 B
C#

using System;
namespace MapControl
{
public class CenteredBoundingBox(Location center, double width, double height) : BoundingBox
{
public override Location Center { get; } = center;
public override double Width { get; } = Math.Max(width, 0d);
public override double Height { get; } = Math.Max(height, 0d);
}
}