We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4408121 + eb4e84c commit 91341f3Copy full SHA for 91341f3
articles/azure-maps/zoom-levels-and-tile-grid.md
@@ -430,7 +430,7 @@ namespace AzureMaps
430
var tl = GlobalPixelToPosition(new double[] { left, top }, zoom, tileSize);
431
var br = GlobalPixelToPosition(new double[] { right, bottom }, zoom, tileSize);
432
433
- //Boudning box in the format: [west, south, east, north];
+ //Bounding box in the format: [west, south, east, north];
434
var bounds = new double[] { tl[0], br[1], br[0], tl[1] };
435
436
return GetQuadkeysInBoundingBox(bounds, zoom, tileSize);
@@ -838,7 +838,7 @@ module AzureMaps {
838
var tl = this.GlobalPixelToPosition([left, top], zoom, tileSize);
839
var br = this.GlobalPixelToPosition([right, bottom], zoom, tileSize);
840
841
842
var bounds = [tl[0], br[1], br[0], tl[1]];
843
844
return this.GetQuadkeysInBoundingBox(bounds, zoom, tileSize);
0 commit comments