Skip to content

Commit

Permalink
fix: Fixed latitude and longitude swapped in CoordinateDto
Browse files Browse the repository at this point in the history
  • Loading branch information
peageon committed Jun 20, 2024
1 parent d092be2 commit 7e5f3a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
@NoArgsConstructor
@AllArgsConstructor
public class CoordinateDto {
@JsonProperty("La")
private double longitude;

@JsonProperty("Ma")
private double latitude;
@JsonProperty("La")
private double longitude;
}

0 comments on commit 7e5f3a3

Please sign in to comment.