Skip to content

Commit eb4e84c

Browse files
committed
Fix typo: Boudning box -> Bounding box
1 parent 24db0cb commit eb4e84c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-maps/zoom-levels-and-tile-grid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ namespace AzureMaps
430430
var tl = GlobalPixelToPosition(new double[] { left, top }, zoom, tileSize);
431431
var br = GlobalPixelToPosition(new double[] { right, bottom }, zoom, tileSize);
432432

433-
//Boudning box in the format: [west, south, east, north];
433+
//Bounding box in the format: [west, south, east, north];
434434
var bounds = new double[] { tl[0], br[1], br[0], tl[1] };
435435

436436
return GetQuadkeysInBoundingBox(bounds, zoom, tileSize);
@@ -838,7 +838,7 @@ module AzureMaps {
838838
var tl = this.GlobalPixelToPosition([left, top], zoom, tileSize);
839839
var br = this.GlobalPixelToPosition([right, bottom], zoom, tileSize);
840840

841-
//Boudning box in the format: [west, south, east, north];
841+
//Bounding box in the format: [west, south, east, north];
842842
var bounds = [tl[0], br[1], br[0], tl[1]];
843843

844844
return this.GetQuadkeysInBoundingBox(bounds, zoom, tileSize);

0 commit comments

Comments
 (0)