지도 좌표값을 데이터베이스에 저장하는데 문제가 생깁니다. ㅠㅠㅠ

const addMarker = async () => {
      const formData = new FormData();
      formData.append('markerLatitude', props.latitude);
      formData.append('markerLongitude', props.longitude);
      formData.append('markerTitle', title.value);
      formData.append('markerContents', content.value);
      if (imageFile.value) {
        formData.append('markerBoardFile', imageFile.value); // 이미지 파일 추가
      }

      for (let [key, value] of formData.entries()) {
        console.log(key, (typeof value), value);
      }


      try {
        const response = await axios({
          method: 'post',
          url: '/api/marker/save',
          data: formData,
          headers: {
            'Content-Type': 'multipart/form-data',
          },
        });

지금 이런식으로 마커 생성 시 발생하는 데이터를 데이터베이스에 담을려고 합니다.

public class MarkerDTO {
  private Long markerId;
  private Double markerLatitude;
  private Double markerLongitude;
  private String markerTitle;
  private String markerContents;

다음과 같이 데이터베이스를 형성했는데

다음과 같이 markerTitle, markerContents 의 데이터만 담기고 위도, 경도 값이 왜 안 담기는지 잘 모르겠습니다. ㅠㅠ

서버로 전달할 파라미터에 위경도 값이 올바르지 않을 때 저장이 안 될 수 있습니다.
formData에 설정된 props.latitude, longitude 값이 올바른지 확인해 주세요.
그리고 문의 내용은 지도 API 사용에 대한 문의가 아니기 때문에 자세한 답변이 불가능한 점 양해 부탁드립니다.