From b2951a1d8e3764e7ba01b144e33166ab06e15c60 Mon Sep 17 00:00:00 2001 From: Sergey Vartanov Date: Thu, 27 Oct 2022 01:31:27 +0400 Subject: [PATCH] Increase zoom level for elements. --- map_machine/element/grid.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/map_machine/element/grid.py b/map_machine/element/grid.py index f78f723..889a1e5 100644 --- a/map_machine/element/grid.py +++ b/map_machine/element/grid.py @@ -88,7 +88,11 @@ class Grid: def draw(self, output_path: Path) -> None: """Draw grid.""" configuration: MapConfiguration = MapConfiguration( - SCHEME, level="all", credit=None, show_credit=self.show_credit + SCHEME, + level="all", + credit=None, + show_credit=self.show_credit, + zoom_level=19.0, ) size = ( (self.max_i + self.margin * 2.0) * self.x_step,