From 11fc4a3117b4a7e39afed5182538e171c9748b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Mon, 4 Jul 2022 14:46:37 +0200 Subject: [PATCH] occtax: remove wrong GeoJSON typing --- .../occtax/frontend/app/occtax-form/map/occtax-map.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/occtax/frontend/app/occtax-form/map/occtax-map.service.ts b/contrib/occtax/frontend/app/occtax-form/map/occtax-map.service.ts index 97e72c5a45..3a383a5ef5 100644 --- a/contrib/occtax/frontend/app/occtax-form/map/occtax-map.service.ts +++ b/contrib/occtax/frontend/app/occtax-form/map/occtax-map.service.ts @@ -3,14 +3,13 @@ import { FormControl, Validators } from "@angular/forms"; import { isEqual } from "lodash"; import { BehaviorSubject, Observable, of } from "rxjs"; import { filter, map, switchMap } from "rxjs/operators"; -import { GeoJSON } from "leaflet"; import { OcctaxFormService } from "../occtax-form.service"; import { OcctaxFormParamService } from "../form-param/form-param.service"; @Injectable() export class OcctaxFormMapService { private _geometry: FormControl; - public geojson: BehaviorSubject = new BehaviorSubject(null); + public geojson: BehaviorSubject = new BehaviorSubject(null); public markerCoordinates; public leafletDrawGeoJson;