diff --git a/application/frontend/src/app/routes-chart/containers/routes-row/routes-row.component.ts b/application/frontend/src/app/routes-chart/containers/routes-row/routes-row.component.ts index 1298eaf9..5b17535b 100644 --- a/application/frontend/src/app/routes-chart/containers/routes-row/routes-row.component.ts +++ b/application/frontend/src/app/routes-chart/containers/routes-row/routes-row.component.ts @@ -245,6 +245,9 @@ export class RoutesRowComponent implements OnChanges, OnInit, OnDestroy { }) ); this.mapService.setBounds(bounds, false); + if (this.mapService.map.getZoom() > 16) { + this.mapService.map.setZoom(16); + } }); } }