Skip to content

Commit

Permalink
point history now lat, lon format
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim committed Sep 5, 2024
1 parent 7fa92c8 commit 4cede7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<mat-radio-button color="primary" (click)="onPointClick($index)" [checked]="$index === pointHistoryService.selectedPoint">
<mat-icon class="ts-wkt-icon">place</mat-icon>
<span class="ts-wkt-text">
{{point.flatCoordinates[0] | floatPrecision: 2}},&ensp;{{point.flatCoordinates[1] | floatPrecision: 2}}
{{point.flatCoordinates[1] | floatPrecision: 2}},&ensp;{{point.flatCoordinates[0] | floatPrecision: 2}}
</span>
</mat-radio-button>
}
Expand Down

0 comments on commit 4cede7c

Please sign in to comment.