XAML-Map-Control/MapControl/Shared/CenteredBoundingBox.cs
2025-11-26 23:34:22 +01:00

12 lines
343 B
C#

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