Skip to content

Commit

Permalink
fix: La for longitude, Ma for latitude (request from frontend)
Browse files Browse the repository at this point in the history
  • Loading branch information
peageon committed Jun 22, 2024
1 parent 5442cf7 commit b404642
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
@AllArgsConstructor
public class CoordinateDto {

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

0 comments on commit b404642

Please sign in to comment.