Skip to content

Commit 99b1142

Browse files
committed
decrease the minZoom level to allow users to see the whole map
1 parent a9c69ab commit 99b1142

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/TaskClusterMap/TaskClusterMap.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import "./TaskClusterMap.scss";
3232
const VisibleTileLayer = WithVisibleLayer(SourcedTileLayer);
3333

3434
export const MAX_ZOOM = 18;
35-
export const MIN_ZOOM = 2;
35+
export const MIN_ZOOM = 0;
3636

3737
/**
3838
* An uncluster option will be offered if no more than number of tasks
@@ -232,7 +232,7 @@ export const TaskClusterMap = (props) => {
232232
<MapContainer
233233
attributionControl={false}
234234
center={props.center}
235-
minZoom={2}
235+
minZoom={0}
236236
maxZoom={18}
237237
maxBounds={[
238238
[-90, -180],

0 commit comments

Comments
 (0)