feat(map in info): change zoom level to better ones

This commit is contained in:
ashilkn 2024-01-31 19:22:44 +05:30
parent b2f79d66d0
commit 37638cc9ab

View file

@ -207,9 +207,9 @@ class _InfoMapState extends State<InfoMap> {
widget.file.location!.latitude!,
widget.file.location!.longitude!,
),
minZoom: 9,
maxZoom: 9,
initialZoom: 9,
minZoom: 12,
maxZoom: 12,
initialZoom: 12,
debounceDuration: 0,
bottomSheetDraggableAreaHeight: 0,
showControls: false,
@ -228,7 +228,7 @@ class _InfoMapState extends State<InfoMap> {
widget.file.location!.latitude!,
widget.file.location!.longitude!,
),
initialZoom: 9 + 1.5,
initialZoom: 16,
),
),
);