Browse Source

🐛 change blur range

jmacura 3 years ago
parent
commit
e1df52e85e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/app/calculator/calculator.service.ts

+ 2 - 2
src/app/calculator/calculator.service.ts

@@ -31,12 +31,12 @@ export type Index = IndexPreFlight | IndexOnTheFly;
 @Injectable({providedIn: 'root'})
 export class CalculatorService {
   AVAILABLE_PRODUCTS = [...INDICES_PRE_FLIGHT, ...INDICES_ON_THE_FLY].sort();
-  BLUR_MIN_VALUE = 0 as const;
+  BLUR_MIN_VALUE = 1 as const;
   BLUR_MAX_VALUE = 5 as const;
   MIN_LPIS_VISIBLE_ZOOM = 15 as const;
   SERVICE_BASE_URL = 'https://fieldcalc.lesprojekt.cz/' as const;
   availableDates: Array<string>;
-  blurValue = 0;
+  blurValue = 1;
   dateRangeSelects: Subject<{date: string}> = new Subject();
   dateCalendarSelects: Subject<{date: string}> = new Subject();
   lpisLoading = false;