fetch('<http://localhost:8080/api/v1/walks/location>', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify( // object 형태로 전달
{ latitude, longitude, timestamp: new Date() }),
})
.then(response => response.json())