Skip to content

Commit

Permalink
fix(front): OCCTAX disaplaying last geometry point
Browse files Browse the repository at this point in the history
Fix --> Erreur d'affichage lors de l'enchainement de saisie de données pour le
module occtax . Si la géométrie saisie pour le premier  relevé est un polygon/polyline et que le second relevé est un point ce dernier n'est pas affiché au retour sur le composant map pour le relevé suivant.

Closes PnX-SI#2657
[Refs_ticket]: PnX-SI#2657
Reviewed-by: andriacap
  • Loading branch information
andriacap committed Aug 17, 2023
1 parent 77445ec commit 5b7fc4d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export class OcctaxFormMapService {
this.manageGeometryChange(geojson);
if (geojson.type == 'Point') {
this.markerCoordinates = geojson.coordinates;
this.leafletDrawGeoJson = geojson;
} else {
this.leafletDrawGeoJson = geojson;
}
Expand Down

0 comments on commit 5b7fc4d

Please sign in to comment.