Removed GeoApiProjection.GetBboxValue

This commit is contained in:
ClemensFischer 2024-04-17 20:10:45 +02:00
parent b8f4af969d
commit a741877e80
4 changed files with 9 additions and 17 deletions

View file

@ -8,7 +8,6 @@ using GeoAPI.Geometries;
using ProjNet.CoordinateSystems;
using ProjNet.CoordinateSystems.Transformations;
using System;
using System.Globalization;
#if !WINUI && !UWP
using System.Windows;
#endif
@ -127,11 +126,5 @@ namespace MapControl.Projections
return new Location(coordinate.Y, coordinate.X);
}
public override string GetBboxValue(MapRect rect)
{
return string.Format(CultureInfo.InvariantCulture,
"{0},{1},{2},{3}", rect.XMin, rect.YMin, rect.XMax, rect.YMax);
}
}
}