You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/getting_started_with_titiler.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ def read_index():
88
88
```
89
89
90
90
> 💡 **Code Breakdown**:
91
-
>
91
+
>
92
92
> - We create a FastAPI app and add CORS middleware to allow web maps to access our images
93
93
> - The `TilerFactory()` creates all the endpoints needed for serving COG tiles
94
94
> - We include those endpoints in our app with `app.include_router()`
@@ -102,7 +102,7 @@ uvicorn main:app --reload
102
102
```
103
103
You should see output similar to this:
104
104
105
-

105
+

106
106
107
107
> 💡 **The `--reload` flag** automatically restarts the server whenever you change your code - perfect for development!
108
108
@@ -112,11 +112,11 @@ Open your browser and go to:
112
112
113
113
``` http://127.0.0.1:8000/ ``` - See your welcome message
114
114
115
-

115
+

116
116
117
117
``` http://127.0.0.1:8000/docs ``` - Explore the interactive API documentation. The `/docs` page is your mission control center. It shows all the endpoints TiTiler created for you and lets you test them directly in your browser:
118
118
119
-

119
+

120
120
121
121
## Visualizing Your Geospatial Data
122
122
@@ -156,7 +156,7 @@ from rio_tiler.io import Reader
156
156
import morecantile
157
157
158
158
# Web Mercator is the default tiling scheme for most web map clients
0 commit comments