Updated MapImageLayer

This commit is contained in:
Clemens 2022-02-22 23:09:19 +01:00
parent 7e335112cd
commit ba1a5724ee
2 changed files with 11 additions and 10 deletions

View file

@ -30,6 +30,12 @@ namespace MapControl
East = east;
}
public BoundingBox(BoundingBox boundingBox, double longitudeOffset)
: this(boundingBox.South, boundingBox.West + longitudeOffset,
boundingBox.North, boundingBox.East + longitudeOffset)
{
}
public double West { get; set; }
public double East { get; set; }