|
|
@@ -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;
|