프젝 오류
Some checks failed
LocalNet_front/pipeline/head There was a failure building this commit

This commit is contained in:
yoon 2025-03-25 17:53:20 +09:00
parent ecaf40ced2
commit 6abb6a532b

View File

@ -292,6 +292,8 @@ const selectedUsers = ref({
}); });
const isKakaoMapLoaded = ref(false);
const startDateInput = ref(null); const startDateInput = ref(null);
const endDateInput = ref(null); const endDateInput = ref(null);
@ -607,7 +609,8 @@ onMounted(async () => {
// Kakao Maps API // Kakao Maps API
const checkKakaoMapsLoaded = () => { const checkKakaoMapsLoaded = () => {
if (window.kakao && window.kakao.maps) { if (window.kakao && window.kakao.maps && window.kakao.maps.services) {
isKakaoMapLoaded.value = true;
convertAddressToCoordinates(); convertAddressToCoordinates();
} else { } else {
setTimeout(checkKakaoMapsLoaded, 500); setTimeout(checkKakaoMapsLoaded, 500);