From 7e53f3a97e5c1b7dbee4318823b1a926751dc7ea Mon Sep 17 00:00:00 2001 From: Alireza Adli Date: Thu, 12 Oct 2023 17:07:12 -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 93088172..43124a29 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: 13, // starting zoom + zoom: 15, // starting zoom }); // Optionally, you can add more configuration options or features to your map here. @@ -23,7 +23,7 @@ export function CityMap() { }, []); return ( -
+
); }