mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Update BoundingBoxTileSource.cs
This commit is contained in:
parent
b80ef6b7a2
commit
a684b88b5f
|
|
@ -5,7 +5,13 @@
|
|||
using System;
|
||||
using System.Globalization;
|
||||
using System.Threading.Tasks;
|
||||
#if WINUI
|
||||
using Microsoft.UI.Xaml.Media;
|
||||
#elif UWP
|
||||
using Windows.UI.Xaml.Media;
|
||||
#else
|
||||
using System.Windows.Media;
|
||||
#endif
|
||||
|
||||
namespace MapControl
|
||||
{
|
||||
|
|
@ -52,7 +58,8 @@ namespace MapControl
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the bounding box in meters of a standard Web Mercator tile, specified by grid column and row indices and zoom level.
|
||||
/// Gets the bounding box in meters of a standard Web Mercator tile,
|
||||
/// specified by grid column and row indices and zoom level.
|
||||
/// </summary>
|
||||
public static void GetTileBounds(int column, int row, int zoomLevel,
|
||||
out double west, out double south, out double east, out double north)
|
||||
|
|
|
|||
Loading…
Reference in a new issue