Skip to content

Commit 9ee08f2

Browse files
committed
review of tile settings
1 parent 59682cf commit 9ee08f2

File tree

2 files changed

+25
-27
lines changed

2 files changed

+25
-27
lines changed
176 KB
Loading

articles/planetary-computer/tile-settings.md

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ description: This article provides an overview of the tile settings for Microsof
44
author: 777arc
55
ms.author: marclichtman
66
ms.service: planetary-computer-pro
7-
ms.topic: concept-article
7+
ms.topic: how-to
88
ms.date: 04/09/2025
99
ms.custom:
1010
- build-2025
11+
# customer intent: As a GeoCatalog user, I want to set the tile configuration for my collection so that I can visualize my data in the Explorer UI.
1112
---
1213

1314
# Tile settings in Microsoft Planetary Computer Pro
@@ -18,15 +19,31 @@ In this article, see where to find and modify tile settings for Microsoft Planet
1819

1920
## Prerequisites
2021

21-
- You have a [STAC collection with Microsoft Planetary Computer Pro GeoCatalog](./create-collection-web-interface.md)
22+
Before you can configure tile settings, ensure the following prerequisite steps are complete:
23+
24+
1. **STAC Collection Exists:** You created a [STAC collection in Planetary Computer Pro](./create-stac-collection.md).
25+
2. **Data Ingested:** You [added STAC items](./add-stac-item-to-collection.md) containing the geospatial data assets you want to visualize into the collection.
2226

2327
## Find tile settings
2428

2529
The tile settings are found by going to the Collection page and selecting the Configuration button.
2630

27-
[ ![Screenshot of the tile settings tab in the Microsoft Planetary Computer Pro interface.](media/tile-settings-1.png) ](media/tile-settings-1.png#lightbox)
31+
[ ![Screenshot of the tile settings tab in the Microsoft Planetary Computer Pro interface.](media/tile-configuration-screenshot.png) ](media/tile-configuration-screenshot.png#lightbox)
32+
33+
The settings are in the form of a JSON object with the following properties:
34+
35+
| Property | Type | Description |
36+
|--------------------|----------|--------------------------------------------------------------------------------------------------|
37+
| `minZoom` | Integer (int32); maximum:24 | Minimum zoom level at which the Explorer UI will render items from the collection. See [Zoom Levels](https://learn.microsoft.com/azure/azure-maps/zoom-levels-and-tile-grid) for more information. |
38+
| `maxItemsPerTile` | Integer (int32) | Maximum number of items that can be rendered per tile. |
39+
| `defaultLocation` | DefaultLocation Object | Specifies the default map center coordinates and zoom level when the collection opens in the Explorer.|
40+
41+
The `defaultLocation` object has the following properties:
42+
| Property | Type | Description |
43+
|---------------|---------------------|-----------------------------------------------------------------------------|
44+
| `zoom` | Integer (int32) | The default zoom level when the collection opens in the Explorer. |
45+
| `coordinates` | Array of float [2] | The default map center as `[latitude, longitude]` in decimal degrees. |
2846

29-
The settings are in the form of a JSON object.
3047

3148
### Example tile settings
3249

@@ -44,33 +61,14 @@ The settings are in the form of a JSON object.
4461
}
4562
```
4663

47-
### Zoom level
48-
49-
High resolution imagery should have a high min zoom level to avoid experiencing latency when using the explorer. Low resolution imagery can have lower min zoom levels without issue.
64+
### Tuning Performance
5065

51-
> [!NOTE]
52-
> Planetary Computer tile settings zoom must be configured as integers, even though the Explorer interface supports zooming to non-integer levels.
53-
54-
### Default location
55-
56-
The `defaultLocation` field lets you specify the zoom level and center coordinates used when your collection first opens in the Data Explorer. For example:
57-
58-
```JSON
59-
{
60-
"defaultLocation": {
61-
"zoom": 12,
62-
"coordinates": [
63-
8.9637,
64-
-79.5437
65-
]
66-
}
67-
}
68-
```
66+
It is recommended to pair a higher minimum zoom level with high resolution imagery. This will avoid experiencing additional latency when using the Explorer when at low zoom levels. Low resolution imagery can have lower min zoom levels without issue.
6967

7068
> [!NOTE]
71-
> In the list of items, there's a menu item called "Set view as default location". This isn't currently enabled.
69+
> The minimum zoom level for a given map view will be greater of the minimum zoom level for the [render configuration](./render-configuration.md) and the tile settings. For example, if the tile setting `minZoom` level is set to `6` but the render configuration `minZoom` level is set to `12`, the explorer will not start rendering tiles until zoom level 12.
70+
7271

73-
[ ![Screenshot of the save view as default location option in the tile settings interface.](media/tile-settings-save-view-as.png) ](media/tile-settings-save-view-as.png#lightbox)
7472

7573
## Related content
7674

0 commit comments

Comments
 (0)