Skip to content

Commit

Permalink
occtax: remove wrong GeoJSON typing
Browse files Browse the repository at this point in the history
  • Loading branch information
bouttier committed Oct 17, 2022
1 parent 5267f76 commit 11fc4a3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<GeoJSON> = new BehaviorSubject(null);
public geojson: BehaviorSubject<any> = new BehaviorSubject(null);
public markerCoordinates;
public leafletDrawGeoJson;

Expand Down

0 comments on commit 11fc4a3

Please sign in to comment.