From c71f5c82617f7299b881b99966f40a8e75031aff Mon Sep 17 00:00:00 2001 From: Alireza Adli Date: Thu, 12 Oct 2023 17:00:02 -0400 Subject: [PATCH] Change the width and zoom --- app/src/frontend/map/layers/city-base-map-layer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/frontend/map/layers/city-base-map-layer.tsx b/app/src/frontend/map/layers/city-base-map-layer.tsx index 4b677b3e..e479a812 100644 --- a/app/src/frontend/map/layers/city-base-map-layer.tsx +++ b/app/src/frontend/map/layers/city-base-map-layer.tsx @@ -13,7 +13,7 @@ export function CityMap() { container: 'map', // container ID style: 'mapbox://styles/mapbox/streets-v12', // style URL center: [-73.5801403, 45.4962261], // starting position [lng, lat] - zoom: 9, // starting zoom + zoom: 13, // starting zoom }); // Optionally, you can add more configuration options or features to your map here. @@ -23,7 +23,7 @@ export function CityMap() { }, []); return ( -
+
); }