diff --git a/website/src/lib/components/Map.svelte b/website/src/lib/components/Map.svelte
index e88dc0e7..d810117a 100644
--- a/website/src/lib/components/Map.svelte
+++ b/website/src/lib/components/Map.svelte
@@ -71,7 +71,11 @@
})
);
- newMap.addControl(new mapboxgl.NavigationControl());
+ newMap.addControl(
+ new mapboxgl.NavigationControl({
+ visualizePitch: true
+ })
+ );
if (geocoder) {
newMap.addControl(
diff --git a/website/src/lib/docs/en/map-controls.mdx b/website/src/lib/docs/en/map-controls.mdx
index 8a90980f..a1eb6f56 100644
--- a/website/src/lib/docs/en/map-controls.mdx
+++ b/website/src/lib/docs/en/map-controls.mdx
@@ -12,7 +12,7 @@ title: Map controls
### Map navigation
-The controls at the top allow you to zoom in and out , and to change the orientation of the map .
+The controls at the top allow you to zoom in and out , and to change the orientation and tilt of the map .