소스 검색

🐛 change blur range

jmacura 3 년 전
부모
커밋
e1df52e85e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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;